diff --git a/schema.graphql b/schema.graphql index 14163988d3..8034bd196d 100644 --- a/schema.graphql +++ b/schema.graphql @@ -1027,6 +1027,10 @@ type MembershipRequest { } input MembershipRequestsWhereInput { + creatorId: ID + creatorId_in: [ID!] + creatorId_not: ID + creatorId_not_in: [ID!] id: ID id_contains: ID id_in: [ID!] diff --git a/src/typeDefs/inputs.ts b/src/typeDefs/inputs.ts index 65cca30e4d..f8d54db61f 100644 --- a/src/typeDefs/inputs.ts +++ b/src/typeDefs/inputs.ts @@ -284,6 +284,11 @@ export const inputs = gql` id_starts_with: ID user: UserWhereInput + + creatorId: ID + creatorId_not: ID + creatorId_in: [ID!] + creatorId_not_in: [ID!] } input MessageChatInput { diff --git a/src/types/generatedGraphQLTypes.ts b/src/types/generatedGraphQLTypes.ts index 2e83523f49..3ef042af64 100644 --- a/src/types/generatedGraphQLTypes.ts +++ b/src/types/generatedGraphQLTypes.ts @@ -1112,6 +1112,10 @@ export type MembershipRequest = { }; export type MembershipRequestsWhereInput = { + creatorId?: InputMaybe; + creatorId_in?: InputMaybe>; + creatorId_not?: InputMaybe; + creatorId_not_in?: InputMaybe>; id?: InputMaybe; id_contains?: InputMaybe; id_in?: InputMaybe>;