@substrate/node-watcher
Version:
Extract, Transform, Load Kusama/Polkadot history into a PostgreSQL DB
1 lines • 155 kB
TypeScript
export declare const typeDefs = "type AggregateBlockIndex {\n count: Int!\n}\n\ntype AggregateBlockNumber {\n count: Int!\n}\n\ntype AggregateCouncil {\n count: Int!\n}\n\ntype AggregateCouncilMember {\n count: Int!\n}\n\ntype AggregateEra {\n count: Int!\n}\n\ntype AggregateHeartBeat {\n count: Int!\n}\n\ntype AggregateMotion {\n count: Int!\n}\n\ntype AggregateMotionProposalArgument {\n count: Int!\n}\n\ntype AggregateMotionStatus {\n count: Int!\n}\n\ntype AggregateNomination {\n count: Int!\n}\n\ntype AggregateOfflineValidator {\n count: Int!\n}\n\ntype AggregatePreimage {\n count: Int!\n}\n\ntype AggregatePreimageArgument {\n count: Int!\n}\n\ntype AggregatePreimageStatus {\n count: Int!\n}\n\ntype AggregateProposal {\n count: Int!\n}\n\ntype AggregateProposalStatus {\n count: Int!\n}\n\ntype AggregateReferendum {\n count: Int!\n}\n\ntype AggregateReferendumStatus {\n count: Int!\n}\n\ntype AggregateReward {\n count: Int!\n}\n\ntype AggregateSession {\n count: Int!\n}\n\ntype AggregateSlashing {\n count: Int!\n}\n\ntype AggregateStake {\n count: Int!\n}\n\ntype AggregateTotalIssuance {\n count: Int!\n}\n\ntype AggregateTreasurySpendProposal {\n count: Int!\n}\n\ntype AggregateTreasuryStatus {\n count: Int!\n}\n\ntype AggregateValidator {\n count: Int!\n}\n\ntype BatchPayload {\n count: Long!\n}\n\ntype BlockIndex {\n id: ID!\n identifier: String!\n startFrom: Int!\n index: Int!\n}\n\ntype BlockIndexConnection {\n pageInfo: PageInfo!\n edges: [BlockIndexEdge]!\n aggregate: AggregateBlockIndex!\n}\n\ninput BlockIndexCreateInput {\n id: ID\n identifier: String!\n startFrom: Int!\n index: Int!\n}\n\ntype BlockIndexEdge {\n node: BlockIndex!\n cursor: String!\n}\n\nenum BlockIndexOrderByInput {\n id_ASC\n id_DESC\n identifier_ASC\n identifier_DESC\n startFrom_ASC\n startFrom_DESC\n index_ASC\n index_DESC\n}\n\ntype BlockIndexPreviousValues {\n id: ID!\n identifier: String!\n startFrom: Int!\n index: Int!\n}\n\ntype BlockIndexSubscriptionPayload {\n mutation: MutationType!\n node: BlockIndex\n updatedFields: [String!]\n previousValues: BlockIndexPreviousValues\n}\n\ninput BlockIndexSubscriptionWhereInput {\n mutation_in: [MutationType!]\n updatedFields_contains: String\n updatedFields_contains_every: [String!]\n updatedFields_contains_some: [String!]\n node: BlockIndexWhereInput\n AND: [BlockIndexSubscriptionWhereInput!]\n OR: [BlockIndexSubscriptionWhereInput!]\n NOT: [BlockIndexSubscriptionWhereInput!]\n}\n\ninput BlockIndexUpdateInput {\n identifier: String\n startFrom: Int\n index: Int\n}\n\ninput BlockIndexUpdateManyMutationInput {\n identifier: String\n startFrom: Int\n index: Int\n}\n\ninput BlockIndexWhereInput {\n id: ID\n id_not: ID\n id_in: [ID!]\n id_not_in: [ID!]\n id_lt: ID\n id_lte: ID\n id_gt: ID\n id_gte: ID\n id_contains: ID\n id_not_contains: ID\n id_starts_with: ID\n id_not_starts_with: ID\n id_ends_with: ID\n id_not_ends_with: ID\n identifier: String\n identifier_not: String\n identifier_in: [String!]\n identifier_not_in: [String!]\n identifier_lt: String\n identifier_lte: String\n identifier_gt: String\n identifier_gte: String\n identifier_contains: String\n identifier_not_contains: String\n identifier_starts_with: String\n identifier_not_starts_with: String\n identifier_ends_with: String\n identifier_not_ends_with: String\n startFrom: Int\n startFrom_not: Int\n startFrom_in: [Int!]\n startFrom_not_in: [Int!]\n startFrom_lt: Int\n startFrom_lte: Int\n startFrom_gt: Int\n startFrom_gte: Int\n index: Int\n index_not: Int\n index_in: [Int!]\n index_not_in: [Int!]\n index_lt: Int\n index_lte: Int\n index_gt: Int\n index_gte: Int\n AND: [BlockIndexWhereInput!]\n OR: [BlockIndexWhereInput!]\n NOT: [BlockIndexWhereInput!]\n}\n\ninput BlockIndexWhereUniqueInput {\n id: ID\n identifier: String\n}\n\ntype BlockNumber {\n id: ID!\n number: Int!\n authoredBy: String!\n startDateTime: DateTime!\n hash: String!\n}\n\ntype BlockNumberConnection {\n pageInfo: PageInfo!\n edges: [BlockNumberEdge]!\n aggregate: AggregateBlockNumber!\n}\n\ninput BlockNumberCreateInput {\n id: ID\n number: Int!\n authoredBy: String!\n startDateTime: DateTime!\n hash: String!\n}\n\ninput BlockNumberCreateOneInput {\n create: BlockNumberCreateInput\n connect: BlockNumberWhereUniqueInput\n}\n\ntype BlockNumberEdge {\n node: BlockNumber!\n cursor: String!\n}\n\nenum BlockNumberOrderByInput {\n id_ASC\n id_DESC\n number_ASC\n number_DESC\n authoredBy_ASC\n authoredBy_DESC\n startDateTime_ASC\n startDateTime_DESC\n hash_ASC\n hash_DESC\n}\n\ntype BlockNumberPreviousValues {\n id: ID!\n number: Int!\n authoredBy: String!\n startDateTime: DateTime!\n hash: String!\n}\n\ntype BlockNumberSubscriptionPayload {\n mutation: MutationType!\n node: BlockNumber\n updatedFields: [String!]\n previousValues: BlockNumberPreviousValues\n}\n\ninput BlockNumberSubscriptionWhereInput {\n mutation_in: [MutationType!]\n updatedFields_contains: String\n updatedFields_contains_every: [String!]\n updatedFields_contains_some: [String!]\n node: BlockNumberWhereInput\n AND: [BlockNumberSubscriptionWhereInput!]\n OR: [BlockNumberSubscriptionWhereInput!]\n NOT: [BlockNumberSubscriptionWhereInput!]\n}\n\ninput BlockNumberUpdateDataInput {\n number: Int\n authoredBy: String\n startDateTime: DateTime\n hash: String\n}\n\ninput BlockNumberUpdateInput {\n number: Int\n authoredBy: String\n startDateTime: DateTime\n hash: String\n}\n\ninput BlockNumberUpdateManyMutationInput {\n number: Int\n authoredBy: String\n startDateTime: DateTime\n hash: String\n}\n\ninput BlockNumberUpdateOneRequiredInput {\n create: BlockNumberCreateInput\n update: BlockNumberUpdateDataInput\n upsert: BlockNumberUpsertNestedInput\n connect: BlockNumberWhereUniqueInput\n}\n\ninput BlockNumberUpsertNestedInput {\n update: BlockNumberUpdateDataInput!\n create: BlockNumberCreateInput!\n}\n\ninput BlockNumberWhereInput {\n id: ID\n id_not: ID\n id_in: [ID!]\n id_not_in: [ID!]\n id_lt: ID\n id_lte: ID\n id_gt: ID\n id_gte: ID\n id_contains: ID\n id_not_contains: ID\n id_starts_with: ID\n id_not_starts_with: ID\n id_ends_with: ID\n id_not_ends_with: ID\n number: Int\n number_not: Int\n number_in: [Int!]\n number_not_in: [Int!]\n number_lt: Int\n number_lte: Int\n number_gt: Int\n number_gte: Int\n authoredBy: String\n authoredBy_not: String\n authoredBy_in: [String!]\n authoredBy_not_in: [String!]\n authoredBy_lt: String\n authoredBy_lte: String\n authoredBy_gt: String\n authoredBy_gte: String\n authoredBy_contains: String\n authoredBy_not_contains: String\n authoredBy_starts_with: String\n authoredBy_not_starts_with: String\n authoredBy_ends_with: String\n authoredBy_not_ends_with: String\n startDateTime: DateTime\n startDateTime_not: DateTime\n startDateTime_in: [DateTime!]\n startDateTime_not_in: [DateTime!]\n startDateTime_lt: DateTime\n startDateTime_lte: DateTime\n startDateTime_gt: DateTime\n startDateTime_gte: DateTime\n hash: String\n hash_not: String\n hash_in: [String!]\n hash_not_in: [String!]\n hash_lt: String\n hash_lte: String\n hash_gt: String\n hash_gte: String\n hash_contains: String\n hash_not_contains: String\n hash_starts_with: String\n hash_not_starts_with: String\n hash_ends_with: String\n hash_not_ends_with: String\n AND: [BlockNumberWhereInput!]\n OR: [BlockNumberWhereInput!]\n NOT: [BlockNumberWhereInput!]\n}\n\ninput BlockNumberWhereUniqueInput {\n id: ID\n number: Int\n hash: String\n}\n\ntype Council {\n id: ID!\n blockNumber: BlockNumber!\n members(where: CouncilMemberWhereInput, orderBy: CouncilMemberOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [CouncilMember!]\n}\n\ntype CouncilConnection {\n pageInfo: PageInfo!\n edges: [CouncilEdge]!\n aggregate: AggregateCouncil!\n}\n\ninput CouncilCreateInput {\n id: ID\n blockNumber: BlockNumberCreateOneInput!\n members: CouncilMemberCreateManyWithoutCouncilsInput\n}\n\ninput CouncilCreateManyWithoutMembersInput {\n create: [CouncilCreateWithoutMembersInput!]\n connect: [CouncilWhereUniqueInput!]\n}\n\ninput CouncilCreateWithoutMembersInput {\n id: ID\n blockNumber: BlockNumberCreateOneInput!\n}\n\ntype CouncilEdge {\n node: Council!\n cursor: String!\n}\n\ntype CouncilMember {\n id: ID!\n address: String!\n councils(where: CouncilWhereInput, orderBy: CouncilOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Council!]\n}\n\ntype CouncilMemberConnection {\n pageInfo: PageInfo!\n edges: [CouncilMemberEdge]!\n aggregate: AggregateCouncilMember!\n}\n\ninput CouncilMemberCreateInput {\n id: ID\n address: String!\n councils: CouncilCreateManyWithoutMembersInput\n}\n\ninput CouncilMemberCreateManyWithoutCouncilsInput {\n create: [CouncilMemberCreateWithoutCouncilsInput!]\n connect: [CouncilMemberWhereUniqueInput!]\n}\n\ninput CouncilMemberCreateWithoutCouncilsInput {\n id: ID\n address: String!\n}\n\ntype CouncilMemberEdge {\n node: CouncilMember!\n cursor: String!\n}\n\nenum CouncilMemberOrderByInput {\n id_ASC\n id_DESC\n address_ASC\n address_DESC\n}\n\ntype CouncilMemberPreviousValues {\n id: ID!\n address: String!\n}\n\ninput CouncilMemberScalarWhereInput {\n id: ID\n id_not: ID\n id_in: [ID!]\n id_not_in: [ID!]\n id_lt: ID\n id_lte: ID\n id_gt: ID\n id_gte: ID\n id_contains: ID\n id_not_contains: ID\n id_starts_with: ID\n id_not_starts_with: ID\n id_ends_with: ID\n id_not_ends_with: ID\n address: String\n address_not: String\n address_in: [String!]\n address_not_in: [String!]\n address_lt: String\n address_lte: String\n address_gt: String\n address_gte: String\n address_contains: String\n address_not_contains: String\n address_starts_with: String\n address_not_starts_with: String\n address_ends_with: String\n address_not_ends_with: String\n AND: [CouncilMemberScalarWhereInput!]\n OR: [CouncilMemberScalarWhereInput!]\n NOT: [CouncilMemberScalarWhereInput!]\n}\n\ntype CouncilMemberSubscriptionPayload {\n mutation: MutationType!\n node: CouncilMember\n updatedFields: [String!]\n previousValues: CouncilMemberPreviousValues\n}\n\ninput CouncilMemberSubscriptionWhereInput {\n mutation_in: [MutationType!]\n updatedFields_contains: String\n updatedFields_contains_every: [String!]\n updatedFields_contains_some: [String!]\n node: CouncilMemberWhereInput\n AND: [CouncilMemberSubscriptionWhereInput!]\n OR: [CouncilMemberSubscriptionWhereInput!]\n NOT: [CouncilMemberSubscriptionWhereInput!]\n}\n\ninput CouncilMemberUpdateInput {\n address: String\n councils: CouncilUpdateManyWithoutMembersInput\n}\n\ninput CouncilMemberUpdateManyDataInput {\n address: String\n}\n\ninput CouncilMemberUpdateManyMutationInput {\n address: String\n}\n\ninput CouncilMemberUpdateManyWithoutCouncilsInput {\n create: [CouncilMemberCreateWithoutCouncilsInput!]\n delete: [CouncilMemberWhereUniqueInput!]\n connect: [CouncilMemberWhereUniqueInput!]\n set: [CouncilMemberWhereUniqueInput!]\n disconnect: [CouncilMemberWhereUniqueInput!]\n update: [CouncilMemberUpdateWithWhereUniqueWithoutCouncilsInput!]\n upsert: [CouncilMemberUpsertWithWhereUniqueWithoutCouncilsInput!]\n deleteMany: [CouncilMemberScalarWhereInput!]\n updateMany: [CouncilMemberUpdateManyWithWhereNestedInput!]\n}\n\ninput CouncilMemberUpdateManyWithWhereNestedInput {\n where: CouncilMemberScalarWhereInput!\n data: CouncilMemberUpdateManyDataInput!\n}\n\ninput CouncilMemberUpdateWithoutCouncilsDataInput {\n address: String\n}\n\ninput CouncilMemberUpdateWithWhereUniqueWithoutCouncilsInput {\n where: CouncilMemberWhereUniqueInput!\n data: CouncilMemberUpdateWithoutCouncilsDataInput!\n}\n\ninput CouncilMemberUpsertWithWhereUniqueWithoutCouncilsInput {\n where: CouncilMemberWhereUniqueInput!\n update: CouncilMemberUpdateWithoutCouncilsDataInput!\n create: CouncilMemberCreateWithoutCouncilsInput!\n}\n\ninput CouncilMemberWhereInput {\n id: ID\n id_not: ID\n id_in: [ID!]\n id_not_in: [ID!]\n id_lt: ID\n id_lte: ID\n id_gt: ID\n id_gte: ID\n id_contains: ID\n id_not_contains: ID\n id_starts_with: ID\n id_not_starts_with: ID\n id_ends_with: ID\n id_not_ends_with: ID\n address: String\n address_not: String\n address_in: [String!]\n address_not_in: [String!]\n address_lt: String\n address_lte: String\n address_gt: String\n address_gte: String\n address_contains: String\n address_not_contains: String\n address_starts_with: String\n address_not_starts_with: String\n address_ends_with: String\n address_not_ends_with: String\n councils_every: CouncilWhereInput\n councils_some: CouncilWhereInput\n councils_none: CouncilWhereInput\n AND: [CouncilMemberWhereInput!]\n OR: [CouncilMemberWhereInput!]\n NOT: [CouncilMemberWhereInput!]\n}\n\ninput CouncilMemberWhereUniqueInput {\n id: ID\n address: String\n}\n\nenum CouncilOrderByInput {\n id_ASC\n id_DESC\n}\n\ntype CouncilPreviousValues {\n id: ID!\n}\n\ninput CouncilScalarWhereInput {\n id: ID\n id_not: ID\n id_in: [ID!]\n id_not_in: [ID!]\n id_lt: ID\n id_lte: ID\n id_gt: ID\n id_gte: ID\n id_contains: ID\n id_not_contains: ID\n id_starts_with: ID\n id_not_starts_with: ID\n id_ends_with: ID\n id_not_ends_with: ID\n AND: [CouncilScalarWhereInput!]\n OR: [CouncilScalarWhereInput!]\n NOT: [CouncilScalarWhereInput!]\n}\n\ntype CouncilSubscriptionPayload {\n mutation: MutationType!\n node: Council\n updatedFields: [String!]\n previousValues: CouncilPreviousValues\n}\n\ninput CouncilSubscriptionWhereInput {\n mutation_in: [MutationType!]\n updatedFields_contains: String\n updatedFields_contains_every: [String!]\n updatedFields_contains_some: [String!]\n node: CouncilWhereInput\n AND: [CouncilSubscriptionWhereInput!]\n OR: [CouncilSubscriptionWhereInput!]\n NOT: [CouncilSubscriptionWhereInput!]\n}\n\ninput CouncilUpdateInput {\n blockNumber: BlockNumberUpdateOneRequiredInput\n members: CouncilMemberUpdateManyWithoutCouncilsInput\n}\n\ninput CouncilUpdateManyWithoutMembersInput {\n create: [CouncilCreateWithoutMembersInput!]\n delete: [CouncilWhereUniqueInput!]\n connect: [CouncilWhereUniqueInput!]\n set: [CouncilWhereUniqueInput!]\n disconnect: [CouncilWhereUniqueInput!]\n update: [CouncilUpdateWithWhereUniqueWithoutMembersInput!]\n upsert: [CouncilUpsertWithWhereUniqueWithoutMembersInput!]\n deleteMany: [CouncilScalarWhereInput!]\n}\n\ninput CouncilUpdateWithoutMembersDataInput {\n blockNumber: BlockNumberUpdateOneRequiredInput\n}\n\ninput CouncilUpdateWithWhereUniqueWithoutMembersInput {\n where: CouncilWhereUniqueInput!\n data: CouncilUpdateWithoutMembersDataInput!\n}\n\ninput CouncilUpsertWithWhereUniqueWithoutMembersInput {\n where: CouncilWhereUniqueInput!\n update: CouncilUpdateWithoutMembersDataInput!\n create: CouncilCreateWithoutMembersInput!\n}\n\ninput CouncilWhereInput {\n id: ID\n id_not: ID\n id_in: [ID!]\n id_not_in: [ID!]\n id_lt: ID\n id_lte: ID\n id_gt: ID\n id_gte: ID\n id_contains: ID\n id_not_contains: ID\n id_starts_with: ID\n id_not_starts_with: ID\n id_ends_with: ID\n id_not_ends_with: ID\n blockNumber: BlockNumberWhereInput\n members_every: CouncilMemberWhereInput\n members_some: CouncilMemberWhereInput\n members_none: CouncilMemberWhereInput\n AND: [CouncilWhereInput!]\n OR: [CouncilWhereInput!]\n NOT: [CouncilWhereInput!]\n}\n\ninput CouncilWhereUniqueInput {\n id: ID\n}\n\nscalar DateTime\n\ntype Era {\n id: ID!\n index: Int!\n eraStartSessionIndex: Session!\n totalPoints: String!\n individualPoints: [String!]!\n}\n\ntype EraConnection {\n pageInfo: PageInfo!\n edges: [EraEdge]!\n aggregate: AggregateEra!\n}\n\ninput EraCreateindividualPointsInput {\n set: [String!]\n}\n\ninput EraCreateInput {\n id: ID\n index: Int!\n eraStartSessionIndex: SessionCreateOneInput!\n totalPoints: String!\n individualPoints: EraCreateindividualPointsInput\n}\n\ntype EraEdge {\n node: Era!\n cursor: String!\n}\n\nenum EraOrderByInput {\n id_ASC\n id_DESC\n index_ASC\n index_DESC\n totalPoints_ASC\n totalPoints_DESC\n}\n\ntype EraPreviousValues {\n id: ID!\n index: Int!\n totalPoints: String!\n individualPoints: [String!]!\n}\n\ntype EraSubscriptionPayload {\n mutation: MutationType!\n node: Era\n updatedFields: [String!]\n previousValues: EraPreviousValues\n}\n\ninput EraSubscriptionWhereInput {\n mutation_in: [MutationType!]\n updatedFields_contains: String\n updatedFields_contains_every: [String!]\n updatedFields_contains_some: [String!]\n node: EraWhereInput\n AND: [EraSubscriptionWhereInput!]\n OR: [EraSubscriptionWhereInput!]\n NOT: [EraSubscriptionWhereInput!]\n}\n\ninput EraUpdateindividualPointsInput {\n set: [String!]\n}\n\ninput EraUpdateInput {\n index: Int\n eraStartSessionIndex: SessionUpdateOneRequiredInput\n totalPoints: String\n individualPoints: EraUpdateindividualPointsInput\n}\n\ninput EraUpdateManyMutationInput {\n index: Int\n totalPoints: String\n individualPoints: EraUpdateindividualPointsInput\n}\n\ninput EraWhereInput {\n id: ID\n id_not: ID\n id_in: [ID!]\n id_not_in: [ID!]\n id_lt: ID\n id_lte: ID\n id_gt: ID\n id_gte: ID\n id_contains: ID\n id_not_contains: ID\n id_starts_with: ID\n id_not_starts_with: ID\n id_ends_with: ID\n id_not_ends_with: ID\n index: Int\n index_not: Int\n index_in: [Int!]\n index_not_in: [Int!]\n index_lt: Int\n index_lte: Int\n index_gt: Int\n index_gte: Int\n eraStartSessionIndex: SessionWhereInput\n totalPoints: String\n totalPoints_not: String\n totalPoints_in: [String!]\n totalPoints_not_in: [String!]\n totalPoints_lt: String\n totalPoints_lte: String\n totalPoints_gt: String\n totalPoints_gte: String\n totalPoints_contains: String\n totalPoints_not_contains: String\n totalPoints_starts_with: String\n totalPoints_not_starts_with: String\n totalPoints_ends_with: String\n totalPoints_not_ends_with: String\n AND: [EraWhereInput!]\n OR: [EraWhereInput!]\n NOT: [EraWhereInput!]\n}\n\ninput EraWhereUniqueInput {\n id: ID\n index: Int\n}\n\ntype HeartBeat {\n id: ID!\n sessionIndex: Session!\n authorityId: String!\n}\n\ntype HeartBeatConnection {\n pageInfo: PageInfo!\n edges: [HeartBeatEdge]!\n aggregate: AggregateHeartBeat!\n}\n\ninput HeartBeatCreateInput {\n id: ID\n sessionIndex: SessionCreateOneInput!\n authorityId: String!\n}\n\ntype HeartBeatEdge {\n node: HeartBeat!\n cursor: String!\n}\n\nenum HeartBeatOrderByInput {\n id_ASC\n id_DESC\n authorityId_ASC\n authorityId_DESC\n}\n\ntype HeartBeatPreviousValues {\n id: ID!\n authorityId: String!\n}\n\ntype HeartBeatSubscriptionPayload {\n mutation: MutationType!\n node: HeartBeat\n updatedFields: [String!]\n previousValues: HeartBeatPreviousValues\n}\n\ninput HeartBeatSubscriptionWhereInput {\n mutation_in: [MutationType!]\n updatedFields_contains: String\n updatedFields_contains_every: [String!]\n updatedFields_contains_some: [String!]\n node: HeartBeatWhereInput\n AND: [HeartBeatSubscriptionWhereInput!]\n OR: [HeartBeatSubscriptionWhereInput!]\n NOT: [HeartBeatSubscriptionWhereInput!]\n}\n\ninput HeartBeatUpdateInput {\n sessionIndex: SessionUpdateOneRequiredInput\n authorityId: String\n}\n\ninput HeartBeatUpdateManyMutationInput {\n authorityId: String\n}\n\ninput HeartBeatWhereInput {\n id: ID\n id_not: ID\n id_in: [ID!]\n id_not_in: [ID!]\n id_lt: ID\n id_lte: ID\n id_gt: ID\n id_gte: ID\n id_contains: ID\n id_not_contains: ID\n id_starts_with: ID\n id_not_starts_with: ID\n id_ends_with: ID\n id_not_ends_with: ID\n sessionIndex: SessionWhereInput\n authorityId: String\n authorityId_not: String\n authorityId_in: [String!]\n authorityId_not_in: [String!]\n authorityId_lt: String\n authorityId_lte: String\n authorityId_gt: String\n authorityId_gte: String\n authorityId_contains: String\n authorityId_not_contains: String\n authorityId_starts_with: String\n authorityId_not_starts_with: String\n authorityId_ends_with: String\n authorityId_not_ends_with: String\n AND: [HeartBeatWhereInput!]\n OR: [HeartBeatWhereInput!]\n NOT: [HeartBeatWhereInput!]\n}\n\ninput HeartBeatWhereUniqueInput {\n id: ID\n}\n\nscalar Json\n\nscalar Long\n\ntype Motion {\n id: Int!\n author: String!\n memberCount: Int!\n metaDescription: String!\n method: String!\n motionProposalArguments(where: MotionProposalArgumentWhereInput, orderBy: MotionProposalArgumentOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [MotionProposalArgument!]\n motionProposalHash: String!\n motionProposalId: Int!\n motionStatus(where: MotionStatusWhereInput, orderBy: MotionStatusOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [MotionStatus!]\n preimage: Preimage\n preimageHash: String\n treasurySpendProposal: TreasurySpendProposal\n section: String!\n}\n\ntype MotionConnection {\n pageInfo: PageInfo!\n edges: [MotionEdge]!\n aggregate: AggregateMotion!\n}\n\ninput MotionCreateInput {\n author: String!\n memberCount: Int!\n metaDescription: String!\n method: String!\n motionProposalArguments: MotionProposalArgumentCreateManyWithoutMotionInput\n motionProposalHash: String!\n motionProposalId: Int!\n motionStatus: MotionStatusCreateManyWithoutMotionInput\n preimage: PreimageCreateOneWithoutMotionInput\n preimageHash: String\n treasurySpendProposal: TreasurySpendProposalCreateOneWithoutMotionInput\n section: String!\n}\n\ninput MotionCreateOneWithoutMotionProposalArgumentsInput {\n create: MotionCreateWithoutMotionProposalArgumentsInput\n connect: MotionWhereUniqueInput\n}\n\ninput MotionCreateOneWithoutMotionStatusInput {\n create: MotionCreateWithoutMotionStatusInput\n connect: MotionWhereUniqueInput\n}\n\ninput MotionCreateOneWithoutPreimageInput {\n create: MotionCreateWithoutPreimageInput\n connect: MotionWhereUniqueInput\n}\n\ninput MotionCreateOneWithoutTreasurySpendProposalInput {\n create: MotionCreateWithoutTreasurySpendProposalInput\n connect: MotionWhereUniqueInput\n}\n\ninput MotionCreateWithoutMotionProposalArgumentsInput {\n author: String!\n memberCount: Int!\n metaDescription: String!\n method: String!\n motionProposalHash: String!\n motionProposalId: Int!\n motionStatus: MotionStatusCreateManyWithoutMotionInput\n preimage: PreimageCreateOneWithoutMotionInput\n preimageHash: String\n treasurySpendProposal: TreasurySpendProposalCreateOneWithoutMotionInput\n section: String!\n}\n\ninput MotionCreateWithoutMotionStatusInput {\n author: String!\n memberCount: Int!\n metaDescription: String!\n method: String!\n motionProposalArguments: MotionProposalArgumentCreateManyWithoutMotionInput\n motionProposalHash: String!\n motionProposalId: Int!\n preimage: PreimageCreateOneWithoutMotionInput\n preimageHash: String\n treasurySpendProposal: TreasurySpendProposalCreateOneWithoutMotionInput\n section: String!\n}\n\ninput MotionCreateWithoutPreimageInput {\n author: String!\n memberCount: Int!\n metaDescription: String!\n method: String!\n motionProposalArguments: MotionProposalArgumentCreateManyWithoutMotionInput\n motionProposalHash: String!\n motionProposalId: Int!\n motionStatus: MotionStatusCreateManyWithoutMotionInput\n preimageHash: String\n treasurySpendProposal: TreasurySpendProposalCreateOneWithoutMotionInput\n section: String!\n}\n\ninput MotionCreateWithoutTreasurySpendProposalInput {\n author: String!\n memberCount: Int!\n metaDescription: String!\n method: String!\n motionProposalArguments: MotionProposalArgumentCreateManyWithoutMotionInput\n motionProposalHash: String!\n motionProposalId: Int!\n motionStatus: MotionStatusCreateManyWithoutMotionInput\n preimage: PreimageCreateOneWithoutMotionInput\n preimageHash: String\n section: String!\n}\n\ntype MotionEdge {\n node: Motion!\n cursor: String!\n}\n\nenum MotionOrderByInput {\n id_ASC\n id_DESC\n author_ASC\n author_DESC\n memberCount_ASC\n memberCount_DESC\n metaDescription_ASC\n metaDescription_DESC\n method_ASC\n method_DESC\n motionProposalHash_ASC\n motionProposalHash_DESC\n motionProposalId_ASC\n motionProposalId_DESC\n preimageHash_ASC\n preimageHash_DESC\n section_ASC\n section_DESC\n}\n\ntype MotionPreviousValues {\n id: Int!\n author: String!\n memberCount: Int!\n metaDescription: String!\n method: String!\n motionProposalHash: String!\n motionProposalId: Int!\n preimageHash: String\n section: String!\n}\n\ntype MotionProposalArgument {\n id: ID!\n name: String!\n motion: Motion!\n value: String!\n}\n\ntype MotionProposalArgumentConnection {\n pageInfo: PageInfo!\n edges: [MotionProposalArgumentEdge]!\n aggregate: AggregateMotionProposalArgument!\n}\n\ninput MotionProposalArgumentCreateInput {\n id: ID\n name: String!\n motion: MotionCreateOneWithoutMotionProposalArgumentsInput!\n value: String!\n}\n\ninput MotionProposalArgumentCreateManyWithoutMotionInput {\n create: [MotionProposalArgumentCreateWithoutMotionInput!]\n connect: [MotionProposalArgumentWhereUniqueInput!]\n}\n\ninput MotionProposalArgumentCreateWithoutMotionInput {\n id: ID\n name: String!\n value: String!\n}\n\ntype MotionProposalArgumentEdge {\n node: MotionProposalArgument!\n cursor: String!\n}\n\nenum MotionProposalArgumentOrderByInput {\n id_ASC\n id_DESC\n name_ASC\n name_DESC\n value_ASC\n value_DESC\n}\n\ntype MotionProposalArgumentPreviousValues {\n id: ID!\n name: String!\n value: String!\n}\n\ninput MotionProposalArgumentScalarWhereInput {\n id: ID\n id_not: ID\n id_in: [ID!]\n id_not_in: [ID!]\n id_lt: ID\n id_lte: ID\n id_gt: ID\n id_gte: ID\n id_contains: ID\n id_not_contains: ID\n id_starts_with: ID\n id_not_starts_with: ID\n id_ends_with: ID\n id_not_ends_with: ID\n name: String\n name_not: String\n name_in: [String!]\n name_not_in: [String!]\n name_lt: String\n name_lte: String\n name_gt: String\n name_gte: String\n name_contains: String\n name_not_contains: String\n name_starts_with: String\n name_not_starts_with: String\n name_ends_with: String\n name_not_ends_with: String\n value: String\n value_not: String\n value_in: [String!]\n value_not_in: [String!]\n value_lt: String\n value_lte: String\n value_gt: String\n value_gte: String\n value_contains: String\n value_not_contains: String\n value_starts_with: String\n value_not_starts_with: String\n value_ends_with: String\n value_not_ends_with: String\n AND: [MotionProposalArgumentScalarWhereInput!]\n OR: [MotionProposalArgumentScalarWhereInput!]\n NOT: [MotionProposalArgumentScalarWhereInput!]\n}\n\ntype MotionProposalArgumentSubscriptionPayload {\n mutation: MutationType!\n node: MotionProposalArgument\n updatedFields: [String!]\n previousValues: MotionProposalArgumentPreviousValues\n}\n\ninput MotionProposalArgumentSubscriptionWhereInput {\n mutation_in: [MutationType!]\n updatedFields_contains: String\n updatedFields_contains_every: [String!]\n updatedFields_contains_some: [String!]\n node: MotionProposalArgumentWhereInput\n AND: [MotionProposalArgumentSubscriptionWhereInput!]\n OR: [MotionProposalArgumentSubscriptionWhereInput!]\n NOT: [MotionProposalArgumentSubscriptionWhereInput!]\n}\n\ninput MotionProposalArgumentUpdateInput {\n name: String\n motion: MotionUpdateOneRequiredWithoutMotionProposalArgumentsInput\n value: String\n}\n\ninput MotionProposalArgumentUpdateManyDataInput {\n name: String\n value: String\n}\n\ninput MotionProposalArgumentUpdateManyMutationInput {\n name: String\n value: String\n}\n\ninput MotionProposalArgumentUpdateManyWithoutMotionInput {\n create: [MotionProposalArgumentCreateWithoutMotionInput!]\n delete: [MotionProposalArgumentWhereUniqueInput!]\n connect: [MotionProposalArgumentWhereUniqueInput!]\n set: [MotionProposalArgumentWhereUniqueInput!]\n disconnect: [MotionProposalArgumentWhereUniqueInput!]\n update: [MotionProposalArgumentUpdateWithWhereUniqueWithoutMotionInput!]\n upsert: [MotionProposalArgumentUpsertWithWhereUniqueWithoutMotionInput!]\n deleteMany: [MotionProposalArgumentScalarWhereInput!]\n updateMany: [MotionProposalArgumentUpdateManyWithWhereNestedInput!]\n}\n\ninput MotionProposalArgumentUpdateManyWithWhereNestedInput {\n where: MotionProposalArgumentScalarWhereInput!\n data: MotionProposalArgumentUpdateManyDataInput!\n}\n\ninput MotionProposalArgumentUpdateWithoutMotionDataInput {\n name: String\n value: String\n}\n\ninput MotionProposalArgumentUpdateWithWhereUniqueWithoutMotionInput {\n where: MotionProposalArgumentWhereUniqueInput!\n data: MotionProposalArgumentUpdateWithoutMotionDataInput!\n}\n\ninput MotionProposalArgumentUpsertWithWhereUniqueWithoutMotionInput {\n where: MotionProposalArgumentWhereUniqueInput!\n update: MotionProposalArgumentUpdateWithoutMotionDataInput!\n create: MotionProposalArgumentCreateWithoutMotionInput!\n}\n\ninput MotionProposalArgumentWhereInput {\n id: ID\n id_not: ID\n id_in: [ID!]\n id_not_in: [ID!]\n id_lt: ID\n id_lte: ID\n id_gt: ID\n id_gte: ID\n id_contains: ID\n id_not_contains: ID\n id_starts_with: ID\n id_not_starts_with: ID\n id_ends_with: ID\n id_not_ends_with: ID\n name: String\n name_not: String\n name_in: [String!]\n name_not_in: [String!]\n name_lt: String\n name_lte: String\n name_gt: String\n name_gte: String\n name_contains: String\n name_not_contains: String\n name_starts_with: String\n name_not_starts_with: String\n name_ends_with: String\n name_not_ends_with: String\n motion: MotionWhereInput\n value: String\n value_not: String\n value_in: [String!]\n value_not_in: [String!]\n value_lt: String\n value_lte: String\n value_gt: String\n value_gte: String\n value_contains: String\n value_not_contains: String\n value_starts_with: String\n value_not_starts_with: String\n value_ends_with: String\n value_not_ends_with: String\n AND: [MotionProposalArgumentWhereInput!]\n OR: [MotionProposalArgumentWhereInput!]\n NOT: [MotionProposalArgumentWhereInput!]\n}\n\ninput MotionProposalArgumentWhereUniqueInput {\n id: ID\n}\n\ntype MotionStatus {\n id: ID!\n blockNumber: BlockNumber!\n motion: Motion!\n status: String!\n uniqueStatus: String!\n}\n\ntype MotionStatusConnection {\n pageInfo: PageInfo!\n edges: [MotionStatusEdge]!\n aggregate: AggregateMotionStatus!\n}\n\ninput MotionStatusCreateInput {\n id: ID\n blockNumber: BlockNumberCreateOneInput!\n motion: MotionCreateOneWithoutMotionStatusInput!\n status: String!\n uniqueStatus: String!\n}\n\ninput MotionStatusCreateManyWithoutMotionInput {\n create: [MotionStatusCreateWithoutMotionInput!]\n connect: [MotionStatusWhereUniqueInput!]\n}\n\ninput MotionStatusCreateWithoutMotionInput {\n id: ID\n blockNumber: BlockNumberCreateOneInput!\n status: String!\n uniqueStatus: String!\n}\n\ntype MotionStatusEdge {\n node: MotionStatus!\n cursor: String!\n}\n\nenum MotionStatusOrderByInput {\n id_ASC\n id_DESC\n status_ASC\n status_DESC\n uniqueStatus_ASC\n uniqueStatus_DESC\n}\n\ntype MotionStatusPreviousValues {\n id: ID!\n status: String!\n uniqueStatus: String!\n}\n\ninput MotionStatusScalarWhereInput {\n id: ID\n id_not: ID\n id_in: [ID!]\n id_not_in: [ID!]\n id_lt: ID\n id_lte: ID\n id_gt: ID\n id_gte: ID\n id_contains: ID\n id_not_contains: ID\n id_starts_with: ID\n id_not_starts_with: ID\n id_ends_with: ID\n id_not_ends_with: ID\n status: String\n status_not: String\n status_in: [String!]\n status_not_in: [String!]\n status_lt: String\n status_lte: String\n status_gt: String\n status_gte: String\n status_contains: String\n status_not_contains: String\n status_starts_with: String\n status_not_starts_with: String\n status_ends_with: String\n status_not_ends_with: String\n uniqueStatus: String\n uniqueStatus_not: String\n uniqueStatus_in: [String!]\n uniqueStatus_not_in: [String!]\n uniqueStatus_lt: String\n uniqueStatus_lte: String\n uniqueStatus_gt: String\n uniqueStatus_gte: String\n uniqueStatus_contains: String\n uniqueStatus_not_contains: String\n uniqueStatus_starts_with: String\n uniqueStatus_not_starts_with: String\n uniqueStatus_ends_with: String\n uniqueStatus_not_ends_with: String\n AND: [MotionStatusScalarWhereInput!]\n OR: [MotionStatusScalarWhereInput!]\n NOT: [MotionStatusScalarWhereInput!]\n}\n\ntype MotionStatusSubscriptionPayload {\n mutation: MutationType!\n node: MotionStatus\n updatedFields: [String!]\n previousValues: MotionStatusPreviousValues\n}\n\ninput MotionStatusSubscriptionWhereInput {\n mutation_in: [MutationType!]\n updatedFields_contains: String\n updatedFields_contains_every: [String!]\n updatedFields_contains_some: [String!]\n node: MotionStatusWhereInput\n AND: [MotionStatusSubscriptionWhereInput!]\n OR: [MotionStatusSubscriptionWhereInput!]\n NOT: [MotionStatusSubscriptionWhereInput!]\n}\n\ninput MotionStatusUpdateInput {\n blockNumber: BlockNumberUpdateOneRequiredInput\n motion: MotionUpdateOneRequiredWithoutMotionStatusInput\n status: String\n uniqueStatus: String\n}\n\ninput MotionStatusUpdateManyDataInput {\n status: String\n uniqueStatus: String\n}\n\ninput MotionStatusUpdateManyMutationInput {\n status: String\n uniqueStatus: String\n}\n\ninput MotionStatusUpdateManyWithoutMotionInput {\n create: [MotionStatusCreateWithoutMotionInput!]\n delete: [MotionStatusWhereUniqueInput!]\n connect: [MotionStatusWhereUniqueInput!]\n set: [MotionStatusWhereUniqueInput!]\n disconnect: [MotionStatusWhereUniqueInput!]\n update: [MotionStatusUpdateWithWhereUniqueWithoutMotionInput!]\n upsert: [MotionStatusUpsertWithWhereUniqueWithoutMotionInput!]\n deleteMany: [MotionStatusScalarWhereInput!]\n updateMany: [MotionStatusUpdateManyWithWhereNestedInput!]\n}\n\ninput MotionStatusUpdateManyWithWhereNestedInput {\n where: MotionStatusScalarWhereInput!\n data: MotionStatusUpdateManyDataInput!\n}\n\ninput MotionStatusUpdateWithoutMotionDataInput {\n blockNumber: BlockNumberUpdateOneRequiredInput\n status: String\n uniqueStatus: String\n}\n\ninput MotionStatusUpdateWithWhereUniqueWithoutMotionInput {\n where: MotionStatusWhereUniqueInput!\n data: MotionStatusUpdateWithoutMotionDataInput!\n}\n\ninput MotionStatusUpsertWithWhereUniqueWithoutMotionInput {\n where: MotionStatusWhereUniqueInput!\n update: MotionStatusUpdateWithoutMotionDataInput!\n create: MotionStatusCreateWithoutMotionInput!\n}\n\ninput MotionStatusWhereInput {\n id: ID\n id_not: ID\n id_in: [ID!]\n id_not_in: [ID!]\n id_lt: ID\n id_lte: ID\n id_gt: ID\n id_gte: ID\n id_contains: ID\n id_not_contains: ID\n id_starts_with: ID\n id_not_starts_with: ID\n id_ends_with: ID\n id_not_ends_with: ID\n blockNumber: BlockNumberWhereInput\n motion: MotionWhereInput\n status: String\n status_not: String\n status_in: [String!]\n status_not_in: [String!]\n status_lt: String\n status_lte: String\n status_gt: String\n status_gte: String\n status_contains: String\n status_not_contains: String\n status_starts_with: String\n status_not_starts_with: String\n status_ends_with: String\n status_not_ends_with: String\n uniqueStatus: String\n uniqueStatus_not: String\n uniqueStatus_in: [String!]\n uniqueStatus_not_in: [String!]\n uniqueStatus_lt: String\n uniqueStatus_lte: String\n uniqueStatus_gt: String\n uniqueStatus_gte: String\n uniqueStatus_contains: String\n uniqueStatus_not_contains: String\n uniqueStatus_starts_with: String\n uniqueStatus_not_starts_with: String\n uniqueStatus_ends_with: String\n uniqueStatus_not_ends_with: String\n AND: [MotionStatusWhereInput!]\n OR: [MotionStatusWhereInput!]\n NOT: [MotionStatusWhereInput!]\n}\n\ninput MotionStatusWhereUniqueInput {\n id: ID\n uniqueStatus: String\n}\n\ntype MotionSubscriptionPayload {\n mutation: MutationType!\n node: Motion\n updatedFields: [String!]\n previousValues: MotionPreviousValues\n}\n\ninput MotionSubscriptionWhereInput {\n mutation_in: [MutationType!]\n updatedFields_contains: String\n updatedFields_contains_every: [String!]\n updatedFields_contains_some: [String!]\n node: MotionWhereInput\n AND: [MotionSubscriptionWhereInput!]\n OR: [MotionSubscriptionWhereInput!]\n NOT: [MotionSubscriptionWhereInput!]\n}\n\ninput MotionUpdateInput {\n author: String\n memberCount: Int\n metaDescription: String\n method: String\n motionProposalArguments: MotionProposalArgumentUpdateManyWithoutMotionInput\n motionProposalHash: String\n motionProposalId: Int\n motionStatus: MotionStatusUpdateManyWithoutMotionInput\n preimage: PreimageUpdateOneWithoutMotionInput\n preimageHash: String\n treasurySpendProposal: TreasurySpendProposalUpdateOneWithoutMotionInput\n section: String\n}\n\ninput MotionUpdateManyMutationInput {\n author: String\n memberCount: Int\n metaDescription: String\n method: String\n motionProposalHash: String\n motionProposalId: Int\n preimageHash: String\n section: String\n}\n\ninput MotionUpdateOneRequiredWithoutMotionProposalArgumentsInput {\n create: MotionCreateWithoutMotionProposalArgumentsInput\n update: MotionUpdateWithoutMotionProposalArgumentsDataInput\n upsert: MotionUpsertWithoutMotionProposalArgumentsInput\n connect: MotionWhereUniqueInput\n}\n\ninput MotionUpdateOneRequiredWithoutMotionStatusInput {\n create: MotionCreateWithoutMotionStatusInput\n update: MotionUpdateWithoutMotionStatusDataInput\n upsert: MotionUpsertWithoutMotionStatusInput\n connect: MotionWhereUniqueInput\n}\n\ninput MotionUpdateOneWithoutPreimageInput {\n create: MotionCreateWithoutPreimageInput\n update: MotionUpdateWithoutPreimageDataInput\n upsert: MotionUpsertWithoutPreimageInput\n delete: Boolean\n disconnect: Boolean\n connect: MotionWhereUniqueInput\n}\n\ninput MotionUpdateOneWithoutTreasurySpendProposalInput {\n create: MotionCreateWithoutTreasurySpendProposalInput\n update: MotionUpdateWithoutTreasurySpendProposalDataInput\n upsert: MotionUpsertWithoutTreasurySpendProposalInput\n delete: Boolean\n disconnect: Boolean\n connect: MotionWhereUniqueInput\n}\n\ninput MotionUpdateWithoutMotionProposalArgumentsDataInput {\n author: String\n memberCount: Int\n metaDescription: String\n method: String\n motionProposalHash: String\n motionProposalId: Int\n motionStatus: MotionStatusUpdateManyWithoutMotionInput\n preimage: PreimageUpdateOneWithoutMotionInput\n preimageHash: String\n treasurySpendProposal: TreasurySpendProposalUpdateOneWithoutMotionInput\n section: String\n}\n\ninput MotionUpdateWithoutMotionStatusDataInput {\n author: String\n memberCount: Int\n metaDescription: String\n method: String\n motionProposalArguments: MotionProposalArgumentUpdateManyWithoutMotionInput\n motionProposalHash: String\n motionProposalId: Int\n preimage: PreimageUpdateOneWithoutMotionInput\n preimageHash: String\n treasurySpendProposal: TreasurySpendProposalUpdateOneWithoutMotionInput\n section: String\n}\n\ninput MotionUpdateWithoutPreimageDataInput {\n author: String\n memberCount: Int\n metaDescription: String\n method: String\n motionProposalArguments: MotionProposalArgumentUpdateManyWithoutMotionInput\n motionProposalHash: String\n motionProposalId: Int\n motionStatus: MotionStatusUpdateManyWithoutMotionInput\n preimageHash: String\n treasurySpendProposal: TreasurySpendProposalUpdateOneWithoutMotionInput\n section: String\n}\n\ninput MotionUpdateWithoutTreasurySpendProposalDataInput {\n author: String\n memberCount: Int\n metaDescription: String\n method: String\n motionProposalArguments: MotionProposalArgumentUpdateManyWithoutMotionInput\n motionProposalHash: String\n motionProposalId: Int\n motionStatus: MotionStatusUpdateManyWithoutMotionInput\n preimage: PreimageUpdateOneWithoutMotionInput\n preimageHash: String\n section: String\n}\n\ninput MotionUpsertWithoutMotionProposalArgumentsInput {\n update: MotionUpdateWithoutMotionProposalArgumentsDataInput!\n create: MotionCreateWithoutMotionProposalArgumentsInput!\n}\n\ninput MotionUpsertWithoutMotionStatusInput {\n update: MotionUpdateWithoutMotionStatusDataInput!\n create: MotionCreateWithoutMotionStatusInput!\n}\n\ninput MotionUpsertWithoutPreimageInput {\n update: MotionUpdateWithoutPreimageDataInput!\n create: MotionCreateWithoutPreimageInput!\n}\n\ninput MotionUpsertWithoutTreasurySpendProposalInput {\n update: MotionUpdateWithoutTreasurySpendProposalDataInput!\n create: MotionCreateWithoutTreasurySpendProposalInput!\n}\n\ninput MotionWhereInput {\n id: Int\n id_not: Int\n id_in: [Int!]\n id_not_in: [Int!]\n id_lt: Int\n id_lte: Int\n id_gt: Int\n id_gte: Int\n author: String\n author_not: String\n author_in: [String!]\n author_not_in: [String!]\n author_lt: String\n author_lte: String\n author_gt: String\n author_gte: String\n author_contains: String\n author_not_contains: String\n author_starts_with: String\n author_not_starts_with: String\n author_ends_with: String\n author_not_ends_with: String\n memberCount: Int\n memberCount_not: Int\n memberCount_in: [Int!]\n memberCount_not_in: [Int!]\n memberCount_lt: Int\n memberCount_lte: Int\n memberCount_gt: Int\n memberCount_gte: Int\n metaDescription: String\n metaDescription_not: String\n metaDescription_in: [String!]\n metaDescription_not_in: [String!]\n metaDescription_lt: String\n metaDescription_lte: String\n metaDescription_gt: String\n metaDescription_gte: String\n metaDescription_contains: String\n metaDescription_not_contains: String\n metaDescription_starts_with: String\n metaDescription_not_starts_with: String\n metaDescription_ends_with: String\n metaDescription_not_ends_with: String\n method: String\n method_not: String\n method_in: [String!]\n method_not_in: [String!]\n method_lt: String\n method_lte: String\n method_gt: String\n method_gte: String\n method_contains: String\n method_not_contains: String\n method_starts_with: String\n method_not_starts_with: String\n method_ends_with: String\n method_not_ends_with: String\n motionProposalArguments_every: MotionProposalArgumentWhereInput\n motionProposalArguments_some: MotionProposalArgumentWhereInput\n motionProposalArguments_none: MotionProposalArgumentWhereInput\n motionProposalHash: String\n motionProposalHash_not: String\n motionProposalHash_in: [String!]\n motionProposalHash_not_in: [String!]\n motionProposalHash_lt: String\n motionProposalHash_lte: String\n motionProposalHash_gt: String\n motionProposalHash_gte: String\n motionProposalHash_contains: String\n motionProposalHash_not_contains: String\n motionProposalHash_starts_with: String\n motionProposalHash_not_starts_with: String\n motionProposalHash_ends_with: String\n motionProposalHash_not_ends_with: String\n motionProposalId: Int\n motionProposalId_not: Int\n motionProposalId_in: [Int!]\n motionProposalId_not_in: [Int!]\n motionProposalId_lt: Int\n motionProposalId_lte: Int\n motionProposalId_gt: Int\n motionProposalId_gte: Int\n motionStatus_every: MotionStatusWhereInput\n motionStatus_some: MotionStatusWhereInput\n motionStatus_none: MotionStatusWhereInput\n preimage: PreimageWhereInput\n preimageHash: String\n preimageHash_not: String\n preimageHash_in: [String!]\n preimageHash_not_in: [String!]\n preimageHash_lt: String\n preimageHash_lte: String\n preimageHash_gt: String\n preimageHash_gte: String\n preimageHash_contains: String\n preimageHash_not_contains: String\n preimageHash_starts_with: String\n preimageHash_not_starts_with: String\n preimageHash_ends_with: String\n preimageHash_not_ends_with: String\n treasurySpendProposal: TreasurySpendProposalWhereInput\n section: String\n section_not: String\n section_in: [String!]\n section_not_in: [String!]\n section_lt: String\n section_lte: String\n section_gt: String\n section_gte: String\n section_contains: String\n section_not_contains: String\n section_starts_with: String\n section_not_starts_with: String\n section_ends_with: String\n section_not_ends_with: String\n AND: [MotionWhereInput!]\n OR: [MotionWhereInput!]\n NOT: [MotionWhereInput!]\n}\n\ninput MotionWhereUniqueInput {\n id: Int\n motionProposalId: Int\n}\n\ntype Mutation {\n createBlockIndex(data: BlockIndexCreateInput!): BlockIndex!\n updateBlockIndex(data: BlockIndexUpdateInput!, where: BlockIndexWhereUniqueInput!): BlockIndex\n updateManyBlockIndexes(data: BlockIndexUpdateManyMutationInput!, where: BlockIndexWhereInput): BatchPayload!\n upsertBlockIndex(where: BlockIndexWhereUniqueInput!, create: BlockIndexCreateInput!, update: BlockIndexUpdateInput!): BlockIndex!\n deleteBlockIndex(where: BlockIndexWhereUniqueInput!): BlockIndex\n deleteManyBlockIndexes(where: BlockIndexWhereInput): BatchPayload!\n createBlockNumber(data: BlockNumberCreateInput!): BlockNumber!\n updateBlockNumber(data: BlockNumberUpdateInput!, where: BlockNumberWhereUniqueInput!): BlockNumber\n updateManyBlockNumbers(data: BlockNumberUpdateManyMutationInput!, where: BlockNumberWhereInput): BatchPayload!\n upsertBlockNumber(where: BlockNumberWhereUniqueInput!, create: BlockNumberCreateInput!, update: BlockNumberUpdateInput!): BlockNumber!\n deleteBlockNumber(where: BlockNumberWhereUniqueInput!): BlockNumber\n deleteManyBlockNumbers(where: BlockNumberWhereInput): BatchPayload!\n createCouncil(data: CouncilCreateInput!): Council!\n updateCouncil(data: CouncilUpdateInput!, where: CouncilWhereUniqueInput!): Council\n upsertCouncil(where: CouncilWhereUniqueInput!, create: CouncilCreateInput!, update: CouncilUpdateInput!): Council!\n deleteCouncil(where: CouncilWhereUniqueInput!): Council\n deleteManyCouncils(where: CouncilWhereInput): BatchPayload!\n createCouncilMember(data: CouncilMemberCreateInput!): CouncilMember!\n updateCouncilMember(data: CouncilMemberUpdateInput!, where: CouncilMemberWhereUniqueInput!): CouncilMember\n updateManyCouncilMembers(data: CouncilMemberUpdateManyMutationInput!, where: CouncilMemberWhereInput): BatchPayload!\n upsertCouncilMember(where: CouncilMemberWhereUniqueInput!, create: CouncilMemberCreateInput!, update: CouncilMemberUpdateInput!): CouncilMember!\n deleteCouncilMember(where: CouncilMemberWhereUniqueInput!): CouncilMember\n deleteManyCouncilMembers(where: CouncilMemberWhereInput): BatchPayload!\n createEra(data: EraCreateInput!): Era!\n updateEra(data: EraUpdateInput!, where: EraWhereUniqueInput!): Era\n updateManyEras(data: EraUpdateManyMutationInput!, where: EraWhereInput): BatchPayload!\n upsertEra(where: EraWhereUniqueInput!, create: EraCreateInput!, update: EraUpdateInput!): Era!\n deleteEra(where: EraWhereUniqueInput!): Era\n deleteManyEras(where: EraWhereInput): BatchPayload!\n createHeartBeat(data: HeartBeatCreateInput!): HeartBeat!\n updateHeartBeat(data: HeartBeatUpdateInput!, where: HeartBeatWhereUniqueInput!): HeartBeat\n updateManyHeartBeats(data: HeartBeatUpdateManyMutationInput!, where: HeartBeatWhereInput): BatchPayload!\n upsertHeartBeat(where: HeartBeatWhereUniqueInput!, create: HeartBeatCreateInput!, update: HeartBeatUpdateInput!): HeartBeat!\n deleteHeartBeat(where: HeartBeatWhereUniqueInput!): HeartBeat\n deleteManyHeartBeats(where: HeartBeatWhereInput): BatchPayload!\n createMotion(data: MotionCreateInput!): Motion!\n updateMotion(data: MotionUpdateInput!, where: MotionWhereUniqueInput!): Motion\n updateManyMotions(data: MotionUpdateManyMutationInput!, where: MotionWhereInput): BatchPayload!\n upsertMotion(where: MotionWhereUniqueInput!, create: MotionCreateInput!, update: MotionUpdateInput!): Motion!\n deleteMotion(where: MotionWhereUniqueInput!): Motion\n deleteManyMotions(where: MotionWhereInput): BatchPayload!\n createMotionProposalArgument(data: MotionProposalArgumentCreateInput!): MotionProposalArgument!\n updateMotionProposalArgument(data: MotionProposalArgumentUpdateInput!, where: MotionProposalArgumentWhereUniqueInput!): MotionProposalArgument\n updateManyMotionProposalArguments(data: MotionProposalArgumentUpdateManyMutationInput!, where: MotionProposalArgumentWhereInput): BatchPayload!\n upsertMotionProposalArgument(where: MotionProposalArgumentWhereUniqueInput!, create: MotionProposalArgumentCreateInput!, update: MotionProposalArgumentUpdateInput!): MotionProposalArgument!\n deleteMotionProposalArgument(where: MotionProposalArgumentWhereUniqueInput!): MotionProposalArgument\n deleteManyMotionProposalArguments(where: MotionProposalArgumentWhereInput): BatchPayload!\n createMotionStatus(data: MotionStatusCreateInput!): MotionStatus!\n updateMotionStatus(data: MotionStatusUpdateInput!, where: MotionStatusWhereUniqueInput!): MotionStatus\n updateManyMotionStatuses(data: MotionStatusUpdateManyMutationInput!, where: MotionStatusWhereInput): BatchPayload!\n upsertMotionStatus(where: MotionStatusWhereUniqueInput!, create: MotionStatusCreateInput!, update: MotionStatusUpdateInput!): MotionStatus!\n deleteMotionStatus(where: MotionStatusWhereUniqueInput!): MotionStatus\n deleteManyMotionStatuses(where: MotionStatusWhereInput): BatchPayload!\n createNomination(data: NominationCreateInput!): Nomination!\n updateNomination(data: NominationUpdateInput!, where: NominationWhereUniqueInput!): Nomination\n updateManyNominations(data: NominationUpdateManyMutationInput!, where: NominationWhereInput): BatchPayload!\n upsertNomination(where: NominationWhereUniqueInput!, create: NominationCreateInput!, update: NominationUpdateInput!): Nomination!\n deleteNomination(where: NominationWhereUniqueInput!): Nomination\n deleteManyNominations(where: NominationWhereInput): BatchPayload!\n createOfflineValidator(data: OfflineValidatorCreateInput!): OfflineValidator!\n updateOfflineValidator(data: OfflineValidatorUpdateInput!, where: OfflineValidatorWhereUniqueInput!): OfflineValidator\n updateManyOfflineValidators(data: OfflineValidatorUpdateManyMutationInput!, where: OfflineValidatorWhereInput): BatchPayload!\n upsertOfflineValidat