diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/CertificationSchema/AnnotationBased/__snapshots__/CertificationTests.Schema_Snapshot.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/CertificationSchema/AnnotationBased/__snapshots__/CertificationTests.Schema_Snapshot.graphql index 2674e366351..98218c6e53d 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/CertificationSchema/AnnotationBased/__snapshots__/CertificationTests.Schema_Snapshot.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/CertificationSchema/AnnotationBased/__snapshots__/CertificationTests.Schema_Snapshot.graphql @@ -1,8 +1,12 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@tag", "@key", "@provides", "@external", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@tag", "@key", "@provides", "@external", "FieldSet"]) { query: Query } -type Product @key(fields: "id") @key(fields: "sku package") @key(fields: "sku variation { id }") { +type Product + @key(fields: "id") + @key(fields: "sku package") + @key(fields: "sku variation { id }") { id: ID! sku: String package: String @@ -43,10 +47,15 @@ union _Entity = Product | User directive @external on OBJECT | FIELD_DEFINITION "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Used to annotate the expected returned fieldset from a field on a base type that is guaranteed to be selectable by the federation gateway." directive @provides(fields: FieldSet!) on FIELD_DEFINITION diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/CertificationSchema/AnnotationBased/__snapshots__/CertificationTests.Subgraph_SDL.snap b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/CertificationSchema/AnnotationBased/__snapshots__/CertificationTests.Subgraph_SDL.snap index 2674e366351..98218c6e53d 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/CertificationSchema/AnnotationBased/__snapshots__/CertificationTests.Subgraph_SDL.snap +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/CertificationSchema/AnnotationBased/__snapshots__/CertificationTests.Subgraph_SDL.snap @@ -1,8 +1,12 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@tag", "@key", "@provides", "@external", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@tag", "@key", "@provides", "@external", "FieldSet"]) { query: Query } -type Product @key(fields: "id") @key(fields: "sku package") @key(fields: "sku variation { id }") { +type Product + @key(fields: "id") + @key(fields: "sku package") + @key(fields: "sku variation { id }") { id: ID! sku: String package: String @@ -43,10 +47,15 @@ union _Entity = Product | User directive @external on OBJECT | FIELD_DEFINITION "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Used to annotate the expected returned fieldset from a field on a base type that is guaranteed to be selectable by the federation gateway." directive @provides(fields: FieldSet!) on FIELD_DEFINITION diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/CertificationSchema/CodeFirst/__snapshots__/CertificationTests.Schema_Snapshot.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/CertificationSchema/CodeFirst/__snapshots__/CertificationTests.Schema_Snapshot.graphql index dae53d3ec58..9554e703b14 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/CertificationSchema/CodeFirst/__snapshots__/CertificationTests.Schema_Snapshot.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/CertificationSchema/CodeFirst/__snapshots__/CertificationTests.Schema_Snapshot.graphql @@ -1,8 +1,12 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@provides", "@external", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@provides", "@external", "@tag", "FieldSet"]) { query: Query } -type Product @key(fields: "id") @key(fields: "sku package") @key(fields: "sku variation { id }") { +type Product + @key(fields: "id") + @key(fields: "sku package") + @key(fields: "sku variation { id }") { id: ID! createdBy: User! @provides(fields: "totalProductsCreated") sku: String @@ -43,10 +47,15 @@ union _Entity = Product | User directive @external on OBJECT | FIELD_DEFINITION "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Used to annotate the expected returned fieldset from a field on a base type that is guaranteed to be selectable by the federation gateway." directive @provides(fields: FieldSet!) on FIELD_DEFINITION diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/CertificationSchema/CodeFirst/__snapshots__/CertificationTests.Subgraph_SDL.snap b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/CertificationSchema/CodeFirst/__snapshots__/CertificationTests.Subgraph_SDL.snap index dae53d3ec58..9554e703b14 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/CertificationSchema/CodeFirst/__snapshots__/CertificationTests.Subgraph_SDL.snap +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/CertificationSchema/CodeFirst/__snapshots__/CertificationTests.Subgraph_SDL.snap @@ -1,8 +1,12 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@provides", "@external", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@provides", "@external", "@tag", "FieldSet"]) { query: Query } -type Product @key(fields: "id") @key(fields: "sku package") @key(fields: "sku variation { id }") { +type Product + @key(fields: "id") + @key(fields: "sku package") + @key(fields: "sku variation { id }") { id: ID! createdBy: User! @provides(fields: "totalProductsCreated") sku: String @@ -43,10 +47,15 @@ union _Entity = Product | User directive @external on OBJECT | FIELD_DEFINITION "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Used to annotate the expected returned fieldset from a field on a base type that is guaranteed to be selectable by the federation gateway." directive @provides(fields: FieldSet!) on FIELD_DEFINITION diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ComposeDirectiveTests.ExportDirectiveUsingNameCodeFirst.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ComposeDirectiveTests.ExportDirectiveUsingNameCodeFirst.graphql index 4f2b693bcf1..3de89f5a26f 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ComposeDirectiveTests.ExportDirectiveUsingNameCodeFirst.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ComposeDirectiveTests.ExportDirectiveUsingNameCodeFirst.graphql @@ -1,4 +1,7 @@ -schema @composeDirective(name: "@custom") @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet", "@composeDirective"]) @link(url: "https://specs.custom.dev/custom/v1.0", import: ["@custom"]) { +schema + @composeDirective(name: "@custom") + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet", "@composeDirective"]) + @link(url: "https://specs.custom.dev/custom/v1.0", import: ["@custom"]) { query: Query } @@ -25,10 +28,15 @@ directive @composeDirective(name: String!) repeatable on SCHEMA directive @custom on FIELD_DEFINITION "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ComposeDirectiveTests.ExportDirectiveUsingTypeCodeFirst.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ComposeDirectiveTests.ExportDirectiveUsingTypeCodeFirst.graphql index 4f2b693bcf1..3de89f5a26f 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ComposeDirectiveTests.ExportDirectiveUsingTypeCodeFirst.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ComposeDirectiveTests.ExportDirectiveUsingTypeCodeFirst.graphql @@ -1,4 +1,7 @@ -schema @composeDirective(name: "@custom") @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet", "@composeDirective"]) @link(url: "https://specs.custom.dev/custom/v1.0", import: ["@custom"]) { +schema + @composeDirective(name: "@custom") + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet", "@composeDirective"]) + @link(url: "https://specs.custom.dev/custom/v1.0", import: ["@custom"]) { query: Query } @@ -25,10 +28,15 @@ directive @composeDirective(name: String!) repeatable on SCHEMA directive @custom on FIELD_DEFINITION "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ExternalDirectiveTests.AnnotateExternalToTypeFieldAnnotationBased.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ExternalDirectiveTests.AnnotateExternalToTypeFieldAnnotationBased.graphql index d15f0bc9d96..a0cfbace83c 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ExternalDirectiveTests.AnnotateExternalToTypeFieldAnnotationBased.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ExternalDirectiveTests.AnnotateExternalToTypeFieldAnnotationBased.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@external", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@external", "@tag", "FieldSet"]) { query: Query } @@ -31,10 +32,15 @@ union _Entity = User directive @external on OBJECT | FIELD_DEFINITION "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ExternalDirectiveTests.AnnotateExternalToTypeFieldCodeFirst.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ExternalDirectiveTests.AnnotateExternalToTypeFieldCodeFirst.graphql index ed7ef29113f..538aa8d4069 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ExternalDirectiveTests.AnnotateExternalToTypeFieldCodeFirst.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ExternalDirectiveTests.AnnotateExternalToTypeFieldCodeFirst.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@external", "@key", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@external", "@key", "@tag", "FieldSet"]) { query: Query } @@ -31,10 +32,15 @@ union _Entity = User directive @external on OBJECT | FIELD_DEFINITION "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToClassAttributeAnnotationBased.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToClassAttributeAnnotationBased.graphql index 51ddbc8b9af..deaba9678a8 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToClassAttributeAnnotationBased.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToClassAttributeAnnotationBased.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { query: QueryOfTestTypePropertyDirective } @@ -21,10 +22,15 @@ type _Service { union _Entity = TestTypePropertyDirective "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToClassAttributesAnnotationBased.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToClassAttributesAnnotationBased.graphql index 80eaba51f4b..1add763d836 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToClassAttributesAnnotationBased.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToClassAttributesAnnotationBased.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { query: QueryOfTestTypePropertyDirectives } @@ -22,10 +23,15 @@ type _Service { union _Entity = TestTypePropertyDirectives "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToInterfaceAttributesAnnotationBased.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToInterfaceAttributesAnnotationBased.graphql index 1800d909ed0..69e496183ac 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToInterfaceAttributesAnnotationBased.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToInterfaceAttributesAnnotationBased.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { query: QueryOfTestTypeClassDirective } @@ -12,7 +13,8 @@ type QueryOfTestTypeClassDirective { _entities(representations: [_Any!]!): [_Entity]! } -type TestTypeClassDirective implements ITestTypeInterfaceDirective @key(fields: "id") { +type TestTypeClassDirective implements ITestTypeInterfaceDirective + @key(fields: "id") { id: Int! } @@ -25,10 +27,15 @@ type _Service { union _Entity = TestTypeClassDirective "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToInterfaceTypeCodeFirst.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToInterfaceTypeCodeFirst.graphql index 9159606a684..cac856d46fc 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToInterfaceTypeCodeFirst.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToInterfaceTypeCodeFirst.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { query: Query } @@ -27,10 +28,15 @@ type _Service { union _Entity = TestType "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToObjectTypeAnnotationBased.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToObjectTypeAnnotationBased.graphql index d97784cc9dc..07bebb636de 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToObjectTypeAnnotationBased.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToObjectTypeAnnotationBased.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { query: QueryOfTestTypeClassDirective } @@ -21,10 +22,15 @@ type _Service { union _Entity = TestTypeClassDirective "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToObjectTypeCodeFirst.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToObjectTypeCodeFirst.graphql index 82e66b21545..0d9a9bec1b8 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToObjectTypeCodeFirst.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/KeyDirectiveTests.AnnotateKeyToObjectTypeCodeFirst.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { query: Query } @@ -22,10 +23,15 @@ type _Service { union _Entity = TestType "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToClassAttributeAnnotationBased.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToClassAttributeAnnotationBased.graphql index f6b99f9ff21..20741b8ec34 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToClassAttributeAnnotationBased.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToClassAttributeAnnotationBased.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { query: QueryOfTestTypePropertyDirective } @@ -17,10 +18,15 @@ type _Service { } "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToClassAttributesAnnotationBased.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToClassAttributesAnnotationBased.graphql index 6682121a520..1320b1ba993 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToClassAttributesAnnotationBased.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToClassAttributesAnnotationBased.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { query: QueryOfTestTypePropertyDirectives } @@ -18,10 +19,15 @@ type _Service { } "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToInterfaceAttributesAnnotationBased.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToInterfaceAttributesAnnotationBased.graphql index 1773ad3e48a..c6d71e18450 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToInterfaceAttributesAnnotationBased.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToInterfaceAttributesAnnotationBased.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { query: QueryOfTestTypeClassDirective } @@ -11,7 +12,8 @@ type QueryOfTestTypeClassDirective { _service: _Service! } -type TestTypeClassDirective implements ITestTypeInterfaceDirective @key(fields: "id", resolvable: false) { +type TestTypeClassDirective implements ITestTypeInterfaceDirective + @key(fields: "id", resolvable: false) { id: Int! } @@ -21,10 +23,15 @@ type _Service { } "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToInterfaceTypeCodeFirst.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToInterfaceTypeCodeFirst.graphql index 2925314a0cc..c71d6642d64 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToInterfaceTypeCodeFirst.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToInterfaceTypeCodeFirst.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { query: Query } @@ -32,10 +33,15 @@ type _Service { union _Entity = TestTypeResolvableKey "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToObjectTypeAnnotationBased.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToObjectTypeAnnotationBased.graphql index d493793d4b2..445c00b996b 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToObjectTypeAnnotationBased.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToObjectTypeAnnotationBased.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { query: QueryOfTestTypeClassDirective } @@ -17,10 +18,15 @@ type _Service { } "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToObjectTypeCodeFirst.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToObjectTypeCodeFirst.graphql index d5ddd350b4e..6960064534f 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToObjectTypeCodeFirst.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/NonResolvableKeyDirectiveTests.AnnotateKeyToObjectTypeCodeFirst.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { query: Query } @@ -27,10 +28,15 @@ type _Service { union _Entity = TestTypeResolvableKey "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/OverrideDirectiveTests.OverrideDirective_Annotation.snap b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/OverrideDirectiveTests.OverrideDirective_Annotation.snap index 4385ba2b1d8..954f3385a06 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/OverrideDirectiveTests.OverrideDirective_Annotation.snap +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/OverrideDirectiveTests.OverrideDirective_Annotation.snap @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key", "@override", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key", "@override", "@tag", "FieldSet"]) { query: Query } @@ -22,10 +23,15 @@ type _Service { union _Entity = Foo "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Overrides fields resolution logic from other subgraph. Used for migrating fields from one subgraph to another." directive @override(from: String!) on FIELD_DEFINITION diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/OverrideDirectiveTests.OverrideDirective_Progressive_Annotation.snap b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/OverrideDirectiveTests.OverrideDirective_Progressive_Annotation.snap index 40146345941..267de041e24 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/OverrideDirectiveTests.OverrideDirective_Progressive_Annotation.snap +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/OverrideDirectiveTests.OverrideDirective_Progressive_Annotation.snap @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.7", import: ["@key", "@override", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.7", import: ["@key", "@override", "@tag", "FieldSet"]) { query: Query } @@ -22,13 +23,18 @@ type _Service { union _Entity = Foo "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Overrides fields resolution logic from other subgraph. Used for migrating fields from one subgraph to another." -directive @override(from: String! label: String) on FIELD_DEFINITION +directive @override(from: String!, label: String) on FIELD_DEFINITION "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/PolicyDirectiveTests.PolicyDirective_GetsAddedCorrectly_Annotations.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/PolicyDirectiveTests.PolicyDirective_GetsAddedCorrectly_Annotations.graphql index ec3b562786d..92791788b60 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/PolicyDirectiveTests.PolicyDirective_GetsAddedCorrectly_Annotations.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/PolicyDirectiveTests.PolicyDirective_GetsAddedCorrectly_Annotations.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet", "@policy"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet", "@policy"]) { query: Query } @@ -21,13 +22,21 @@ type _Service { union _Entity = Review "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Indicates to composition that the target element is restricted based on authorization policies." -directive @policy("Retrieves list of a list of authorization policies to evaluate." policies: [[String!]!]!) on SCALAR | OBJECT | FIELD_DEFINITION | INTERFACE | ENUM +directive @policy( + "Retrieves list of a list of authorization policies to evaluate." + policies: [[String!]!]! +) on SCALAR | OBJECT | FIELD_DEFINITION | INTERFACE | ENUM "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/PolicyDirectiveTests.PolicyDirectives_GetAddedCorrectly_Annotations.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/PolicyDirectiveTests.PolicyDirectives_GetAddedCorrectly_Annotations.graphql index ec3b562786d..92791788b60 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/PolicyDirectiveTests.PolicyDirectives_GetAddedCorrectly_Annotations.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/PolicyDirectiveTests.PolicyDirectives_GetAddedCorrectly_Annotations.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet", "@policy"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet", "@policy"]) { query: Query } @@ -21,13 +22,21 @@ type _Service { union _Entity = Review "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Indicates to composition that the target element is restricted based on authorization policies." -directive @policy("Retrieves list of a list of authorization policies to evaluate." policies: [[String!]!]!) on SCALAR | OBJECT | FIELD_DEFINITION | INTERFACE | ENUM +directive @policy( + "Retrieves list of a list of authorization policies to evaluate." + policies: [[String!]!]! +) on SCALAR | OBJECT | FIELD_DEFINITION | INTERFACE | ENUM "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/PolicyDirectiveTests.PolicyDirectives_GetAddedCorrectly_CodeFirst.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/PolicyDirectiveTests.PolicyDirectives_GetAddedCorrectly_CodeFirst.graphql index 50aa3aa71d4..ca6f74da552 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/PolicyDirectiveTests.PolicyDirectives_GetAddedCorrectly_CodeFirst.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/PolicyDirectiveTests.PolicyDirectives_GetAddedCorrectly_CodeFirst.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@policy", "@key", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@policy", "@key", "@tag", "FieldSet"]) { query: Query } @@ -21,13 +22,21 @@ type _Service { union _Entity = Review "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Indicates to composition that the target element is restricted based on authorization policies." -directive @policy("Retrieves list of a list of authorization policies to evaluate." policies: [[String!]!]!) on SCALAR | OBJECT | FIELD_DEFINITION | INTERFACE | ENUM +directive @policy( + "Retrieves list of a list of authorization policies to evaluate." + policies: [[String!]!]! +) on SCALAR | OBJECT | FIELD_DEFINITION | INTERFACE | ENUM "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ProvidesDirectiveTests.AnnotateProvidesToClassAttributePureCodeFirst.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ProvidesDirectiveTests.AnnotateProvidesToClassAttributePureCodeFirst.graphql index ef41fc616a7..d22320ceb62 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ProvidesDirectiveTests.AnnotateProvidesToClassAttributePureCodeFirst.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ProvidesDirectiveTests.AnnotateProvidesToClassAttributePureCodeFirst.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@provides", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@provides", "@tag", "FieldSet"]) { query: Query } @@ -26,10 +27,15 @@ type _Service { union _Entity = Review "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Used to annotate the expected returned fieldset from a field on a base type that is guaranteed to be selectable by the federation gateway." directive @provides(fields: FieldSet!) on FIELD_DEFINITION diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ProvidesDirectiveTests.AnnotateProvidesToFieldCodeFirst.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ProvidesDirectiveTests.AnnotateProvidesToFieldCodeFirst.graphql index afec9ba96a9..c3530839418 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ProvidesDirectiveTests.AnnotateProvidesToFieldCodeFirst.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/ProvidesDirectiveTests.AnnotateProvidesToFieldCodeFirst.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@provides", "@key", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@provides", "@key", "@tag", "FieldSet"]) { query: Query } @@ -26,10 +27,15 @@ type _Service { union _Entity = Review "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Used to annotate the expected returned fieldset from a field on a base type that is guaranteed to be selectable by the federation gateway." directive @provides(fields: FieldSet!) on FIELD_DEFINITION diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/RequiresDirectiveTests.AnnotateProvidesToClassAttributePureCodeFirst.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/RequiresDirectiveTests.AnnotateProvidesToClassAttributePureCodeFirst.graphql index 05138833188..703f1b7ed2a 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/RequiresDirectiveTests.AnnotateProvidesToClassAttributePureCodeFirst.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/RequiresDirectiveTests.AnnotateProvidesToClassAttributePureCodeFirst.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@requires", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@requires", "@tag", "FieldSet"]) { query: Query } @@ -26,10 +27,15 @@ type _Service { union _Entity = Review "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Used to annotate the required input fieldset from a base type for a resolver." directive @requires(fields: FieldSet!) on FIELD_DEFINITION diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/RequiresDirectiveTests.AnnotateProvidesToFieldCodeFirst.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/RequiresDirectiveTests.AnnotateProvidesToFieldCodeFirst.graphql index 16943504bed..1ddf35fad5a 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/RequiresDirectiveTests.AnnotateProvidesToFieldCodeFirst.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/RequiresDirectiveTests.AnnotateProvidesToFieldCodeFirst.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@requires", "@key", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@requires", "@key", "@tag", "FieldSet"]) { query: Query } @@ -26,10 +27,15 @@ type _Service { union _Entity = Review "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Used to annotate the required input fieldset from a base type for a resolver." directive @requires(fields: FieldSet!) on FIELD_DEFINITION diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/RequiresScopesDirectiveTests.RequiresScopesDirective_GetsAddedCorrectly_Annotations.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/RequiresScopesDirectiveTests.RequiresScopesDirective_GetsAddedCorrectly_Annotations.graphql index 9f54429275c..fe1d594bfb7 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/RequiresScopesDirectiveTests.RequiresScopesDirective_GetsAddedCorrectly_Annotations.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/RequiresScopesDirectiveTests.RequiresScopesDirective_GetsAddedCorrectly_Annotations.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet", "@requiresScopes"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet", "@requiresScopes"]) { query: Query } @@ -21,13 +22,21 @@ type _Service { union _Entity = Review "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Indicates to composition that the target element is accessible only to the authenticated supergraph users with the appropriate JWT scopes." -directive @requiresScopes("Retrieves list of a list of required JWT scopes." scopes: [[String!]!]!) on SCALAR | OBJECT | FIELD_DEFINITION | INTERFACE | ENUM +directive @requiresScopes( + "Retrieves list of a list of required JWT scopes." + scopes: [[String!]!]! +) on SCALAR | OBJECT | FIELD_DEFINITION | INTERFACE | ENUM "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/RequiresScopesDirectiveTests.RequiresScopesDirectives_GetAddedCorrectly_Annotations.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/RequiresScopesDirectiveTests.RequiresScopesDirectives_GetAddedCorrectly_Annotations.graphql index 9f54429275c..fe1d594bfb7 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/RequiresScopesDirectiveTests.RequiresScopesDirectives_GetAddedCorrectly_Annotations.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/RequiresScopesDirectiveTests.RequiresScopesDirectives_GetAddedCorrectly_Annotations.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet", "@requiresScopes"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet", "@requiresScopes"]) { query: Query } @@ -21,13 +22,21 @@ type _Service { union _Entity = Review "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Indicates to composition that the target element is accessible only to the authenticated supergraph users with the appropriate JWT scopes." -directive @requiresScopes("Retrieves list of a list of required JWT scopes." scopes: [[String!]!]!) on SCALAR | OBJECT | FIELD_DEFINITION | INTERFACE | ENUM +directive @requiresScopes( + "Retrieves list of a list of required JWT scopes." + scopes: [[String!]!]! +) on SCALAR | OBJECT | FIELD_DEFINITION | INTERFACE | ENUM "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/RequiresScopesDirectiveTests.RequiresScopesDirectives_GetAddedCorrectly_CodeFirst.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/RequiresScopesDirectiveTests.RequiresScopesDirectives_GetAddedCorrectly_CodeFirst.graphql index adcca877f44..d79fb9ec049 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/RequiresScopesDirectiveTests.RequiresScopesDirectives_GetAddedCorrectly_CodeFirst.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/Directives/__snapshots__/RequiresScopesDirectiveTests.RequiresScopesDirectives_GetAddedCorrectly_CodeFirst.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@requiresScopes", "@key", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@requiresScopes", "@key", "@tag", "FieldSet"]) { query: Query } @@ -8,7 +9,10 @@ type Query { _entities(representations: [_Any!]!): [_Entity]! } -type Review @key(fields: "id") @key(fields: "id") @requiresScopes(scopes: [["s3"]]) { +type Review + @key(fields: "id") + @key(fields: "id") + @requiresScopes(scopes: [["s3"]]) { id: Int! } @@ -21,13 +25,21 @@ type _Service { union _Entity = Review "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." -directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Indicates to composition that the target element is accessible only to the authenticated supergraph users with the appropriate JWT scopes." -directive @requiresScopes("Retrieves list of a list of required JWT scopes." scopes: [[String!]!]!) on SCALAR | OBJECT | FIELD_DEFINITION | INTERFACE | ENUM +directive @requiresScopes( + "Retrieves list of a list of required JWT scopes." + scopes: [[String!]!]! +) on SCALAR | OBJECT | FIELD_DEFINITION | INTERFACE | ENUM "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/ServiceTypeTests.cs b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/ServiceTypeTests.cs index 27975243b07..f3b8267edf7 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/ServiceTypeTests.cs +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/ServiceTypeTests.cs @@ -32,7 +32,8 @@ public async Task TestServiceTypeEmptyQueryTypePureCodeFirst() .Parse((string)value!) .MatchInlineSnapshot( """ - schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { + schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { query: Query } @@ -54,10 +55,15 @@ type _Service { union _Entity = Address "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." - directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE + directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." - directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA + directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] + ) repeatable on SCHEMA "Scalar representing a set of fields." scalar FieldSet @@ -88,7 +94,8 @@ public async Task TestServiceTypeTypePureCodeFirst() .Parse((string)value!) .MatchInlineSnapshot( """ - schema @link(url: "https://specs.apollo.dev/federation/v2.2", import: ["@key", "@tag", "FieldSet"]) { + schema + @link(url: "https://specs.apollo.dev/federation/v2.2", import: ["@key", "@tag", "FieldSet"]) { query: Query } @@ -111,10 +118,15 @@ type _Service { union _Entity = Address "Used to indicate a combination of fields that can be used to uniquely identify and fetch an object or interface." - directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE + directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE "Links definitions within the document to external schemas." - directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA + directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] + ) repeatable on SCHEMA "Scalar representing a set of fields." scalar FieldSet diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/__snapshots__/BuiltInTypesShareableTests.Ensure_PagingInfo_Is_Shareable.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/__snapshots__/BuiltInTypesShareableTests.Ensure_PagingInfo_Is_Shareable.graphql index c4437a1ba38..f50f689fd5d 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/__snapshots__/BuiltInTypesShareableTests.Ensure_PagingInfo_Is_Shareable.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/__snapshots__/BuiltInTypesShareableTests.Ensure_PagingInfo_Is_Shareable.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@shareable", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@shareable", "@tag", "FieldSet"]) { query: Query } @@ -37,7 +38,16 @@ type PageInfo { } type Query { - addresses("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AddressesConnection + addresses( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AddressesConnection _service: _Service! } @@ -47,7 +57,12 @@ type _Service { } "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Indicates that given object and/or field can be resolved by multiple subgraphs." directive @shareable repeatable on OBJECT | FIELD_DEFINITION diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/__snapshots__/BuiltInTypesShareableTests.Ensure_PagingInfo_Is_Shareable_When_Shareable_Already_Registered.graphql b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/__snapshots__/BuiltInTypesShareableTests.Ensure_PagingInfo_Is_Shareable_When_Shareable_Already_Registered.graphql index c4437a1ba38..f50f689fd5d 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/__snapshots__/BuiltInTypesShareableTests.Ensure_PagingInfo_Is_Shareable_When_Shareable_Already_Registered.graphql +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/__snapshots__/BuiltInTypesShareableTests.Ensure_PagingInfo_Is_Shareable_When_Shareable_Already_Registered.graphql @@ -1,4 +1,5 @@ -schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@shareable", "@tag", "FieldSet"]) { +schema + @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@shareable", "@tag", "FieldSet"]) { query: Query } @@ -37,7 +38,16 @@ type PageInfo { } type Query { - addresses("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AddressesConnection + addresses( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AddressesConnection _service: _Service! } @@ -47,7 +57,12 @@ type _Service { } "Links definitions within the document to external schemas." -directive @link("Gets imported specification url." url: String! "Gets optional list of imported element names." import: [String!]) repeatable on SCHEMA +directive @link( + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] +) repeatable on SCHEMA "Indicates that given object and/or field can be resolved by multiple subgraphs." directive @shareable repeatable on OBJECT | FIELD_DEFINITION diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_DefaultPolicy.graphql b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_DefaultPolicy.graphql index 3f5905e32a0..59ec8d13185 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_DefaultPolicy.graphql +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_DefaultPolicy.graphql @@ -17,4 +17,11 @@ enum ApplyPolicy { } "The authorize directive." -directive @authorize("The name of the authorization policy that determines access to the annotated resource." policy: String "Roles that are allowed to access the annotated resource." roles: [String!] "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." apply: ApplyPolicy! = BEFORE_RESOLVER) repeatable on OBJECT | FIELD_DEFINITION +directive @authorize( + "The name of the authorization policy that determines access to the annotated resource." + policy: String + "Roles that are allowed to access the annotated resource." + roles: [String!] + "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." + apply: ApplyPolicy! = BEFORE_RESOLVER +) repeatable on OBJECT | FIELD_DEFINITION diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_DefaultPolicy_AfterResolver.graphql b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_DefaultPolicy_AfterResolver.graphql index b5de7f96eff..d39d3c9e085 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_DefaultPolicy_AfterResolver.graphql +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_DefaultPolicy_AfterResolver.graphql @@ -17,4 +17,11 @@ enum ApplyPolicy { } "The authorize directive." -directive @authorize("The name of the authorization policy that determines access to the annotated resource." policy: String "Roles that are allowed to access the annotated resource." roles: [String!] "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." apply: ApplyPolicy! = BEFORE_RESOLVER) repeatable on OBJECT | FIELD_DEFINITION +directive @authorize( + "The name of the authorization policy that determines access to the annotated resource." + policy: String + "Roles that are allowed to access the annotated resource." + roles: [String!] + "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." + apply: ApplyPolicy! = BEFORE_RESOLVER +) repeatable on OBJECT | FIELD_DEFINITION diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_DefaultPolicy_BeforeResolver.graphql b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_DefaultPolicy_BeforeResolver.graphql index 3f5905e32a0..59ec8d13185 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_DefaultPolicy_BeforeResolver.graphql +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_DefaultPolicy_BeforeResolver.graphql @@ -17,4 +17,11 @@ enum ApplyPolicy { } "The authorize directive." -directive @authorize("The name of the authorization policy that determines access to the annotated resource." policy: String "Roles that are allowed to access the annotated resource." roles: [String!] "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." apply: ApplyPolicy! = BEFORE_RESOLVER) repeatable on OBJECT | FIELD_DEFINITION +directive @authorize( + "The name of the authorization policy that determines access to the annotated resource." + policy: String + "Roles that are allowed to access the annotated resource." + roles: [String!] + "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." + apply: ApplyPolicy! = BEFORE_RESOLVER +) repeatable on OBJECT | FIELD_DEFINITION diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_DefaultPolicy_Validation.graphql b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_DefaultPolicy_Validation.graphql index 64bd9bb4a9f..991424f8494 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_DefaultPolicy_Validation.graphql +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_DefaultPolicy_Validation.graphql @@ -17,4 +17,11 @@ enum ApplyPolicy { } "The authorize directive." -directive @authorize("The name of the authorization policy that determines access to the annotated resource." policy: String "Roles that are allowed to access the annotated resource." roles: [String!] "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." apply: ApplyPolicy! = BEFORE_RESOLVER) repeatable on OBJECT | FIELD_DEFINITION +directive @authorize( + "The name of the authorization policy that determines access to the annotated resource." + policy: String + "Roles that are allowed to access the annotated resource." + roles: [String!] + "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." + apply: ApplyPolicy! = BEFORE_RESOLVER +) repeatable on OBJECT | FIELD_DEFINITION diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_WithPolicy.graphql b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_WithPolicy.graphql index 4c2b252cd5b..9b918b85cb9 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_WithPolicy.graphql +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_WithPolicy.graphql @@ -17,4 +17,11 @@ enum ApplyPolicy { } "The authorize directive." -directive @authorize("The name of the authorization policy that determines access to the annotated resource." policy: String "Roles that are allowed to access the annotated resource." roles: [String!] "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." apply: ApplyPolicy! = BEFORE_RESOLVER) repeatable on OBJECT | FIELD_DEFINITION +directive @authorize( + "The name of the authorization policy that determines access to the annotated resource." + policy: String + "Roles that are allowed to access the annotated resource." + roles: [String!] + "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." + apply: ApplyPolicy! = BEFORE_RESOLVER +) repeatable on OBJECT | FIELD_DEFINITION diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_WithPolicy_AfterResolver.graphql b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_WithPolicy_AfterResolver.graphql index e6a396db62c..75231626320 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_WithPolicy_AfterResolver.graphql +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_WithPolicy_AfterResolver.graphql @@ -17,4 +17,11 @@ enum ApplyPolicy { } "The authorize directive." -directive @authorize("The name of the authorization policy that determines access to the annotated resource." policy: String "Roles that are allowed to access the annotated resource." roles: [String!] "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." apply: ApplyPolicy! = BEFORE_RESOLVER) repeatable on OBJECT | FIELD_DEFINITION +directive @authorize( + "The name of the authorization policy that determines access to the annotated resource." + policy: String + "Roles that are allowed to access the annotated resource." + roles: [String!] + "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." + apply: ApplyPolicy! = BEFORE_RESOLVER +) repeatable on OBJECT | FIELD_DEFINITION diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_WithPolicy_BeforeResolver.graphql b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_WithPolicy_BeforeResolver.graphql index 4c2b252cd5b..9b918b85cb9 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_WithPolicy_BeforeResolver.graphql +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_WithPolicy_BeforeResolver.graphql @@ -17,4 +17,11 @@ enum ApplyPolicy { } "The authorize directive." -directive @authorize("The name of the authorization policy that determines access to the annotated resource." policy: String "Roles that are allowed to access the annotated resource." roles: [String!] "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." apply: ApplyPolicy! = BEFORE_RESOLVER) repeatable on OBJECT | FIELD_DEFINITION +directive @authorize( + "The name of the authorization policy that determines access to the annotated resource." + policy: String + "Roles that are allowed to access the annotated resource." + roles: [String!] + "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." + apply: ApplyPolicy! = BEFORE_RESOLVER +) repeatable on OBJECT | FIELD_DEFINITION diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_WithPolicy_Validation.graphql b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_WithPolicy_Validation.graphql index 66d4bd89f81..6c18a62799a 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_WithPolicy_Validation.graphql +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_WithPolicy_Validation.graphql @@ -17,4 +17,11 @@ enum ApplyPolicy { } "The authorize directive." -directive @authorize("The name of the authorization policy that determines access to the annotated resource." policy: String "Roles that are allowed to access the annotated resource." roles: [String!] "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." apply: ApplyPolicy! = BEFORE_RESOLVER) repeatable on OBJECT | FIELD_DEFINITION +directive @authorize( + "The name of the authorization policy that determines access to the annotated resource." + policy: String + "Roles that are allowed to access the annotated resource." + roles: [String!] + "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." + apply: ApplyPolicy! = BEFORE_RESOLVER +) repeatable on OBJECT | FIELD_DEFINITION diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_WithRoles.graphql b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_WithRoles.graphql index 0ce572f6b3e..c9aa1a44567 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_WithRoles.graphql +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.FieldAuth_WithRoles.graphql @@ -17,4 +17,11 @@ enum ApplyPolicy { } "The authorize directive." -directive @authorize("The name of the authorization policy that determines access to the annotated resource." policy: String "Roles that are allowed to access the annotated resource." roles: [String!] "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." apply: ApplyPolicy! = BEFORE_RESOLVER) repeatable on OBJECT | FIELD_DEFINITION +directive @authorize( + "The name of the authorization policy that determines access to the annotated resource." + policy: String + "Roles that are allowed to access the annotated resource." + roles: [String!] + "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." + apply: ApplyPolicy! = BEFORE_RESOLVER +) repeatable on OBJECT | FIELD_DEFINITION diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.TypeAuth_DefaultPolicy.graphql b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.TypeAuth_DefaultPolicy.graphql index 582b3318f00..d80cbfb7a06 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.TypeAuth_DefaultPolicy.graphql +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.TypeAuth_DefaultPolicy.graphql @@ -17,4 +17,11 @@ enum ApplyPolicy { } "The authorize directive." -directive @authorize("The name of the authorization policy that determines access to the annotated resource." policy: String "Roles that are allowed to access the annotated resource." roles: [String!] "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." apply: ApplyPolicy! = BEFORE_RESOLVER) repeatable on OBJECT | FIELD_DEFINITION +directive @authorize( + "The name of the authorization policy that determines access to the annotated resource." + policy: String + "Roles that are allowed to access the annotated resource." + roles: [String!] + "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." + apply: ApplyPolicy! = BEFORE_RESOLVER +) repeatable on OBJECT | FIELD_DEFINITION diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.TypeAuth_WithPolicy.graphql b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.TypeAuth_WithPolicy.graphql index a270b3a71a0..3e5a3514b2d 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.TypeAuth_WithPolicy.graphql +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.TypeAuth_WithPolicy.graphql @@ -17,4 +17,11 @@ enum ApplyPolicy { } "The authorize directive." -directive @authorize("The name of the authorization policy that determines access to the annotated resource." policy: String "Roles that are allowed to access the annotated resource." roles: [String!] "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." apply: ApplyPolicy! = BEFORE_RESOLVER) repeatable on OBJECT | FIELD_DEFINITION +directive @authorize( + "The name of the authorization policy that determines access to the annotated resource." + policy: String + "Roles that are allowed to access the annotated resource." + roles: [String!] + "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." + apply: ApplyPolicy! = BEFORE_RESOLVER +) repeatable on OBJECT | FIELD_DEFINITION diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.TypeAuth_WithRoles.graphql b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.TypeAuth_WithRoles.graphql index 10c14b1d0e6..a953ab99f26 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.TypeAuth_WithRoles.graphql +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Authorization.Tests/__snapshots__/AuthorizeDirectiveTests.TypeAuth_WithRoles.graphql @@ -17,4 +17,11 @@ enum ApplyPolicy { } "The authorize directive." -directive @authorize("The name of the authorization policy that determines access to the annotated resource." policy: String "Roles that are allowed to access the annotated resource." roles: [String!] "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." apply: ApplyPolicy! = BEFORE_RESOLVER) repeatable on OBJECT | FIELD_DEFINITION +directive @authorize( + "The name of the authorization policy that determines access to the annotated resource." + policy: String + "Roles that are allowed to access the annotated resource." + roles: [String!] + "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." + apply: ApplyPolicy! = BEFORE_RESOLVER +) repeatable on OBJECT | FIELD_DEFINITION diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_SDL.snap b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_SDL.snap index fe0063d6d48..5e3ecccb04c 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_SDL.snap +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_SDL.snap @@ -7,7 +7,16 @@ schema { interface Character { id: ID! name: String! - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection appearsIn: [Episode] traits: Any height(unit: Unit): Float @@ -17,7 +26,18 @@ type Droid implements Character { id: ID! name: String! appearsIn: [Episode] - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) @cost(weight: "10") + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @cost(weight: "10") height(unit: Unit): Float primaryFunction: String traits: Any @@ -45,7 +65,18 @@ type Human implements Character { id: ID! name: String! appearsIn: [Episode] - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) @cost(weight: "10") + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @cost(weight: "10") otherHuman: Human height(unit: Unit): Float homePlanet: String @@ -53,7 +84,8 @@ type Human implements Character { } type Mutation { - createReview(episode: Episode! review: ReviewInput!): Review! @cost(weight: "10") + createReview(episode: Episode!, review: ReviewInput!): Review! + @cost(weight: "10") complete(episode: Episode!): Boolean! @cost(weight: "10") } @@ -80,7 +112,9 @@ type Query { time: Long! evict: Boolean! wait(m: Int!): Boolean! @cost(weight: "10") - someDeprecatedField(deprecatedArg: String! = "foo" @deprecated(reason: "use something else")): String! @deprecated(reason: "use something else") + someDeprecatedField( + deprecatedArg: String! = "foo" @deprecated(reason: "use something else") + ): String! @deprecated(reason: "use something else") } type Review { @@ -96,7 +130,7 @@ type Starship { type Subscription { onReview(episode: Episode!): Review! - delay(delay: Int! count: Int!): String! + delay(delay: Int!, count: Int!): String! } union SearchResult = Starship | Human | Droid @@ -118,24 +152,54 @@ enum Unit { } "The purpose of the `cost` directive is to define a `weight` for GraphQL types, fields, and arguments. Static analysis can use these weights when calculating the overall cost of a query or response." -directive @cost("The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." weight: String!) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @cost( + "The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." + weight: String! +) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION "The `@defer` directive may be provided for fragment spreads and inline fragments to inform the executor to delay the execution of the current fragment to indicate deprioritization of the current fragment. A query with `@defer` directive will cause the request to potentially return multiple responses, where non-deferred data is delivered in the initial response and data deferred is delivered in a subsequent response. `@include` and `@skip` take precedence over `@defer`." -directive @defer("If this argument label has a value other than null, it will be passed on to the result of this defer directive. This label is intended to give client applications a way to identify to which fragment a deferred result belongs to." label: String "Deferred when true." if: Boolean) on FRAGMENT_SPREAD | INLINE_FRAGMENT +directive @defer( + "If this argument label has a value other than null, it will be passed on to the result of this defer directive. This label is intended to give client applications a way to identify to which fragment a deferred result belongs to." + label: String + "Deferred when true." + if: Boolean +) on FRAGMENT_SPREAD | INLINE_FRAGMENT directive @foo(bar: Int!) on SUBSCRIPTION "The purpose of the `@listSize` directive is to either inform the static analysis about the size of returned lists (if that information is statically available), or to point the analysis to where to find that information." -directive @listSize("The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." assumedSize: Int "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." slicingArguments: [String!] "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." slicingArgumentDefaultValue: Int "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." sizedFields: [String!] "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." requireOneSlicingArgument: Boolean = true) on FIELD_DEFINITION +directive @listSize( + "The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." + assumedSize: Int + "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." + slicingArguments: [String!] + "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." + slicingArgumentDefaultValue: Int + "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." + sizedFields: [String!] + "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." + requireOneSlicingArgument: Boolean = true +) on FIELD_DEFINITION "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `@stream` directive may be provided for a field of `List` type so that the backend can leverage technology such as asynchronous iterators to provide a partial list in the initial response, and additional list items in subsequent responses. `@include` and `@skip` take precedence over `@stream`." -directive @stream("If this argument label has a value other than null, it will be passed on to the result of this stream directive. This label is intended to give client applications a way to identify to which fragment a streamed result belongs to." label: String "The initial elements that shall be send down to the consumer." initialCount: Int! = 0 "Streamed when true." if: Boolean) on FIELD +directive @stream( + "If this argument label has a value other than null, it will be passed on to the result of this stream directive. This label is intended to give client applications a way to identify to which fragment a streamed result belongs to." + label: String + "The initial elements that shall be send down to the consumer." + initialCount: Int! = 0 + "Streamed when true." + if: Boolean +) on FIELD "The `Any` scalar type represents any valid GraphQL value." scalar Any @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") "The `Long` scalar type represents a signed 64-bit integer." -scalar Long @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") +scalar Long + @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_SDL_Explicit_Route.snap b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_SDL_Explicit_Route.snap index 97061e2f6ff..2379c02f438 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_SDL_Explicit_Route.snap +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_SDL_Explicit_Route.snap @@ -7,7 +7,16 @@ schema { interface Character { id: ID! name: String! - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection appearsIn: [Episode] traits: Any height(unit: Unit): Float @@ -17,7 +26,18 @@ type Droid implements Character { id: ID! name: String! appearsIn: [Episode] - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) @cost(weight: "10") + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @cost(weight: "10") height(unit: Unit): Float primaryFunction: String traits: Any @@ -45,7 +65,18 @@ type Human implements Character { id: ID! name: String! appearsIn: [Episode] - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) @cost(weight: "10") + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @cost(weight: "10") otherHuman: Human height(unit: Unit): Float homePlanet: String @@ -53,7 +84,8 @@ type Human implements Character { } type Mutation { - createReview(episode: Episode! review: ReviewInput!): Review! @cost(weight: "10") + createReview(episode: Episode!, review: ReviewInput!): Review! + @cost(weight: "10") complete(episode: Episode!): Boolean! @cost(weight: "10") } @@ -80,7 +112,9 @@ type Query { time: Long! evict: Boolean! wait(m: Int!): Boolean! @cost(weight: "10") - someDeprecatedField(deprecatedArg: String! = "foo" @deprecated(reason: "use something else")): String! @deprecated(reason: "use something else") + someDeprecatedField( + deprecatedArg: String! = "foo" @deprecated(reason: "use something else") + ): String! @deprecated(reason: "use something else") } type Review { @@ -96,7 +130,7 @@ type Starship { type Subscription { onReview(episode: Episode!): Review! - delay(delay: Int! count: Int!): String! + delay(delay: Int!, count: Int!): String! } union SearchResult = Starship | Human | Droid @@ -118,22 +152,52 @@ enum Unit { } "The purpose of the `cost` directive is to define a `weight` for GraphQL types, fields, and arguments. Static analysis can use these weights when calculating the overall cost of a query or response." -directive @cost("The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." weight: String!) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @cost( + "The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." + weight: String! +) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION "The `@defer` directive may be provided for fragment spreads and inline fragments to inform the executor to delay the execution of the current fragment to indicate deprioritization of the current fragment. A query with `@defer` directive will cause the request to potentially return multiple responses, where non-deferred data is delivered in the initial response and data deferred is delivered in a subsequent response. `@include` and `@skip` take precedence over `@defer`." -directive @defer("If this argument label has a value other than null, it will be passed on to the result of this defer directive. This label is intended to give client applications a way to identify to which fragment a deferred result belongs to." label: String "Deferred when true." if: Boolean) on FRAGMENT_SPREAD | INLINE_FRAGMENT +directive @defer( + "If this argument label has a value other than null, it will be passed on to the result of this defer directive. This label is intended to give client applications a way to identify to which fragment a deferred result belongs to." + label: String + "Deferred when true." + if: Boolean +) on FRAGMENT_SPREAD | INLINE_FRAGMENT "The purpose of the `@listSize` directive is to either inform the static analysis about the size of returned lists (if that information is statically available), or to point the analysis to where to find that information." -directive @listSize("The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." assumedSize: Int "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." slicingArguments: [String!] "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." slicingArgumentDefaultValue: Int "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." sizedFields: [String!] "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." requireOneSlicingArgument: Boolean = true) on FIELD_DEFINITION +directive @listSize( + "The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." + assumedSize: Int + "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." + slicingArguments: [String!] + "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." + slicingArgumentDefaultValue: Int + "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." + sizedFields: [String!] + "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." + requireOneSlicingArgument: Boolean = true +) on FIELD_DEFINITION "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `@stream` directive may be provided for a field of `List` type so that the backend can leverage technology such as asynchronous iterators to provide a partial list in the initial response, and additional list items in subsequent responses. `@include` and `@skip` take precedence over `@stream`." -directive @stream("If this argument label has a value other than null, it will be passed on to the result of this stream directive. This label is intended to give client applications a way to identify to which fragment a streamed result belongs to." label: String "The initial elements that shall be send down to the consumer." initialCount: Int! = 0 "Streamed when true." if: Boolean) on FIELD +directive @stream( + "If this argument label has a value other than null, it will be passed on to the result of this stream directive. This label is intended to give client applications a way to identify to which fragment a streamed result belongs to." + label: String + "The initial elements that shall be send down to the consumer." + initialCount: Int! = 0 + "Streamed when true." + if: Boolean +) on FIELD "The `Any` scalar type represents any valid GraphQL value." scalar Any @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") "The `Long` scalar type represents a signed 64-bit integer." -scalar Long @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") +scalar Long + @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_SDL_Explicit_Route_Explicit_Pattern.snap b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_SDL_Explicit_Route_Explicit_Pattern.snap index 97061e2f6ff..2379c02f438 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_SDL_Explicit_Route_Explicit_Pattern.snap +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_SDL_Explicit_Route_Explicit_Pattern.snap @@ -7,7 +7,16 @@ schema { interface Character { id: ID! name: String! - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection appearsIn: [Episode] traits: Any height(unit: Unit): Float @@ -17,7 +26,18 @@ type Droid implements Character { id: ID! name: String! appearsIn: [Episode] - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) @cost(weight: "10") + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @cost(weight: "10") height(unit: Unit): Float primaryFunction: String traits: Any @@ -45,7 +65,18 @@ type Human implements Character { id: ID! name: String! appearsIn: [Episode] - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) @cost(weight: "10") + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @cost(weight: "10") otherHuman: Human height(unit: Unit): Float homePlanet: String @@ -53,7 +84,8 @@ type Human implements Character { } type Mutation { - createReview(episode: Episode! review: ReviewInput!): Review! @cost(weight: "10") + createReview(episode: Episode!, review: ReviewInput!): Review! + @cost(weight: "10") complete(episode: Episode!): Boolean! @cost(weight: "10") } @@ -80,7 +112,9 @@ type Query { time: Long! evict: Boolean! wait(m: Int!): Boolean! @cost(weight: "10") - someDeprecatedField(deprecatedArg: String! = "foo" @deprecated(reason: "use something else")): String! @deprecated(reason: "use something else") + someDeprecatedField( + deprecatedArg: String! = "foo" @deprecated(reason: "use something else") + ): String! @deprecated(reason: "use something else") } type Review { @@ -96,7 +130,7 @@ type Starship { type Subscription { onReview(episode: Episode!): Review! - delay(delay: Int! count: Int!): String! + delay(delay: Int!, count: Int!): String! } union SearchResult = Starship | Human | Droid @@ -118,22 +152,52 @@ enum Unit { } "The purpose of the `cost` directive is to define a `weight` for GraphQL types, fields, and arguments. Static analysis can use these weights when calculating the overall cost of a query or response." -directive @cost("The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." weight: String!) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @cost( + "The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." + weight: String! +) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION "The `@defer` directive may be provided for fragment spreads and inline fragments to inform the executor to delay the execution of the current fragment to indicate deprioritization of the current fragment. A query with `@defer` directive will cause the request to potentially return multiple responses, where non-deferred data is delivered in the initial response and data deferred is delivered in a subsequent response. `@include` and `@skip` take precedence over `@defer`." -directive @defer("If this argument label has a value other than null, it will be passed on to the result of this defer directive. This label is intended to give client applications a way to identify to which fragment a deferred result belongs to." label: String "Deferred when true." if: Boolean) on FRAGMENT_SPREAD | INLINE_FRAGMENT +directive @defer( + "If this argument label has a value other than null, it will be passed on to the result of this defer directive. This label is intended to give client applications a way to identify to which fragment a deferred result belongs to." + label: String + "Deferred when true." + if: Boolean +) on FRAGMENT_SPREAD | INLINE_FRAGMENT "The purpose of the `@listSize` directive is to either inform the static analysis about the size of returned lists (if that information is statically available), or to point the analysis to where to find that information." -directive @listSize("The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." assumedSize: Int "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." slicingArguments: [String!] "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." slicingArgumentDefaultValue: Int "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." sizedFields: [String!] "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." requireOneSlicingArgument: Boolean = true) on FIELD_DEFINITION +directive @listSize( + "The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." + assumedSize: Int + "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." + slicingArguments: [String!] + "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." + slicingArgumentDefaultValue: Int + "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." + sizedFields: [String!] + "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." + requireOneSlicingArgument: Boolean = true +) on FIELD_DEFINITION "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `@stream` directive may be provided for a field of `List` type so that the backend can leverage technology such as asynchronous iterators to provide a partial list in the initial response, and additional list items in subsequent responses. `@include` and `@skip` take precedence over `@stream`." -directive @stream("If this argument label has a value other than null, it will be passed on to the result of this stream directive. This label is intended to give client applications a way to identify to which fragment a streamed result belongs to." label: String "The initial elements that shall be send down to the consumer." initialCount: Int! = 0 "Streamed when true." if: Boolean) on FIELD +directive @stream( + "If this argument label has a value other than null, it will be passed on to the result of this stream directive. This label is intended to give client applications a way to identify to which fragment a streamed result belongs to." + label: String + "The initial elements that shall be send down to the consumer." + initialCount: Int! = 0 + "Streamed when true." + if: Boolean +) on FIELD "The `Any` scalar type represents any valid GraphQL value." scalar Any @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") "The `Long` scalar type represents a signed 64-bit integer." -scalar Long @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") +scalar Long + @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_Schema.md b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_Schema.md index a5658450568..7de9c4ac83b 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_Schema.md +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_Schema.md @@ -18,7 +18,16 @@ schema { interface Character { id: ID! name: String! - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection appearsIn: [Episode] traits: Any height(unit: Unit): Float @@ -28,7 +37,18 @@ type Droid implements Character { id: ID! name: String! appearsIn: [Episode] - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) @cost(weight: "10") + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @cost(weight: "10") height(unit: Unit): Float primaryFunction: String traits: Any @@ -56,7 +76,18 @@ type Human implements Character { id: ID! name: String! appearsIn: [Episode] - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) @cost(weight: "10") + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @cost(weight: "10") otherHuman: Human height(unit: Unit): Float homePlanet: String @@ -64,7 +95,8 @@ type Human implements Character { } type Mutation { - createReview(episode: Episode! review: ReviewInput!): Review! @cost(weight: "10") + createReview(episode: Episode!, review: ReviewInput!): Review! + @cost(weight: "10") complete(episode: Episode!): Boolean! @cost(weight: "10") } @@ -91,7 +123,9 @@ type Query { time: Long! evict: Boolean! wait(m: Int!): Boolean! @cost(weight: "10") - someDeprecatedField(deprecatedArg: String! = "foo" @deprecated(reason: "use something else")): String! @deprecated(reason: "use something else") + someDeprecatedField( + deprecatedArg: String! = "foo" @deprecated(reason: "use something else") + ): String! @deprecated(reason: "use something else") } type Review { @@ -107,7 +141,7 @@ type Starship { type Subscription { onReview(episode: Episode!): Review! - delay(delay: Int! count: Int!): String! + delay(delay: Int!, count: Int!): String! } union SearchResult = Starship | Human | Droid @@ -129,25 +163,55 @@ enum Unit { } "The purpose of the `cost` directive is to define a `weight` for GraphQL types, fields, and arguments. Static analysis can use these weights when calculating the overall cost of a query or response." -directive @cost("The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." weight: String!) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @cost( + "The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." + weight: String! +) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION "The `@defer` directive may be provided for fragment spreads and inline fragments to inform the executor to delay the execution of the current fragment to indicate deprioritization of the current fragment. A query with `@defer` directive will cause the request to potentially return multiple responses, where non-deferred data is delivered in the initial response and data deferred is delivered in a subsequent response. `@include` and `@skip` take precedence over `@defer`." -directive @defer("If this argument label has a value other than null, it will be passed on to the result of this defer directive. This label is intended to give client applications a way to identify to which fragment a deferred result belongs to." label: String "Deferred when true." if: Boolean) on FRAGMENT_SPREAD | INLINE_FRAGMENT +directive @defer( + "If this argument label has a value other than null, it will be passed on to the result of this defer directive. This label is intended to give client applications a way to identify to which fragment a deferred result belongs to." + label: String + "Deferred when true." + if: Boolean +) on FRAGMENT_SPREAD | INLINE_FRAGMENT directive @foo(bar: Int!) on SUBSCRIPTION "The purpose of the `@listSize` directive is to either inform the static analysis about the size of returned lists (if that information is statically available), or to point the analysis to where to find that information." -directive @listSize("The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." assumedSize: Int "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." slicingArguments: [String!] "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." slicingArgumentDefaultValue: Int "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." sizedFields: [String!] "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." requireOneSlicingArgument: Boolean = true) on FIELD_DEFINITION +directive @listSize( + "The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." + assumedSize: Int + "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." + slicingArguments: [String!] + "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." + slicingArgumentDefaultValue: Int + "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." + sizedFields: [String!] + "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." + requireOneSlicingArgument: Boolean = true +) on FIELD_DEFINITION "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `@stream` directive may be provided for a field of `List` type so that the backend can leverage technology such as asynchronous iterators to provide a partial list in the initial response, and additional list items in subsequent responses. `@include` and `@skip` take precedence over `@stream`." -directive @stream("If this argument label has a value other than null, it will be passed on to the result of this stream directive. This label is intended to give client applications a way to identify to which fragment a streamed result belongs to." label: String "The initial elements that shall be send down to the consumer." initialCount: Int! = 0 "Streamed when true." if: Boolean) on FIELD +directive @stream( + "If this argument label has a value other than null, it will be passed on to the result of this stream directive. This label is intended to give client applications a way to identify to which fragment a streamed result belongs to." + label: String + "The initial elements that shall be send down to the consumer." + initialCount: Int! = 0 + "Streamed when true." + if: Boolean +) on FIELD "The `Any` scalar type represents any valid GraphQL value." scalar Any @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") "The `Long` scalar type represents a signed 64-bit integer." -scalar Long @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") +scalar Long + @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") ``` diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_Schema_Slicing_Args_Enabled.md b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_Schema_Slicing_Args_Enabled.md index 59913532ffe..07a45619eff 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_Schema_Slicing_Args_Enabled.md +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_Schema_Slicing_Args_Enabled.md @@ -18,7 +18,16 @@ schema { interface Character { id: ID! name: String! - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection appearsIn: [Episode] traits: Any height(unit: Unit): Float @@ -28,7 +37,18 @@ type Droid implements Character { id: ID! name: String! appearsIn: [Episode] - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"]) @cost(weight: "10") + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"]) + @cost(weight: "10") height(unit: Unit): Float primaryFunction: String traits: Any @@ -56,7 +76,18 @@ type Human implements Character { id: ID! name: String! appearsIn: [Episode] - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"]) @cost(weight: "10") + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"]) + @cost(weight: "10") otherHuman: Human height(unit: Unit): Float homePlanet: String @@ -64,7 +95,8 @@ type Human implements Character { } type Mutation { - createReview(episode: Episode! review: ReviewInput!): Review! @cost(weight: "10") + createReview(episode: Episode!, review: ReviewInput!): Review! + @cost(weight: "10") complete(episode: Episode!): Boolean! @cost(weight: "10") } @@ -91,7 +123,9 @@ type Query { time: Long! evict: Boolean! wait(m: Int!): Boolean! @cost(weight: "10") - someDeprecatedField(deprecatedArg: String! = "foo" @deprecated(reason: "use something else")): String! @deprecated(reason: "use something else") + someDeprecatedField( + deprecatedArg: String! = "foo" @deprecated(reason: "use something else") + ): String! @deprecated(reason: "use something else") } type Review { @@ -107,7 +141,7 @@ type Starship { type Subscription { onReview(episode: Episode!): Review! - delay(delay: Int! count: Int!): String! + delay(delay: Int!, count: Int!): String! } union SearchResult = Starship | Human | Droid @@ -129,25 +163,55 @@ enum Unit { } "The purpose of the `cost` directive is to define a `weight` for GraphQL types, fields, and arguments. Static analysis can use these weights when calculating the overall cost of a query or response." -directive @cost("The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." weight: String!) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @cost( + "The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." + weight: String! +) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION "The `@defer` directive may be provided for fragment spreads and inline fragments to inform the executor to delay the execution of the current fragment to indicate deprioritization of the current fragment. A query with `@defer` directive will cause the request to potentially return multiple responses, where non-deferred data is delivered in the initial response and data deferred is delivered in a subsequent response. `@include` and `@skip` take precedence over `@defer`." -directive @defer("If this argument label has a value other than null, it will be passed on to the result of this defer directive. This label is intended to give client applications a way to identify to which fragment a deferred result belongs to." label: String "Deferred when true." if: Boolean) on FRAGMENT_SPREAD | INLINE_FRAGMENT +directive @defer( + "If this argument label has a value other than null, it will be passed on to the result of this defer directive. This label is intended to give client applications a way to identify to which fragment a deferred result belongs to." + label: String + "Deferred when true." + if: Boolean +) on FRAGMENT_SPREAD | INLINE_FRAGMENT directive @foo(bar: Int!) on SUBSCRIPTION "The purpose of the `@listSize` directive is to either inform the static analysis about the size of returned lists (if that information is statically available), or to point the analysis to where to find that information." -directive @listSize("The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." assumedSize: Int "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." slicingArguments: [String!] "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." slicingArgumentDefaultValue: Int "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." sizedFields: [String!] "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." requireOneSlicingArgument: Boolean = true) on FIELD_DEFINITION +directive @listSize( + "The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." + assumedSize: Int + "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." + slicingArguments: [String!] + "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." + slicingArgumentDefaultValue: Int + "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." + sizedFields: [String!] + "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." + requireOneSlicingArgument: Boolean = true +) on FIELD_DEFINITION "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `@stream` directive may be provided for a field of `List` type so that the backend can leverage technology such as asynchronous iterators to provide a partial list in the initial response, and additional list items in subsequent responses. `@include` and `@skip` take precedence over `@stream`." -directive @stream("If this argument label has a value other than null, it will be passed on to the result of this stream directive. This label is intended to give client applications a way to identify to which fragment a streamed result belongs to." label: String "The initial elements that shall be send down to the consumer." initialCount: Int! = 0 "Streamed when true." if: Boolean) on FIELD +directive @stream( + "If this argument label has a value other than null, it will be passed on to the result of this stream directive. This label is intended to give client applications a way to identify to which fragment a streamed result belongs to." + label: String + "The initial elements that shall be send down to the consumer." + initialCount: Int! = 0 + "Streamed when true." + if: Boolean +) on FIELD "The `Any` scalar type represents any valid GraphQL value." scalar Any @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") "The `Long` scalar type represents a signed 64-bit integer." -scalar Long @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") +scalar Long + @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") ``` diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_Types_SDL.snap b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_Types_SDL.snap index 80aaa6d4593..2996d51b290 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_Types_SDL.snap +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_Types_SDL.snap @@ -9,5 +9,7 @@ type Query { time: Long! evict: Boolean! wait(m: Int!): Boolean! @cost(weight: "10") - someDeprecatedField(deprecatedArg: String! = "foo" @deprecated(reason: "use something else")): String! @deprecated(reason: "use something else") + someDeprecatedField( + deprecatedArg: String! = "foo" @deprecated(reason: "use something else") + ): String! @deprecated(reason: "use something else") } diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_Types_SDL_Character_and_Query.snap b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_Types_SDL_Character_and_Query.snap index e6db59147c8..1a8c2025903 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_Types_SDL_Character_and_Query.snap +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_Types_SDL_Character_and_Query.snap @@ -1,7 +1,16 @@ interface Character { id: ID! name: String! - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection appearsIn: [Episode] traits: Any height(unit: Unit): Float @@ -18,5 +27,7 @@ type Query { time: Long! evict: Boolean! wait(m: Int!): Boolean! @cost(weight: "10") - someDeprecatedField(deprecatedArg: String! = "foo" @deprecated(reason: "use something else")): String! @deprecated(reason: "use something else") + someDeprecatedField( + deprecatedArg: String! = "foo" @deprecated(reason: "use something else") + ): String! @deprecated(reason: "use something else") } diff --git a/src/HotChocolate/Caching/test/Caching.Tests/SchemaTests.cs b/src/HotChocolate/Caching/test/Caching.Tests/SchemaTests.cs index 4e47e510c47..8db48737634 100644 --- a/src/HotChocolate/Caching/test/Caching.Tests/SchemaTests.cs +++ b/src/HotChocolate/Caching/test/Caching.Tests/SchemaTests.cs @@ -46,7 +46,18 @@ enum CacheControlScope { } "The `@cacheControl` directive may be provided for individual fields or entire object, interface or union types to provide caching hints to the executor." - directive @cacheControl("The maximum amount of time this field's cached value is valid, in seconds." maxAge: Int "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." sharedMaxAge: Int "If `true`, the field inherits the `maxAge` of its parent field." inheritMaxAge: Boolean "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." scope: CacheControlScope "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." vary: [String]) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION + directive @cacheControl( + "The maximum amount of time this field's cached value is valid, in seconds." + maxAge: Int + "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." + sharedMaxAge: Int + "If `true`, the field inherits the `maxAge` of its parent field." + inheritMaxAge: Boolean + "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." + scope: CacheControlScope + "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." + vary: [String] + ) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION "The `@oneOf` directive is used within the type system definition language to indicate that an Input Object is a OneOf Input Object." directive @oneOf on INPUT_OBJECT diff --git a/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.DataResolvers_ApplyDefaults.snap b/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.DataResolvers_ApplyDefaults.snap index 7ebf532defb..5a7fce9fd0e 100644 --- a/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.DataResolvers_ApplyDefaults.snap +++ b/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.DataResolvers_ApplyDefaults.snap @@ -15,17 +15,41 @@ type NestedType { valueTaskField: String! @cacheControl(maxAge: 0) executableField: [String!]! @cacheControl(maxAge: 0) queryableField: [String!]! @cacheControl(maxAge: 0) - queryableFieldWithConnection("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): QueryableFieldWithConnectionConnection @cacheControl(maxAge: 0) - queryableFieldWithCollectionSegment(skip: Int take: Int): QueryableFieldWithCollectionSegmentCollectionSegment @cacheControl(maxAge: 0) + queryableFieldWithConnection( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): QueryableFieldWithConnectionConnection @cacheControl(maxAge: 0) + queryableFieldWithCollectionSegment(skip: Int, take: Int): QueryableFieldWithCollectionSegmentCollectionSegment + @cacheControl(maxAge: 0) taskFieldWithCacheControl: String! @cacheControl(maxAge: 200) valueTaskFieldWithCacheControl: String! @cacheControl(maxAge: 200) executableFieldWithCacheControl: [String!]! @cacheControl(maxAge: 200) queryableFieldWithCacheControl: [String!]! @cacheControl(maxAge: 200) - queryableFieldWithCacheControlSharedMaxAge: [String!]! @cacheControl(sharedMaxAge: 200) - queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200) - queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) - queryableFieldWithConnectionWithCacheControl("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): QueryableFieldWithConnectionWithCacheControlConnection @cacheControl(maxAge: 200) - queryableFieldWithCollectionSegmentWithCacheControl(skip: Int take: Int): QueryableFieldWithCollectionSegmentWithCacheControlCollectionSegment @cacheControl(maxAge: 200) + queryableFieldWithCacheControlSharedMaxAge: [String!]! + @cacheControl(sharedMaxAge: 200) + queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! + @cacheControl(maxAge: 500, sharedMaxAge: 200) + queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! + @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) + queryableFieldWithConnectionWithCacheControl( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): QueryableFieldWithConnectionWithCacheControlConnection + @cacheControl(maxAge: 200) + queryableFieldWithCollectionSegmentWithCacheControl(skip: Int, take: Int): QueryableFieldWithCollectionSegmentWithCacheControlCollectionSegment + @cacheControl(maxAge: 200) pureField: String! pureFieldWithCacheControl: String! @cacheControl(maxAge: 200) } @@ -51,17 +75,41 @@ type Query { valueTaskField: String! @cacheControl(maxAge: 0) executableField: [String!]! @cacheControl(maxAge: 0) queryableField: [String!]! @cacheControl(maxAge: 0) - queryableFieldWithConnection("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): QueryableFieldWithConnectionConnection @cacheControl(maxAge: 0) - queryableFieldWithCollectionSegment(skip: Int take: Int): QueryableFieldWithCollectionSegmentCollectionSegment @cacheControl(maxAge: 0) + queryableFieldWithConnection( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): QueryableFieldWithConnectionConnection @cacheControl(maxAge: 0) + queryableFieldWithCollectionSegment(skip: Int, take: Int): QueryableFieldWithCollectionSegmentCollectionSegment + @cacheControl(maxAge: 0) taskFieldWithCacheControl: String! @cacheControl(maxAge: 200) valueTaskFieldWithCacheControl: String! @cacheControl(maxAge: 200) executableFieldWithCacheControl: [String!]! @cacheControl(maxAge: 200) queryableFieldWithCacheControl: [String!]! @cacheControl(maxAge: 200) - queryableFieldWithCacheControlSharedMaxAge: [String!]! @cacheControl(sharedMaxAge: 200) - queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200) - queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) - queryableFieldWithConnectionWithCacheControl("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): QueryableFieldWithConnectionWithCacheControlConnection @cacheControl(maxAge: 200) - queryableFieldWithCollectionSegmentWithCacheControl(skip: Int take: Int): QueryableFieldWithCollectionSegmentWithCacheControlCollectionSegment @cacheControl(maxAge: 200) + queryableFieldWithCacheControlSharedMaxAge: [String!]! + @cacheControl(sharedMaxAge: 200) + queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! + @cacheControl(maxAge: 500, sharedMaxAge: 200) + queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! + @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) + queryableFieldWithConnectionWithCacheControl( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): QueryableFieldWithConnectionWithCacheControlConnection + @cacheControl(maxAge: 200) + queryableFieldWithCollectionSegmentWithCacheControl(skip: Int, take: Int): QueryableFieldWithCollectionSegmentWithCacheControlCollectionSegment + @cacheControl(maxAge: 200) nested: NestedType! @cacheControl(maxAge: 0) nested2: NestedType2! @cacheControl(maxAge: 0) pureField: String! @cacheControl(maxAge: 0) @@ -129,4 +177,15 @@ enum CacheControlScope { } "The `@cacheControl` directive may be provided for individual fields or entire object, interface or union types to provide caching hints to the executor." -directive @cacheControl("The maximum amount of time this field's cached value is valid, in seconds." maxAge: Int "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." sharedMaxAge: Int "If `true`, the field inherits the `maxAge` of its parent field." inheritMaxAge: Boolean "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." scope: CacheControlScope "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." vary: [String]) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION +directive @cacheControl( + "The maximum amount of time this field's cached value is valid, in seconds." + maxAge: Int + "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." + sharedMaxAge: Int + "If `true`, the field inherits the `maxAge` of its parent field." + inheritMaxAge: Boolean + "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." + scope: CacheControlScope + "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." + vary: [String] +) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION diff --git a/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.DataResolvers_ApplyDefaults_DifferentDefaultMaxAge.snap b/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.DataResolvers_ApplyDefaults_DifferentDefaultMaxAge.snap index f630feff1bd..a4921ac3bbb 100644 --- a/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.DataResolvers_ApplyDefaults_DifferentDefaultMaxAge.snap +++ b/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.DataResolvers_ApplyDefaults_DifferentDefaultMaxAge.snap @@ -15,17 +15,41 @@ type NestedType { valueTaskField: String! @cacheControl(maxAge: 100) executableField: [String!]! @cacheControl(maxAge: 100) queryableField: [String!]! @cacheControl(maxAge: 100) - queryableFieldWithConnection("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): QueryableFieldWithConnectionConnection @cacheControl(maxAge: 100) - queryableFieldWithCollectionSegment(skip: Int take: Int): QueryableFieldWithCollectionSegmentCollectionSegment @cacheControl(maxAge: 100) + queryableFieldWithConnection( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): QueryableFieldWithConnectionConnection @cacheControl(maxAge: 100) + queryableFieldWithCollectionSegment(skip: Int, take: Int): QueryableFieldWithCollectionSegmentCollectionSegment + @cacheControl(maxAge: 100) taskFieldWithCacheControl: String! @cacheControl(maxAge: 200) valueTaskFieldWithCacheControl: String! @cacheControl(maxAge: 200) executableFieldWithCacheControl: [String!]! @cacheControl(maxAge: 200) queryableFieldWithCacheControl: [String!]! @cacheControl(maxAge: 200) - queryableFieldWithCacheControlSharedMaxAge: [String!]! @cacheControl(sharedMaxAge: 200) - queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200) - queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) - queryableFieldWithConnectionWithCacheControl("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): QueryableFieldWithConnectionWithCacheControlConnection @cacheControl(maxAge: 200) - queryableFieldWithCollectionSegmentWithCacheControl(skip: Int take: Int): QueryableFieldWithCollectionSegmentWithCacheControlCollectionSegment @cacheControl(maxAge: 200) + queryableFieldWithCacheControlSharedMaxAge: [String!]! + @cacheControl(sharedMaxAge: 200) + queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! + @cacheControl(maxAge: 500, sharedMaxAge: 200) + queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! + @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) + queryableFieldWithConnectionWithCacheControl( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): QueryableFieldWithConnectionWithCacheControlConnection + @cacheControl(maxAge: 200) + queryableFieldWithCollectionSegmentWithCacheControl(skip: Int, take: Int): QueryableFieldWithCollectionSegmentWithCacheControlCollectionSegment + @cacheControl(maxAge: 200) pureField: String! pureFieldWithCacheControl: String! @cacheControl(maxAge: 200) } @@ -51,17 +75,41 @@ type Query { valueTaskField: String! @cacheControl(maxAge: 100) executableField: [String!]! @cacheControl(maxAge: 100) queryableField: [String!]! @cacheControl(maxAge: 100) - queryableFieldWithConnection("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): QueryableFieldWithConnectionConnection @cacheControl(maxAge: 100) - queryableFieldWithCollectionSegment(skip: Int take: Int): QueryableFieldWithCollectionSegmentCollectionSegment @cacheControl(maxAge: 100) + queryableFieldWithConnection( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): QueryableFieldWithConnectionConnection @cacheControl(maxAge: 100) + queryableFieldWithCollectionSegment(skip: Int, take: Int): QueryableFieldWithCollectionSegmentCollectionSegment + @cacheControl(maxAge: 100) taskFieldWithCacheControl: String! @cacheControl(maxAge: 200) valueTaskFieldWithCacheControl: String! @cacheControl(maxAge: 200) executableFieldWithCacheControl: [String!]! @cacheControl(maxAge: 200) queryableFieldWithCacheControl: [String!]! @cacheControl(maxAge: 200) - queryableFieldWithCacheControlSharedMaxAge: [String!]! @cacheControl(sharedMaxAge: 200) - queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200) - queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) - queryableFieldWithConnectionWithCacheControl("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): QueryableFieldWithConnectionWithCacheControlConnection @cacheControl(maxAge: 200) - queryableFieldWithCollectionSegmentWithCacheControl(skip: Int take: Int): QueryableFieldWithCollectionSegmentWithCacheControlCollectionSegment @cacheControl(maxAge: 200) + queryableFieldWithCacheControlSharedMaxAge: [String!]! + @cacheControl(sharedMaxAge: 200) + queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! + @cacheControl(maxAge: 500, sharedMaxAge: 200) + queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! + @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) + queryableFieldWithConnectionWithCacheControl( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): QueryableFieldWithConnectionWithCacheControlConnection + @cacheControl(maxAge: 200) + queryableFieldWithCollectionSegmentWithCacheControl(skip: Int, take: Int): QueryableFieldWithCollectionSegmentWithCacheControlCollectionSegment + @cacheControl(maxAge: 200) nested: NestedType! @cacheControl(maxAge: 100) nested2: NestedType2! @cacheControl(maxAge: 100) pureField: String! @cacheControl(maxAge: 100) @@ -129,4 +177,15 @@ enum CacheControlScope { } "The `@cacheControl` directive may be provided for individual fields or entire object, interface or union types to provide caching hints to the executor." -directive @cacheControl("The maximum amount of time this field's cached value is valid, in seconds." maxAge: Int "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." sharedMaxAge: Int "If `true`, the field inherits the `maxAge` of its parent field." inheritMaxAge: Boolean "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." scope: CacheControlScope "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." vary: [String]) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION +directive @cacheControl( + "The maximum amount of time this field's cached value is valid, in seconds." + maxAge: Int + "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." + sharedMaxAge: Int + "If `true`, the field inherits the `maxAge` of its parent field." + inheritMaxAge: Boolean + "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." + scope: CacheControlScope + "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." + vary: [String] +) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION diff --git a/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.DataResolvers_ApplyDefaults_DifferentDefaultScope.snap b/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.DataResolvers_ApplyDefaults_DifferentDefaultScope.snap index dd48e4010a0..1554c1546eb 100644 --- a/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.DataResolvers_ApplyDefaults_DifferentDefaultScope.snap +++ b/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.DataResolvers_ApplyDefaults_DifferentDefaultScope.snap @@ -15,17 +15,42 @@ type NestedType { valueTaskField: String! @cacheControl(maxAge: 0, scope: PRIVATE) executableField: [String!]! @cacheControl(maxAge: 0, scope: PRIVATE) queryableField: [String!]! @cacheControl(maxAge: 0, scope: PRIVATE) - queryableFieldWithConnection("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): QueryableFieldWithConnectionConnection @cacheControl(maxAge: 0, scope: PRIVATE) - queryableFieldWithCollectionSegment(skip: Int take: Int): QueryableFieldWithCollectionSegmentCollectionSegment @cacheControl(maxAge: 0, scope: PRIVATE) + queryableFieldWithConnection( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): QueryableFieldWithConnectionConnection + @cacheControl(maxAge: 0, scope: PRIVATE) + queryableFieldWithCollectionSegment(skip: Int, take: Int): QueryableFieldWithCollectionSegmentCollectionSegment + @cacheControl(maxAge: 0, scope: PRIVATE) taskFieldWithCacheControl: String! @cacheControl(maxAge: 200) valueTaskFieldWithCacheControl: String! @cacheControl(maxAge: 200) executableFieldWithCacheControl: [String!]! @cacheControl(maxAge: 200) queryableFieldWithCacheControl: [String!]! @cacheControl(maxAge: 200) - queryableFieldWithCacheControlSharedMaxAge: [String!]! @cacheControl(sharedMaxAge: 200) - queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200) - queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) - queryableFieldWithConnectionWithCacheControl("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): QueryableFieldWithConnectionWithCacheControlConnection @cacheControl(maxAge: 200) - queryableFieldWithCollectionSegmentWithCacheControl(skip: Int take: Int): QueryableFieldWithCollectionSegmentWithCacheControlCollectionSegment @cacheControl(maxAge: 200) + queryableFieldWithCacheControlSharedMaxAge: [String!]! + @cacheControl(sharedMaxAge: 200) + queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! + @cacheControl(maxAge: 500, sharedMaxAge: 200) + queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! + @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) + queryableFieldWithConnectionWithCacheControl( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): QueryableFieldWithConnectionWithCacheControlConnection + @cacheControl(maxAge: 200) + queryableFieldWithCollectionSegmentWithCacheControl(skip: Int, take: Int): QueryableFieldWithCollectionSegmentWithCacheControlCollectionSegment + @cacheControl(maxAge: 200) pureField: String! pureFieldWithCacheControl: String! @cacheControl(maxAge: 200) } @@ -51,17 +76,42 @@ type Query { valueTaskField: String! @cacheControl(maxAge: 0, scope: PRIVATE) executableField: [String!]! @cacheControl(maxAge: 0, scope: PRIVATE) queryableField: [String!]! @cacheControl(maxAge: 0, scope: PRIVATE) - queryableFieldWithConnection("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): QueryableFieldWithConnectionConnection @cacheControl(maxAge: 0, scope: PRIVATE) - queryableFieldWithCollectionSegment(skip: Int take: Int): QueryableFieldWithCollectionSegmentCollectionSegment @cacheControl(maxAge: 0, scope: PRIVATE) + queryableFieldWithConnection( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): QueryableFieldWithConnectionConnection + @cacheControl(maxAge: 0, scope: PRIVATE) + queryableFieldWithCollectionSegment(skip: Int, take: Int): QueryableFieldWithCollectionSegmentCollectionSegment + @cacheControl(maxAge: 0, scope: PRIVATE) taskFieldWithCacheControl: String! @cacheControl(maxAge: 200) valueTaskFieldWithCacheControl: String! @cacheControl(maxAge: 200) executableFieldWithCacheControl: [String!]! @cacheControl(maxAge: 200) queryableFieldWithCacheControl: [String!]! @cacheControl(maxAge: 200) - queryableFieldWithCacheControlSharedMaxAge: [String!]! @cacheControl(sharedMaxAge: 200) - queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200) - queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) - queryableFieldWithConnectionWithCacheControl("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): QueryableFieldWithConnectionWithCacheControlConnection @cacheControl(maxAge: 200) - queryableFieldWithCollectionSegmentWithCacheControl(skip: Int take: Int): QueryableFieldWithCollectionSegmentWithCacheControlCollectionSegment @cacheControl(maxAge: 200) + queryableFieldWithCacheControlSharedMaxAge: [String!]! + @cacheControl(sharedMaxAge: 200) + queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! + @cacheControl(maxAge: 500, sharedMaxAge: 200) + queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! + @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) + queryableFieldWithConnectionWithCacheControl( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): QueryableFieldWithConnectionWithCacheControlConnection + @cacheControl(maxAge: 200) + queryableFieldWithCollectionSegmentWithCacheControl(skip: Int, take: Int): QueryableFieldWithCollectionSegmentWithCacheControlCollectionSegment + @cacheControl(maxAge: 200) nested: NestedType! @cacheControl(maxAge: 0, scope: PRIVATE) nested2: NestedType2! @cacheControl(maxAge: 0, scope: PRIVATE) pureField: String! @cacheControl(maxAge: 0, scope: PRIVATE) @@ -129,4 +179,15 @@ enum CacheControlScope { } "The `@cacheControl` directive may be provided for individual fields or entire object, interface or union types to provide caching hints to the executor." -directive @cacheControl("The maximum amount of time this field's cached value is valid, in seconds." maxAge: Int "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." sharedMaxAge: Int "If `true`, the field inherits the `maxAge` of its parent field." inheritMaxAge: Boolean "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." scope: CacheControlScope "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." vary: [String]) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION +directive @cacheControl( + "The maximum amount of time this field's cached value is valid, in seconds." + maxAge: Int + "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." + sharedMaxAge: Int + "If `true`, the field inherits the `maxAge` of its parent field." + inheritMaxAge: Boolean + "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." + scope: CacheControlScope + "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." + vary: [String] +) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION diff --git a/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.DataResolvers_ApplyDefaults_False.snap b/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.DataResolvers_ApplyDefaults_False.snap index b0e43f212e0..9f6627f4f06 100644 --- a/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.DataResolvers_ApplyDefaults_False.snap +++ b/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.DataResolvers_ApplyDefaults_False.snap @@ -15,17 +15,40 @@ type NestedType { valueTaskField: String! executableField: [String!]! queryableField: [String!]! - queryableFieldWithConnection("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): QueryableFieldWithConnectionConnection - queryableFieldWithCollectionSegment(skip: Int take: Int): QueryableFieldWithCollectionSegmentCollectionSegment + queryableFieldWithConnection( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): QueryableFieldWithConnectionConnection + queryableFieldWithCollectionSegment(skip: Int, take: Int): QueryableFieldWithCollectionSegmentCollectionSegment taskFieldWithCacheControl: String! @cacheControl(maxAge: 200) valueTaskFieldWithCacheControl: String! @cacheControl(maxAge: 200) executableFieldWithCacheControl: [String!]! @cacheControl(maxAge: 200) queryableFieldWithCacheControl: [String!]! @cacheControl(maxAge: 200) - queryableFieldWithCacheControlSharedMaxAge: [String!]! @cacheControl(sharedMaxAge: 200) - queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200) - queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) - queryableFieldWithConnectionWithCacheControl("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): QueryableFieldWithConnectionWithCacheControlConnection @cacheControl(maxAge: 200) - queryableFieldWithCollectionSegmentWithCacheControl(skip: Int take: Int): QueryableFieldWithCollectionSegmentWithCacheControlCollectionSegment @cacheControl(maxAge: 200) + queryableFieldWithCacheControlSharedMaxAge: [String!]! + @cacheControl(sharedMaxAge: 200) + queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! + @cacheControl(maxAge: 500, sharedMaxAge: 200) + queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! + @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) + queryableFieldWithConnectionWithCacheControl( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): QueryableFieldWithConnectionWithCacheControlConnection + @cacheControl(maxAge: 200) + queryableFieldWithCollectionSegmentWithCacheControl(skip: Int, take: Int): QueryableFieldWithCollectionSegmentWithCacheControlCollectionSegment + @cacheControl(maxAge: 200) pureField: String! pureFieldWithCacheControl: String! @cacheControl(maxAge: 200) } @@ -51,17 +74,40 @@ type Query { valueTaskField: String! executableField: [String!]! queryableField: [String!]! - queryableFieldWithConnection("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): QueryableFieldWithConnectionConnection - queryableFieldWithCollectionSegment(skip: Int take: Int): QueryableFieldWithCollectionSegmentCollectionSegment + queryableFieldWithConnection( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): QueryableFieldWithConnectionConnection + queryableFieldWithCollectionSegment(skip: Int, take: Int): QueryableFieldWithCollectionSegmentCollectionSegment taskFieldWithCacheControl: String! @cacheControl(maxAge: 200) valueTaskFieldWithCacheControl: String! @cacheControl(maxAge: 200) executableFieldWithCacheControl: [String!]! @cacheControl(maxAge: 200) queryableFieldWithCacheControl: [String!]! @cacheControl(maxAge: 200) - queryableFieldWithCacheControlSharedMaxAge: [String!]! @cacheControl(sharedMaxAge: 200) - queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200) - queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) - queryableFieldWithConnectionWithCacheControl("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): QueryableFieldWithConnectionWithCacheControlConnection @cacheControl(maxAge: 200) - queryableFieldWithCollectionSegmentWithCacheControl(skip: Int take: Int): QueryableFieldWithCollectionSegmentWithCacheControlCollectionSegment @cacheControl(maxAge: 200) + queryableFieldWithCacheControlSharedMaxAge: [String!]! + @cacheControl(sharedMaxAge: 200) + queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! + @cacheControl(maxAge: 500, sharedMaxAge: 200) + queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! + @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) + queryableFieldWithConnectionWithCacheControl( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): QueryableFieldWithConnectionWithCacheControlConnection + @cacheControl(maxAge: 200) + queryableFieldWithCollectionSegmentWithCacheControl(skip: Int, take: Int): QueryableFieldWithCollectionSegmentWithCacheControlCollectionSegment + @cacheControl(maxAge: 200) nested: NestedType! nested2: NestedType2! pureField: String! @@ -129,4 +175,15 @@ enum CacheControlScope { } "The `@cacheControl` directive may be provided for individual fields or entire object, interface or union types to provide caching hints to the executor." -directive @cacheControl("The maximum amount of time this field's cached value is valid, in seconds." maxAge: Int "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." sharedMaxAge: Int "If `true`, the field inherits the `maxAge` of its parent field." inheritMaxAge: Boolean "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." scope: CacheControlScope "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." vary: [String]) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION +directive @cacheControl( + "The maximum amount of time this field's cached value is valid, in seconds." + maxAge: Int + "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." + sharedMaxAge: Int + "If `true`, the field inherits the `maxAge` of its parent field." + inheritMaxAge: Boolean + "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." + scope: CacheControlScope + "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." + vary: [String] +) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION diff --git a/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.DataResolvers_CacheControl_Disabled.snap b/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.DataResolvers_CacheControl_Disabled.snap index b0e43f212e0..9f6627f4f06 100644 --- a/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.DataResolvers_CacheControl_Disabled.snap +++ b/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.DataResolvers_CacheControl_Disabled.snap @@ -15,17 +15,40 @@ type NestedType { valueTaskField: String! executableField: [String!]! queryableField: [String!]! - queryableFieldWithConnection("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): QueryableFieldWithConnectionConnection - queryableFieldWithCollectionSegment(skip: Int take: Int): QueryableFieldWithCollectionSegmentCollectionSegment + queryableFieldWithConnection( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): QueryableFieldWithConnectionConnection + queryableFieldWithCollectionSegment(skip: Int, take: Int): QueryableFieldWithCollectionSegmentCollectionSegment taskFieldWithCacheControl: String! @cacheControl(maxAge: 200) valueTaskFieldWithCacheControl: String! @cacheControl(maxAge: 200) executableFieldWithCacheControl: [String!]! @cacheControl(maxAge: 200) queryableFieldWithCacheControl: [String!]! @cacheControl(maxAge: 200) - queryableFieldWithCacheControlSharedMaxAge: [String!]! @cacheControl(sharedMaxAge: 200) - queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200) - queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) - queryableFieldWithConnectionWithCacheControl("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): QueryableFieldWithConnectionWithCacheControlConnection @cacheControl(maxAge: 200) - queryableFieldWithCollectionSegmentWithCacheControl(skip: Int take: Int): QueryableFieldWithCollectionSegmentWithCacheControlCollectionSegment @cacheControl(maxAge: 200) + queryableFieldWithCacheControlSharedMaxAge: [String!]! + @cacheControl(sharedMaxAge: 200) + queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! + @cacheControl(maxAge: 500, sharedMaxAge: 200) + queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! + @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) + queryableFieldWithConnectionWithCacheControl( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): QueryableFieldWithConnectionWithCacheControlConnection + @cacheControl(maxAge: 200) + queryableFieldWithCollectionSegmentWithCacheControl(skip: Int, take: Int): QueryableFieldWithCollectionSegmentWithCacheControlCollectionSegment + @cacheControl(maxAge: 200) pureField: String! pureFieldWithCacheControl: String! @cacheControl(maxAge: 200) } @@ -51,17 +74,40 @@ type Query { valueTaskField: String! executableField: [String!]! queryableField: [String!]! - queryableFieldWithConnection("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): QueryableFieldWithConnectionConnection - queryableFieldWithCollectionSegment(skip: Int take: Int): QueryableFieldWithCollectionSegmentCollectionSegment + queryableFieldWithConnection( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): QueryableFieldWithConnectionConnection + queryableFieldWithCollectionSegment(skip: Int, take: Int): QueryableFieldWithCollectionSegmentCollectionSegment taskFieldWithCacheControl: String! @cacheControl(maxAge: 200) valueTaskFieldWithCacheControl: String! @cacheControl(maxAge: 200) executableFieldWithCacheControl: [String!]! @cacheControl(maxAge: 200) queryableFieldWithCacheControl: [String!]! @cacheControl(maxAge: 200) - queryableFieldWithCacheControlSharedMaxAge: [String!]! @cacheControl(sharedMaxAge: 200) - queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200) - queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) - queryableFieldWithConnectionWithCacheControl("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): QueryableFieldWithConnectionWithCacheControlConnection @cacheControl(maxAge: 200) - queryableFieldWithCollectionSegmentWithCacheControl(skip: Int take: Int): QueryableFieldWithCollectionSegmentWithCacheControlCollectionSegment @cacheControl(maxAge: 200) + queryableFieldWithCacheControlSharedMaxAge: [String!]! + @cacheControl(sharedMaxAge: 200) + queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! + @cacheControl(maxAge: 500, sharedMaxAge: 200) + queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! + @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) + queryableFieldWithConnectionWithCacheControl( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): QueryableFieldWithConnectionWithCacheControlConnection + @cacheControl(maxAge: 200) + queryableFieldWithCollectionSegmentWithCacheControl(skip: Int, take: Int): QueryableFieldWithCollectionSegmentWithCacheControlCollectionSegment + @cacheControl(maxAge: 200) nested: NestedType! nested2: NestedType2! pureField: String! @@ -129,4 +175,15 @@ enum CacheControlScope { } "The `@cacheControl` directive may be provided for individual fields or entire object, interface or union types to provide caching hints to the executor." -directive @cacheControl("The maximum amount of time this field's cached value is valid, in seconds." maxAge: Int "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." sharedMaxAge: Int "If `true`, the field inherits the `maxAge` of its parent field." inheritMaxAge: Boolean "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." scope: CacheControlScope "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." vary: [String]) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION +directive @cacheControl( + "The maximum amount of time this field's cached value is valid, in seconds." + maxAge: Int + "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." + sharedMaxAge: Int + "If `true`, the field inherits the `maxAge` of its parent field." + inheritMaxAge: Boolean + "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." + scope: CacheControlScope + "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." + vary: [String] +) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION diff --git a/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.QueryFields_ApplyDefaults.snap b/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.QueryFields_ApplyDefaults.snap index 009c2bc6502..24595917a3b 100644 --- a/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.QueryFields_ApplyDefaults.snap +++ b/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.QueryFields_ApplyDefaults.snap @@ -16,4 +16,15 @@ enum CacheControlScope { } "The `@cacheControl` directive may be provided for individual fields or entire object, interface or union types to provide caching hints to the executor." -directive @cacheControl("The maximum amount of time this field's cached value is valid, in seconds." maxAge: Int "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." sharedMaxAge: Int "If `true`, the field inherits the `maxAge` of its parent field." inheritMaxAge: Boolean "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." scope: CacheControlScope "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." vary: [String]) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION +directive @cacheControl( + "The maximum amount of time this field's cached value is valid, in seconds." + maxAge: Int + "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." + sharedMaxAge: Int + "If `true`, the field inherits the `maxAge` of its parent field." + inheritMaxAge: Boolean + "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." + scope: CacheControlScope + "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." + vary: [String] +) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION diff --git a/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.QueryFields_ApplyDefaults_DifferentDefaultMaxAge.snap b/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.QueryFields_ApplyDefaults_DifferentDefaultMaxAge.snap index 128460fc63c..e9c1623aea4 100644 --- a/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.QueryFields_ApplyDefaults_DifferentDefaultMaxAge.snap +++ b/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.QueryFields_ApplyDefaults_DifferentDefaultMaxAge.snap @@ -16,4 +16,15 @@ enum CacheControlScope { } "The `@cacheControl` directive may be provided for individual fields or entire object, interface or union types to provide caching hints to the executor." -directive @cacheControl("The maximum amount of time this field's cached value is valid, in seconds." maxAge: Int "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." sharedMaxAge: Int "If `true`, the field inherits the `maxAge` of its parent field." inheritMaxAge: Boolean "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." scope: CacheControlScope "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." vary: [String]) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION +directive @cacheControl( + "The maximum amount of time this field's cached value is valid, in seconds." + maxAge: Int + "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." + sharedMaxAge: Int + "If `true`, the field inherits the `maxAge` of its parent field." + inheritMaxAge: Boolean + "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." + scope: CacheControlScope + "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." + vary: [String] +) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION diff --git a/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.QueryFields_ApplyDefaults_DifferentDefaultScope.snap b/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.QueryFields_ApplyDefaults_DifferentDefaultScope.snap index fe8f191760e..3477b24874e 100644 --- a/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.QueryFields_ApplyDefaults_DifferentDefaultScope.snap +++ b/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.QueryFields_ApplyDefaults_DifferentDefaultScope.snap @@ -16,4 +16,15 @@ enum CacheControlScope { } "The `@cacheControl` directive may be provided for individual fields or entire object, interface or union types to provide caching hints to the executor." -directive @cacheControl("The maximum amount of time this field's cached value is valid, in seconds." maxAge: Int "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." sharedMaxAge: Int "If `true`, the field inherits the `maxAge` of its parent field." inheritMaxAge: Boolean "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." scope: CacheControlScope "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." vary: [String]) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION +directive @cacheControl( + "The maximum amount of time this field's cached value is valid, in seconds." + maxAge: Int + "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." + sharedMaxAge: Int + "If `true`, the field inherits the `maxAge` of its parent field." + inheritMaxAge: Boolean + "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." + scope: CacheControlScope + "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." + vary: [String] +) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION diff --git a/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.QueryFields_ApplyDefaults_False.snap b/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.QueryFields_ApplyDefaults_False.snap index 74da1db2e42..be3d63395ac 100644 --- a/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.QueryFields_ApplyDefaults_False.snap +++ b/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.QueryFields_ApplyDefaults_False.snap @@ -16,4 +16,15 @@ enum CacheControlScope { } "The `@cacheControl` directive may be provided for individual fields or entire object, interface or union types to provide caching hints to the executor." -directive @cacheControl("The maximum amount of time this field's cached value is valid, in seconds." maxAge: Int "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." sharedMaxAge: Int "If `true`, the field inherits the `maxAge` of its parent field." inheritMaxAge: Boolean "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." scope: CacheControlScope "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." vary: [String]) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION +directive @cacheControl( + "The maximum amount of time this field's cached value is valid, in seconds." + maxAge: Int + "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." + sharedMaxAge: Int + "If `true`, the field inherits the `maxAge` of its parent field." + inheritMaxAge: Boolean + "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." + scope: CacheControlScope + "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." + vary: [String] +) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION diff --git a/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.QueryFields_CacheControl_Disabled.snap b/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.QueryFields_CacheControl_Disabled.snap index 74da1db2e42..be3d63395ac 100644 --- a/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.QueryFields_CacheControl_Disabled.snap +++ b/src/HotChocolate/Caching/test/Caching.Tests/__snapshots__/CacheControlTypeInterceptorTests.QueryFields_CacheControl_Disabled.snap @@ -16,4 +16,15 @@ enum CacheControlScope { } "The `@cacheControl` directive may be provided for individual fields or entire object, interface or union types to provide caching hints to the executor." -directive @cacheControl("The maximum amount of time this field's cached value is valid, in seconds." maxAge: Int "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." sharedMaxAge: Int "If `true`, the field inherits the `maxAge` of its parent field." inheritMaxAge: Boolean "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." scope: CacheControlScope "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." vary: [String]) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION +directive @cacheControl( + "The maximum amount of time this field's cached value is valid, in seconds." + maxAge: Int + "The maximum amount of time this field's cached value is valid in shared caches like CDNs, in seconds." + sharedMaxAge: Int + "If `true`, the field inherits the `maxAge` of its parent field." + inheritMaxAge: Boolean + "If `PRIVATE`, the field's value is specific to a single user. The default value is `PUBLIC`, which means the field's value is not tied to a single user." + scope: CacheControlScope + "The Vary HTTP response header describes the parts of the request message aside from the method and URL that influenced the content of the response it occurs in. Most often, this is used to create a cache key when content negotiation is in use." + vary: [String] +) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION diff --git a/src/HotChocolate/Core/test/Authorization.Tests/__snapshots__/AnnotationBasedAuthorizationTests.Authorize_Node_Field_Schema.graphql b/src/HotChocolate/Core/test/Authorization.Tests/__snapshots__/AnnotationBasedAuthorizationTests.Authorize_Node_Field_Schema.graphql index 6d935f3f4bc..b22e890e010 100644 --- a/src/HotChocolate/Core/test/Authorization.Tests/__snapshots__/AnnotationBasedAuthorizationTests.Authorize_Node_Field_Schema.graphql +++ b/src/HotChocolate/Core/test/Authorization.Tests/__snapshots__/AnnotationBasedAuthorizationTests.Authorize_Node_Field_Schema.graphql @@ -19,22 +19,32 @@ type Order implements Node @authorize { id: ID! } -type Person implements Node @authorize(policy: "READ_PERSON", apply: AFTER_RESOLVER) { +type Person implements Node + @authorize(policy: "READ_PERSON", apply: AFTER_RESOLVER) { id: ID! name: String } -type Query @foo @authorize(policy: "QUERY", apply: VALIDATION) @authorize(policy: "QUERY2") { +type Query + @foo + @authorize(policy: "QUERY", apply: VALIDATION) + @authorize(policy: "QUERY2") { "Fetches an object given its ID." - node("ID of the object." id: ID!): Node @cost(weight: "10") @authorize(policy: "READ_NODE", apply: VALIDATION) + node("ID of the object." id: ID!): Node + @cost(weight: "10") + @authorize(policy: "READ_NODE", apply: VALIDATION) "Lookup nodes by a list of IDs." - nodes("The list of node IDs." ids: [ID!]!): [Node]! @cost(weight: "10") @authorize(policy: "READ_NODE", apply: VALIDATION) + nodes("The list of node IDs." ids: [ID!]!): [Node]! + @cost(weight: "10") + @authorize(policy: "READ_NODE", apply: VALIDATION) null: String @authorize(policy: "NULL", apply: AFTER_RESOLVER) person(id: ID!): Person person2(id: String!): Person @allowAnonymous cityOrStreet(street: Boolean!): ICityOrStreet - thisIsAuthorized: Boolean @authorize(policy: "READ_AUTH", apply: AFTER_RESOLVER) - thisIsAuthorizedOnValidation: Boolean @authorize(policy: "READ_AUTH", apply: VALIDATION) + thisIsAuthorized: Boolean + @authorize(policy: "READ_AUTH", apply: AFTER_RESOLVER) + thisIsAuthorizedOnValidation: Boolean + @authorize(policy: "READ_AUTH", apply: VALIDATION) test: ID! } @@ -58,9 +68,19 @@ enum ApplyPolicy { directive @allowAnonymous repeatable on FIELD_DEFINITION "The authorize directive." -directive @authorize("The name of the authorization policy that determines access to the annotated resource." policy: String "Roles that are allowed to access the annotated resource." roles: [String!] "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." apply: ApplyPolicy! = BEFORE_RESOLVER) repeatable on OBJECT | FIELD_DEFINITION +directive @authorize( + "The name of the authorization policy that determines access to the annotated resource." + policy: String + "Roles that are allowed to access the annotated resource." + roles: [String!] + "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." + apply: ApplyPolicy! = BEFORE_RESOLVER +) repeatable on OBJECT | FIELD_DEFINITION "The purpose of the `cost` directive is to define a `weight` for GraphQL types, fields, and arguments. Static analysis can use these weights when calculating the overall cost of a query or response." -directive @cost("The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." weight: String!) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @cost( + "The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." + weight: String! +) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION directive @foo on OBJECT diff --git a/src/HotChocolate/Core/test/Authorization.Tests/__snapshots__/SchemaFirstAuthorizationTests.Authorize_Apply_Can_Be_Omitted.graphql b/src/HotChocolate/Core/test/Authorization.Tests/__snapshots__/SchemaFirstAuthorizationTests.Authorize_Apply_Can_Be_Omitted.graphql index 564b70cb72f..5b59f5ae3fc 100644 --- a/src/HotChocolate/Core/test/Authorization.Tests/__snapshots__/SchemaFirstAuthorizationTests.Authorize_Apply_Can_Be_Omitted.graphql +++ b/src/HotChocolate/Core/test/Authorization.Tests/__snapshots__/SchemaFirstAuthorizationTests.Authorize_Apply_Can_Be_Omitted.graphql @@ -2,7 +2,8 @@ schema { query: Query } -type Query @authorize(roles: ["policy_tester_noupdate", "policy_tester_update_noread", "authorizationHandlerTester"]) { +type Query + @authorize(roles: ["policy_tester_noupdate", "policy_tester_update_noread", "authorizationHandlerTester"]) { hello: String @authorize(roles: ["admin"]) @cost(weight: "10") } @@ -17,7 +18,17 @@ enum ApplyPolicy { } "The authorize directive." -directive @authorize("The name of the authorization policy that determines access to the annotated resource." policy: String "Roles that are allowed to access the annotated resource." roles: [String!] "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." apply: ApplyPolicy! = BEFORE_RESOLVER) repeatable on OBJECT | FIELD_DEFINITION +directive @authorize( + "The name of the authorization policy that determines access to the annotated resource." + policy: String + "Roles that are allowed to access the annotated resource." + roles: [String!] + "Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed." + apply: ApplyPolicy! = BEFORE_RESOLVER +) repeatable on OBJECT | FIELD_DEFINITION "The purpose of the `cost` directive is to define a `weight` for GraphQL types, fields, and arguments. Static analysis can use these weights when calculating the overall cost of a query or response." -directive @cost("The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." weight: String!) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @cost( + "The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." + weight: String! +) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION diff --git a/src/HotChocolate/Core/test/Execution.Tests/Integration/StarWarsCodeFirst/__snapshots__/StarWarsCodeFirstTests.Schema.snap b/src/HotChocolate/Core/test/Execution.Tests/Integration/StarWarsCodeFirst/__snapshots__/StarWarsCodeFirstTests.Schema.snap index 724f01e9b20..414234c23f4 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Integration/StarWarsCodeFirst/__snapshots__/StarWarsCodeFirstTests.Schema.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Integration/StarWarsCodeFirst/__snapshots__/StarWarsCodeFirstTests.Schema.snap @@ -7,7 +7,16 @@ schema { interface Character { id: ID! name: String! - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection appearsIn: [Episode] traits: Any height(unit: Unit): Float @@ -17,7 +26,16 @@ type Droid implements Character { id: ID! name: String! appearsIn: [Episode] - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection height(unit: Unit): Float primaryFunction: String traits: Any @@ -45,7 +63,16 @@ type Human implements Character { id: ID! name: String! appearsIn: [Episode] - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection otherHuman: Human height(unit: Unit): Float homePlanet: String @@ -53,7 +80,7 @@ type Human implements Character { } type Mutation { - createReview(episode: Episode! review: ReviewInput!): Review! + createReview(episode: Episode!, review: ReviewInput!): Review! complete(episode: Episode!): Boolean! } @@ -113,7 +140,10 @@ enum Unit { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `Any` scalar type represents any valid GraphQL value." scalar Any @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") diff --git a/src/HotChocolate/Core/test/Execution.Tests/Integration/StarWarsCodeFirst/__snapshots__/StarWarsCodeFirstTests.SubscribeToReview_With_Variables.snap b/src/HotChocolate/Core/test/Execution.Tests/Integration/StarWarsCodeFirst/__snapshots__/StarWarsCodeFirstTests.SubscribeToReview_With_Variables.snap index 793ca36f53e..3511cb4ae34 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Integration/StarWarsCodeFirst/__snapshots__/StarWarsCodeFirstTests.SubscribeToReview_With_Variables.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Integration/StarWarsCodeFirst/__snapshots__/StarWarsCodeFirstTests.SubscribeToReview_With_Variables.snap @@ -1,4 +1,4 @@ -{ +{ "data": { "onReview": { "stars": 5 diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.CompositeType_SelectionsSet_Empty.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.CompositeType_SelectionsSet_Empty.snap index c3983f25921..a8098278bad 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.CompositeType_SelectionsSet_Empty.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.CompositeType_SelectionsSet_Empty.snap @@ -1,23 +1,19 @@ -query foo( - $v: Boolean -) { +query foo($v: Boolean) { hero(episode: EMPIRE) { - + } } --------------------------------------------------------- -query foo( - $v: Boolean -) { +query foo($v: Boolean) { ... on Query { hero(episode: EMPIRE) @__execute(id: 2, kind: PURE, type: COMPOSITE) { ... on Human { - + } ... on Droid { - + } } } diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Crypto_Conditional_Fragment_Has_Additional_Field.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Crypto_Conditional_Fragment_Has_Additional_Field.snap index 158a6cc20be..54629201b28 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Crypto_Conditional_Fragment_Has_Additional_Field.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Crypto_Conditional_Fragment_Has_Additional_Field.snap @@ -18,7 +18,8 @@ fragment PriceInfo on Asset { query Crypto { ... on Query { - assetBySymbol(symbol: "BTC") @__execute(id: 2, kind: DEFAULT, type: COMPOSITE) { + assetBySymbol(symbol: "BTC") + @__execute(id: 2, kind: DEFAULT, type: COMPOSITE) { ... on Asset { price @__execute(id: 4, kind: DEFAULT, type: COMPOSITE) { ... on AssetPrice { diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Crypto_Details_Test.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Crypto_Details_Test.snap index 7ab686d7df3..1bb13e75f48 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Crypto_Details_Test.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Crypto_Details_Test.snap @@ -1,6 +1,4 @@ -query ViewerContainerQuery( - $symbol: String! -) { +query ViewerContainerQuery($symbol: String!) { assetBySymbol(symbol: $symbol) { ... ViewerHeaderFragment_asset ... ViewerSnapshotFragment_asset @@ -70,11 +68,10 @@ fragment ViewerStatsFragment_asset on Asset { --------------------------------------------------------- -query ViewerContainerQuery( - $symbol: String! -) { +query ViewerContainerQuery($symbol: String!) { ... on Query { - assetBySymbol(symbol: $symbol) @__execute(id: 2, kind: DEFAULT, type: COMPOSITE) { + assetBySymbol(symbol: $symbol) + @__execute(id: 2, kind: DEFAULT, type: COMPOSITE) { ... on Asset { id @__execute(id: 4, kind: DEFAULT, type: LEAF) symbol @__execute(id: 5, kind: DEFAULT, type: LEAF) @@ -92,7 +89,8 @@ query ViewerContainerQuery( percentageChange @__execute(id: 28, kind: DEFAULT, type: LEAF) history @__execute(id: 29, kind: DEFAULT, type: COMPOSITE) { ... on HistoryConnection { - nodes @__execute(id: 32, kind: DEFAULT, type: COMPOSITE_LIST) { + nodes + @__execute(id: 32, kind: DEFAULT, type: COMPOSITE_LIST) { ... on AssetPriceHistory { epoch @__execute(id: 34, kind: DEFAULT, type: LEAF) price @__execute(id: 35, kind: DEFAULT, type: LEAF) @@ -106,7 +104,8 @@ query ViewerContainerQuery( id @__execute(id: 19, kind: DEFAULT, type: LEAF) marketCap @__execute(id: 20, kind: DEFAULT, type: LEAF) volume24Hour @__execute(id: 21, kind: DEFAULT, type: LEAF) - volumePercentChange24Hour @__execute(id: 22, kind: DEFAULT, type: LEAF) + volumePercentChange24Hour + @__execute(id: 22, kind: DEFAULT, type: LEAF) maxSupply @__execute(id: 23, kind: DEFAULT, type: LEAF) circulatingSupply @__execute(id: 24, kind: DEFAULT, type: LEAF) tradingActivity @__execute(id: 25, kind: DEFAULT, type: LEAF) diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Crypto_Fragment_Removes_Conditional_State_For_Price.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Crypto_Fragment_Removes_Conditional_State_For_Price.snap index 40cfa2ae8eb..ca4e22d070d 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Crypto_Fragment_Removes_Conditional_State_For_Price.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Crypto_Fragment_Removes_Conditional_State_For_Price.snap @@ -17,7 +17,8 @@ fragment PriceInfo on Asset { query Crypto { ... on Query { - assetBySymbol(symbol: "BTC") @__execute(id: 2, kind: DEFAULT, type: COMPOSITE) { + assetBySymbol(symbol: "BTC") + @__execute(id: 2, kind: DEFAULT, type: COMPOSITE) { ... on Asset { price @__execute(id: 4, kind: DEFAULT, type: COMPOSITE) { ... on AssetPrice { diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Crypto_Include.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Crypto_Include.snap index da2b90d8031..1c71d299bad 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Crypto_Include.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Crypto_Include.snap @@ -17,7 +17,8 @@ fragment PriceInfo on Asset { query Crypto { ... on Query { - assetBySymbol(symbol: "BTC") @__execute(id: 2, kind: DEFAULT, type: COMPOSITE) { + assetBySymbol(symbol: "BTC") + @__execute(id: 2, kind: DEFAULT, type: COMPOSITE) { ... on Asset { price @__execute(id: 4, kind: DEFAULT, type: COMPOSITE) { ... on AssetPrice { diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Crypto_List_Test.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Crypto_List_Test.snap index a09736d47b6..0e4dbea2487 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Crypto_List_Test.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Crypto_List_Test.snap @@ -1,7 +1,8 @@ query DashboardContainerQuery { ... DashboardTickerFragment_query ... DashboardFeaturedFragment_query - ... DashboardSpotlightFragment_query @defer(label: "DashboardContainerQuery$defer$spotlight") + ... DashboardSpotlightFragment_query + @defer(label: "DashboardContainerQuery$defer$spotlight") } fragment DashboardFeaturedCardFragment_asset on Asset { @@ -46,8 +47,13 @@ fragment DashboardSpotlightFragment_query on Query { } fragment DashboardSpotlightGainersFragment_query on Query { - gainers: assets(first: 5, where: { price: { change24Hour: { gt: 0 } } }, order: { price: { change24Hour: DESC } }) { - ... DashboardSpotlightCardFragment_asset @defer(label: "DashboardSpotlightGainersFragment_query$defer$gainers") + gainers: assets( + first: 5 + where: { price: { change24Hour: { gt: 0 } } } + order: { price: { change24Hour: DESC } } + ) { + ... DashboardSpotlightCardFragment_asset + @defer(label: "DashboardSpotlightGainersFragment_query$defer$gainers") } } @@ -66,8 +72,13 @@ fragment DashboardSpotlightItemFragment_asset on Asset { } fragment DashboardSpotlightLosersFragment_query on Query { - losers: assets(first: 5, where: { price: { change24Hour: { lt: 0 } } }, order: { price: { change24Hour: ASC } }) { - ... DashboardSpotlightCardFragment_asset @defer(label: "DashboardSpotlightLosersFragment_query$defer$losers") + losers: assets( + first: 5 + where: { price: { change24Hour: { lt: 0 } } } + order: { price: { change24Hour: ASC } } + ) { + ... DashboardSpotlightCardFragment_asset + @defer(label: "DashboardSpotlightLosersFragment_query$defer$losers") } } @@ -96,7 +107,8 @@ fragment DashboardTickerItemFragment_asset on Asset { query DashboardContainerQuery { ... on Query { - ticker: assets(first: 10, order: { price: { tradableMarketCapRank: ASC } }) @__execute(id: 2, kind: DEFAULT, type: COMPOSITE) { + ticker: assets(first: 10, order: { price: { tradableMarketCapRank: ASC } }) + @__execute(id: 2, kind: DEFAULT, type: COMPOSITE) { ... on AssetsConnection { nodes @__execute(id: 7, kind: DEFAULT, type: COMPOSITE_LIST) { ... on Asset { @@ -115,7 +127,8 @@ query DashboardContainerQuery { } } } - featured: assets(where: { symbol: { in: ["BTC", "ADA", "ALGO"] } }) @__execute(id: 3, kind: DEFAULT, type: COMPOSITE) { + featured: assets(where: { symbol: { in: ["BTC", "ADA", "ALGO"] } }) + @__execute(id: 3, kind: DEFAULT, type: COMPOSITE) { ... on AssetsConnection { nodes @__execute(id: 19, kind: DEFAULT, type: COMPOSITE_LIST) { ... on Asset { @@ -127,11 +140,13 @@ query DashboardContainerQuery { currency @__execute(id: 26, kind: DEFAULT, type: LEAF) lastPrice @__execute(id: 27, kind: DEFAULT, type: LEAF) change24Hour @__execute(id: 28, kind: DEFAULT, type: LEAF) - change(span: DAY) @__execute(id: 29, kind: DEFAULT, type: COMPOSITE) { + change(span: DAY) + @__execute(id: 29, kind: DEFAULT, type: COMPOSITE) { ... on AssetPriceChange { history @__execute(id: 32, kind: DEFAULT, type: COMPOSITE) { ... on HistoryConnection { - nodes @__execute(id: 35, kind: DEFAULT, type: COMPOSITE_LIST) { + nodes + @__execute(id: 35, kind: DEFAULT, type: COMPOSITE_LIST) { ... on AssetPriceHistory { epoch @__execute(id: 37, kind: DEFAULT, type: LEAF) price @__execute(id: 38, kind: DEFAULT, type: LEAF) @@ -149,42 +164,68 @@ query DashboardContainerQuery { } } } - gainers: assets(first: 5, where: { price: { change24Hour: { gt: 0 } } }, order: { price: { change24Hour: DESC } }) @__execute(id: 4, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + gainers: assets( + first: 5 + where: { price: { change24Hour: { gt: 0 } } } + order: { price: { change24Hour: DESC } } + ) @__execute(id: 4, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on AssetsConnection { - nodes @__execute(id: 40, kind: DEFAULT, type: COMPOSITE_LIST, isDeferred: true) { + nodes + @__execute(id: 40, kind: DEFAULT, type: COMPOSITE_LIST, isDeferred: true) { ... on Asset { id @__execute(id: 42, kind: DEFAULT, type: LEAF, isDeferred: true) - symbol @__execute(id: 43, kind: DEFAULT, type: LEAF, isDeferred: true) + symbol + @__execute(id: 43, kind: DEFAULT, type: LEAF, isDeferred: true) name @__execute(id: 44, kind: DEFAULT, type: LEAF, isDeferred: true) - imageUrl @__execute(id: 45, kind: DEFAULT, type: LEAF, isDeferred: true) - isInWatchlist @__execute(id: 46, kind: DEFAULT, type: LEAF, isDeferred: true) - price @__execute(id: 47, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + imageUrl + @__execute(id: 45, kind: DEFAULT, type: LEAF, isDeferred: true) + isInWatchlist + @__execute(id: 46, kind: DEFAULT, type: LEAF, isDeferred: true) + price + @__execute(id: 47, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on AssetPrice { - currency @__execute(id: 49, kind: DEFAULT, type: LEAF, isDeferred: true) - lastPrice @__execute(id: 50, kind: DEFAULT, type: LEAF, isDeferred: true) - change24Hour @__execute(id: 51, kind: DEFAULT, type: LEAF, isDeferred: true) - id @__execute(id: 52, kind: DEFAULT, type: LEAF, isDeferred: true) + currency + @__execute(id: 49, kind: DEFAULT, type: LEAF, isDeferred: true) + lastPrice + @__execute(id: 50, kind: DEFAULT, type: LEAF, isDeferred: true) + change24Hour + @__execute(id: 51, kind: DEFAULT, type: LEAF, isDeferred: true) + id + @__execute(id: 52, kind: DEFAULT, type: LEAF, isDeferred: true) } } } } } } - losers: assets(first: 5, where: { price: { change24Hour: { lt: 0 } } }, order: { price: { change24Hour: ASC } }) @__execute(id: 5, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + losers: assets( + first: 5 + where: { price: { change24Hour: { lt: 0 } } } + order: { price: { change24Hour: ASC } } + ) @__execute(id: 5, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on AssetsConnection { - nodes @__execute(id: 54, kind: DEFAULT, type: COMPOSITE_LIST, isDeferred: true) { + nodes + @__execute(id: 54, kind: DEFAULT, type: COMPOSITE_LIST, isDeferred: true) { ... on Asset { id @__execute(id: 56, kind: DEFAULT, type: LEAF, isDeferred: true) - symbol @__execute(id: 57, kind: DEFAULT, type: LEAF, isDeferred: true) + symbol + @__execute(id: 57, kind: DEFAULT, type: LEAF, isDeferred: true) name @__execute(id: 58, kind: DEFAULT, type: LEAF, isDeferred: true) - imageUrl @__execute(id: 59, kind: DEFAULT, type: LEAF, isDeferred: true) - isInWatchlist @__execute(id: 60, kind: DEFAULT, type: LEAF, isDeferred: true) - price @__execute(id: 61, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + imageUrl + @__execute(id: 59, kind: DEFAULT, type: LEAF, isDeferred: true) + isInWatchlist + @__execute(id: 60, kind: DEFAULT, type: LEAF, isDeferred: true) + price + @__execute(id: 61, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on AssetPrice { - currency @__execute(id: 63, kind: DEFAULT, type: LEAF, isDeferred: true) - lastPrice @__execute(id: 64, kind: DEFAULT, type: LEAF, isDeferred: true) - change24Hour @__execute(id: 65, kind: DEFAULT, type: LEAF, isDeferred: true) - id @__execute(id: 66, kind: DEFAULT, type: LEAF, isDeferred: true) + currency + @__execute(id: 63, kind: DEFAULT, type: LEAF, isDeferred: true) + lastPrice + @__execute(id: 64, kind: DEFAULT, type: LEAF, isDeferred: true) + change24Hour + @__execute(id: 65, kind: DEFAULT, type: LEAF, isDeferred: true) + id + @__execute(id: 66, kind: DEFAULT, type: LEAF, isDeferred: true) } } } diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Different_Branches_Non_Overlapping_Levels.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Different_Branches_Non_Overlapping_Levels.snap index f739813dc34..0f50d9edbb4 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Different_Branches_Non_Overlapping_Levels.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Different_Branches_Non_Overlapping_Levels.snap @@ -38,9 +38,11 @@ d @__execute(id: 10, kind: DEFAULT, type: LEAF) } } - e @__execute(id: 8, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + e + @__execute(id: 8, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on E { - f @__execute(id: 12, kind: DEFAULT, type: LEAF, isDeferred: true) + f + @__execute(id: 12, kind: DEFAULT, type: LEAF, isDeferred: true) } } } diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Multiple_Levels_Field_Deduplication.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Multiple_Levels_Field_Deduplication.snap index 639b466ae65..bb867ea1ea7 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Multiple_Levels_Field_Deduplication.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Multiple_Levels_Field_Deduplication.snap @@ -40,9 +40,12 @@ deeperObject @__execute(id: 6, kind: DEFAULT, type: COMPOSITE) { ... on DeeperObject { foo @__execute(id: 8, kind: DEFAULT, type: LEAF) - bar @__execute(id: 9, kind: DEFAULT, type: LEAF, isDeferred: true) - baz @__execute(id: 10, kind: DEFAULT, type: LEAF, isDeferred: true) - bak @__execute(id: 11, kind: DEFAULT, type: LEAF, isDeferred: true) + bar + @__execute(id: 9, kind: DEFAULT, type: LEAF, isDeferred: true) + baz + @__execute(id: 10, kind: DEFAULT, type: LEAF, isDeferred: true) + bak + @__execute(id: 11, kind: DEFAULT, type: LEAF, isDeferred: true) } } } diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Nested_With_Parent_Field_Deduplication.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Nested_With_Parent_Field_Deduplication.snap index 694472fbc5d..00a7518ba55 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Nested_With_Parent_Field_Deduplication.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Nested_With_Parent_Field_Deduplication.snap @@ -20,12 +20,16 @@ ... on Query { hero @__execute(id: 2, kind: DEFAULT, type: COMPOSITE) { ... on Hero { - nestedObject @__execute(id: 4, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + nestedObject + @__execute(id: 4, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on NestedObject { - deeperObject @__execute(id: 6, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + deeperObject + @__execute(id: 6, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on DeeperObject { - foo @__execute(id: 8, kind: DEFAULT, type: LEAF, isDeferred: true) - bar @__execute(id: 9, kind: DEFAULT, type: LEAF, isDeferred: true) + foo + @__execute(id: 8, kind: DEFAULT, type: LEAF, isDeferred: true) + bar + @__execute(id: 9, kind: DEFAULT, type: LEAF, isDeferred: true) } } } diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Three_Fragments_Overlapping_Paths.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Three_Fragments_Overlapping_Paths.snap index 39c9bc62b65..7c0d84d64f5 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Three_Fragments_Overlapping_Paths.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Three_Fragments_Overlapping_Paths.snap @@ -90,37 +90,51 @@ fragment FragmentC on Stage { ... on Query { stage @__execute(id: 2, kind: DEFAULT, type: COMPOSITE) { ... on Stage { - metrics @__execute(id: 4, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + metrics + @__execute(id: 4, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on Metrics { - operations @__execute(id: 9, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + operations + @__execute(id: 9, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on OperationMetrics { - summary @__execute(id: 13, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + summary + @__execute(id: 13, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on OperationSummary { - latency @__execute(id: 15, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + latency + @__execute(id: 15, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on Latency { - mean @__execute(id: 18, kind: DEFAULT, type: LEAF, isDeferred: true) + mean + @__execute(id: 18, kind: DEFAULT, type: LEAF, isDeferred: true) } } - throughput @__execute(id: 16, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + throughput + @__execute(id: 16, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on Throughput { - opm @__execute(id: 20, kind: DEFAULT, type: LEAF, isDeferred: true) - errorRate @__execute(id: 21, kind: DEFAULT, type: LEAF, isDeferred: true) + opm + @__execute(id: 20, kind: DEFAULT, type: LEAF, isDeferred: true) + errorRate + @__execute(id: 21, kind: DEFAULT, type: LEAF, isDeferred: true) } } } } } } - clients @__execute(id: 10, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + clients + @__execute(id: 10, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on ClientMetrics { - insights @__execute(id: 23, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + insights + @__execute(id: 23, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on ClientInsightsConnection { - edges @__execute(id: 25, kind: DEFAULT, type: COMPOSITE_LIST, isDeferred: true) { + edges + @__execute(id: 25, kind: DEFAULT, type: COMPOSITE_LIST, isDeferred: true) { ... on ClientInsightsEdge { - node @__execute(id: 27, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + node + @__execute(id: 27, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on ClientInsight { - id @__execute(id: 29, kind: DEFAULT, type: LEAF, isDeferred: true) - name @__execute(id: 30, kind: DEFAULT, type: LEAF, isDeferred: true) + id + @__execute(id: 29, kind: DEFAULT, type: LEAF, isDeferred: true) + name + @__execute(id: 30, kind: DEFAULT, type: LEAF, isDeferred: true) } } } @@ -129,47 +143,67 @@ fragment FragmentC on Stage { } } } - subgraphs @__execute(id: 11, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + subgraphs + @__execute(id: 11, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on SubgraphMetrics { - insights @__execute(id: 32, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + insights + @__execute(id: 32, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on SubgraphInsightsConnection { - edges @__execute(id: 34, kind: DEFAULT, type: COMPOSITE_LIST, isDeferred: true) { + edges + @__execute(id: 34, kind: DEFAULT, type: COMPOSITE_LIST, isDeferred: true) { ... on SubgraphInsightsEdge { - node @__execute(id: 37, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + node + @__execute(id: 37, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on SubgraphInsight { - id @__execute(id: 40, kind: DEFAULT, type: LEAF, isDeferred: true) - name @__execute(id: 41, kind: DEFAULT, type: LEAF, isDeferred: true) - impact @__execute(id: 42, kind: DEFAULT, type: LEAF, isDeferred: true) - latency @__execute(id: 43, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + id + @__execute(id: 40, kind: DEFAULT, type: LEAF, isDeferred: true) + name + @__execute(id: 41, kind: DEFAULT, type: LEAF, isDeferred: true) + impact + @__execute(id: 42, kind: DEFAULT, type: LEAF, isDeferred: true) + latency + @__execute(id: 43, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on LatencyDataset { - dataset @__execute(id: 46, kind: DEFAULT, type: COMPOSITE_LIST, isDeferred: true) { + dataset + @__execute(id: 46, kind: DEFAULT, type: COMPOSITE_LIST, isDeferred: true) { ... on LatencyDataPoint { - epoch @__execute(id: 48, kind: DEFAULT, type: LEAF, isDeferred: true) - mean @__execute(id: 49, kind: DEFAULT, type: LEAF, isDeferred: true) + epoch + @__execute(id: 48, kind: DEFAULT, type: LEAF, isDeferred: true) + mean + @__execute(id: 49, kind: DEFAULT, type: LEAF, isDeferred: true) } } } } - throughput @__execute(id: 44, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + throughput + @__execute(id: 44, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on ThroughputDataset { - dataset @__execute(id: 51, kind: DEFAULT, type: COMPOSITE_LIST, isDeferred: true) { + dataset + @__execute(id: 51, kind: DEFAULT, type: COMPOSITE_LIST, isDeferred: true) { ... on ThroughputDataPoint { - epoch @__execute(id: 53, kind: DEFAULT, type: LEAF, isDeferred: true) - opm @__execute(id: 54, kind: DEFAULT, type: LEAF, isDeferred: true) - errorRate @__execute(id: 55, kind: DEFAULT, type: LEAF, isDeferred: true) + epoch + @__execute(id: 53, kind: DEFAULT, type: LEAF, isDeferred: true) + opm + @__execute(id: 54, kind: DEFAULT, type: LEAF, isDeferred: true) + errorRate + @__execute(id: 55, kind: DEFAULT, type: LEAF, isDeferred: true) } } } } } } - cursor @__execute(id: 38, kind: DEFAULT, type: LEAF, isDeferred: true) + cursor + @__execute(id: 38, kind: DEFAULT, type: LEAF, isDeferred: true) } } - pageInfo @__execute(id: 35, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + pageInfo + @__execute(id: 35, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on PageInfo { - endCursor @__execute(id: 57, kind: DEFAULT, type: LEAF, isDeferred: true) - hasNextPage @__execute(id: 58, kind: DEFAULT, type: LEAF, isDeferred: true) + endCursor + @__execute(id: 57, kind: DEFAULT, type: LEAF, isDeferred: true) + hasNextPage + @__execute(id: 58, kind: DEFAULT, type: LEAF, isDeferred: true) } } } @@ -178,10 +212,13 @@ fragment FragmentC on Stage { } } } - displayName @__execute(id: 5, kind: DEFAULT, type: LEAF, isDeferred: true) - essentials @__execute(id: 6, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + displayName + @__execute(id: 5, kind: DEFAULT, type: LEAF, isDeferred: true) + essentials + @__execute(id: 6, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on Essentials { - version @__execute(id: 60, kind: DEFAULT, type: LEAF, isDeferred: true) + version + @__execute(id: 60, kind: DEFAULT, type: LEAF, isDeferred: true) } } id @__execute(id: 7, kind: DEFAULT, type: LEAF) diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Field_Based_Optimizers.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Field_Based_Optimizers.snap index ed0a32a8f14..d1ed9959fd1 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Field_Based_Optimizers.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Field_Based_Optimizers.snap @@ -1,4 +1,4 @@ -{ +{ root { bar { text @@ -15,7 +15,8 @@ bar @__execute(id: 4, kind: PURE, type: COMPOSITE) { ... on Bar { text @__execute(id: 6, kind: PURE, type: LEAF) - baz @__execute(id: 7, kind: DEFAULT, type: COMPOSITE, internal: true) { + baz + @__execute(id: 7, kind: DEFAULT, type: COMPOSITE, internal: true) { ... on Baz { text @__execute(id: 9, kind: PURE, type: LEAF) } diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Field_Is_Visible_When_One_Selection_Is_Visible_1.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Field_Is_Visible_When_One_Selection_Is_Visible_1.snap index f8da36f8c86..d5571ce2fc1 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Field_Is_Visible_When_One_Selection_Is_Visible_1.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Field_Is_Visible_When_One_Selection_Is_Visible_1.snap @@ -1,6 +1,4 @@ -query foo( - $v: Boolean! -) { +query foo($v: Boolean!) { hero(episode: EMPIRE) { name ... abc @include(if: $v) @@ -13,9 +11,7 @@ fragment abc on Droid { --------------------------------------------------------- -query foo( - $v: Boolean! -) { +query foo($v: Boolean!) { ... on Query { hero(episode: EMPIRE) @__execute(id: 2, kind: PURE, type: COMPOSITE) { ... on Human { diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Field_Is_Visible_When_One_Selection_Is_Visible_2.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Field_Is_Visible_When_One_Selection_Is_Visible_2.snap index f0d62066035..b67c2b6636c 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Field_Is_Visible_When_One_Selection_Is_Visible_2.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Field_Is_Visible_When_One_Selection_Is_Visible_2.snap @@ -1,6 +1,4 @@ -query foo( - $v: Boolean! -) { +query foo($v: Boolean!) { hero(episode: EMPIRE) { name @include(if: $v) ... abc @@ -13,9 +11,7 @@ fragment abc on Droid { --------------------------------------------------------- -query foo( - $v: Boolean! -) { +query foo($v: Boolean!) { ... on Query { hero(episode: EMPIRE) @__execute(id: 2, kind: PURE, type: COMPOSITE) { ... on Human { diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Field_Is_Visible_When_One_Selection_Is_Visible_3.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Field_Is_Visible_When_One_Selection_Is_Visible_3.snap index be5b7e25238..cb385aef4a4 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Field_Is_Visible_When_One_Selection_Is_Visible_3.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Field_Is_Visible_When_One_Selection_Is_Visible_3.snap @@ -1,7 +1,4 @@ -query foo( - $v: Boolean! - $q: Boolean! -) { +query foo($v: Boolean!, $q: Boolean!) { hero(episode: EMPIRE) { name @include(if: $v) ... abc @include(if: $q) @@ -14,10 +11,7 @@ fragment abc on Droid { --------------------------------------------------------- -query foo( - $v: Boolean! - $q: Boolean! -) { +query foo($v: Boolean!, $q: Boolean!) { ... on Query { hero(episode: EMPIRE) @__execute(id: 2, kind: PURE, type: COMPOSITE) { ... on Human { diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Field_Is_Visible_When_One_Selection_Is_Visible_4.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Field_Is_Visible_When_One_Selection_Is_Visible_4.snap index 0283526ecce..81ce1a482f2 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Field_Is_Visible_When_One_Selection_Is_Visible_4.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Field_Is_Visible_When_One_Selection_Is_Visible_4.snap @@ -1,6 +1,4 @@ -query foo( - $v: Boolean! -) { +query foo($v: Boolean!) { hero(episode: EMPIRE) { name @include(if: $v) ... abc @@ -16,9 +14,7 @@ fragment abc on Droid { --------------------------------------------------------- -query foo( - $v: Boolean! -) { +query foo($v: Boolean!) { ... on Query { hero(episode: EMPIRE) @__execute(id: 2, kind: PURE, type: COMPOSITE) { ... on Human { diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.FragmentSpread_SelectionsSet_Empty.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.FragmentSpread_SelectionsSet_Empty.snap index cca31eee926..6d27f3f0ad7 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.FragmentSpread_SelectionsSet_Empty.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.FragmentSpread_SelectionsSet_Empty.snap @@ -1,6 +1,4 @@ -query foo( - $v: Boolean -) { +query foo($v: Boolean) { hero(episode: EMPIRE) { name @include(if: $v) ... abc @@ -8,14 +6,12 @@ query foo( } fragment abc on Droid { - + } --------------------------------------------------------- -query foo( - $v: Boolean -) { +query foo($v: Boolean) { ... on Query { hero(episode: EMPIRE) @__execute(id: 2, kind: PURE, type: COMPOSITE) { ... on Human { diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.InlineFragment_SelectionsSet_Empty.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.InlineFragment_SelectionsSet_Empty.snap index 5fd9b1f79af..18c4115c787 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.InlineFragment_SelectionsSet_Empty.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.InlineFragment_SelectionsSet_Empty.snap @@ -1,19 +1,15 @@ -query foo( - $v: Boolean -) { +query foo($v: Boolean) { hero(episode: EMPIRE) { name @include(if: $v) ... on Droid { - + } } } --------------------------------------------------------- -query foo( - $v: Boolean -) { +query foo($v: Boolean) { ... on Query { hero(episode: EMPIRE) @__execute(id: 2, kind: PURE, type: COMPOSITE) { ... on Human { diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Large_Query_Test.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Large_Query_Test.snap index 9f4c3556bbd..577fc4d637b 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Large_Query_Test.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Large_Query_Test.snap @@ -173,44 +173,60 @@ query getHero { ... on FriendsConnection { nodes @__execute(id: 19, kind: PURE, type: COMPOSITE_LIST) { ... on Human { - friends @__execute(id: 21, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 21, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 23, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 23, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 25, kind: PURE, type: LEAF) name @__execute(id: 26, kind: PURE, type: LEAF) - appearsIn @__execute(id: 27, kind: PURE, type: LEAF_LIST) - height @__execute(id: 28, kind: PURE, type: LEAF) - homePlanet @__execute(id: 29, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 27, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 28, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 29, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 31, kind: PURE, type: LEAF) name @__execute(id: 32, kind: PURE, type: LEAF) - appearsIn @__execute(id: 33, kind: PURE, type: LEAF_LIST) - height @__execute(id: 34, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 35, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 33, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 34, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 35, kind: PURE, type: LEAF) } } } } } ... on Droid { - friends @__execute(id: 37, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 37, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 39, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 39, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 41, kind: PURE, type: LEAF) name @__execute(id: 42, kind: PURE, type: LEAF) - appearsIn @__execute(id: 43, kind: PURE, type: LEAF_LIST) - height @__execute(id: 44, kind: PURE, type: LEAF) - homePlanet @__execute(id: 45, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 43, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 44, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 45, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 47, kind: PURE, type: LEAF) name @__execute(id: 48, kind: PURE, type: LEAF) - appearsIn @__execute(id: 49, kind: PURE, type: LEAF_LIST) - height @__execute(id: 50, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 51, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 49, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 50, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 51, kind: PURE, type: LEAF) } } } @@ -226,44 +242,60 @@ query getHero { ... on FriendsConnection { nodes @__execute(id: 56, kind: PURE, type: COMPOSITE_LIST) { ... on Human { - friends @__execute(id: 58, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 58, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 60, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 60, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 62, kind: PURE, type: LEAF) name @__execute(id: 63, kind: PURE, type: LEAF) - appearsIn @__execute(id: 64, kind: PURE, type: LEAF_LIST) - height @__execute(id: 65, kind: PURE, type: LEAF) - homePlanet @__execute(id: 66, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 64, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 65, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 66, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 68, kind: PURE, type: LEAF) name @__execute(id: 69, kind: PURE, type: LEAF) - appearsIn @__execute(id: 70, kind: PURE, type: LEAF_LIST) - height @__execute(id: 71, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 72, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 70, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 71, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 72, kind: PURE, type: LEAF) } } } } } ... on Droid { - friends @__execute(id: 74, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 74, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 76, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 76, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 78, kind: PURE, type: LEAF) name @__execute(id: 79, kind: PURE, type: LEAF) - appearsIn @__execute(id: 80, kind: PURE, type: LEAF_LIST) - height @__execute(id: 81, kind: PURE, type: LEAF) - homePlanet @__execute(id: 82, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 80, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 81, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 82, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 84, kind: PURE, type: LEAF) name @__execute(id: 85, kind: PURE, type: LEAF) - appearsIn @__execute(id: 86, kind: PURE, type: LEAF_LIST) - height @__execute(id: 87, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 88, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 86, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 87, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 88, kind: PURE, type: LEAF) } } } @@ -291,44 +323,60 @@ query getHero { ... on FriendsConnection { nodes @__execute(id: 101, kind: PURE, type: COMPOSITE_LIST) { ... on Human { - friends @__execute(id: 103, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 103, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 105, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 105, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 107, kind: PURE, type: LEAF) name @__execute(id: 108, kind: PURE, type: LEAF) - appearsIn @__execute(id: 109, kind: PURE, type: LEAF_LIST) - height @__execute(id: 110, kind: PURE, type: LEAF) - homePlanet @__execute(id: 111, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 109, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 110, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 111, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 113, kind: PURE, type: LEAF) name @__execute(id: 114, kind: PURE, type: LEAF) - appearsIn @__execute(id: 115, kind: PURE, type: LEAF_LIST) - height @__execute(id: 116, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 117, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 115, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 116, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 117, kind: PURE, type: LEAF) } } } } } ... on Droid { - friends @__execute(id: 119, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 119, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 121, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 121, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 123, kind: PURE, type: LEAF) name @__execute(id: 124, kind: PURE, type: LEAF) - appearsIn @__execute(id: 125, kind: PURE, type: LEAF_LIST) - height @__execute(id: 126, kind: PURE, type: LEAF) - homePlanet @__execute(id: 127, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 125, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 126, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 127, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 129, kind: PURE, type: LEAF) name @__execute(id: 130, kind: PURE, type: LEAF) - appearsIn @__execute(id: 131, kind: PURE, type: LEAF_LIST) - height @__execute(id: 132, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 133, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 131, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 132, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 133, kind: PURE, type: LEAF) } } } @@ -344,44 +392,60 @@ query getHero { ... on FriendsConnection { nodes @__execute(id: 138, kind: PURE, type: COMPOSITE_LIST) { ... on Human { - friends @__execute(id: 140, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 140, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 142, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 142, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 144, kind: PURE, type: LEAF) name @__execute(id: 145, kind: PURE, type: LEAF) - appearsIn @__execute(id: 146, kind: PURE, type: LEAF_LIST) - height @__execute(id: 147, kind: PURE, type: LEAF) - homePlanet @__execute(id: 148, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 146, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 147, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 148, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 150, kind: PURE, type: LEAF) name @__execute(id: 151, kind: PURE, type: LEAF) - appearsIn @__execute(id: 152, kind: PURE, type: LEAF_LIST) - height @__execute(id: 153, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 154, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 152, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 153, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 154, kind: PURE, type: LEAF) } } } } } ... on Droid { - friends @__execute(id: 156, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 156, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 158, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 158, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 160, kind: PURE, type: LEAF) name @__execute(id: 161, kind: PURE, type: LEAF) - appearsIn @__execute(id: 162, kind: PURE, type: LEAF_LIST) - height @__execute(id: 163, kind: PURE, type: LEAF) - homePlanet @__execute(id: 164, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 162, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 163, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 164, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 166, kind: PURE, type: LEAF) name @__execute(id: 167, kind: PURE, type: LEAF) - appearsIn @__execute(id: 168, kind: PURE, type: LEAF_LIST) - height @__execute(id: 169, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 170, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 168, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 169, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 170, kind: PURE, type: LEAF) } } } @@ -411,44 +475,60 @@ query getHero { ... on FriendsConnection { nodes @__execute(id: 183, kind: PURE, type: COMPOSITE_LIST) { ... on Human { - friends @__execute(id: 185, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 185, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 187, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 187, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 189, kind: PURE, type: LEAF) name @__execute(id: 190, kind: PURE, type: LEAF) - appearsIn @__execute(id: 191, kind: PURE, type: LEAF_LIST) - height @__execute(id: 192, kind: PURE, type: LEAF) - homePlanet @__execute(id: 193, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 191, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 192, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 193, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 195, kind: PURE, type: LEAF) name @__execute(id: 196, kind: PURE, type: LEAF) - appearsIn @__execute(id: 197, kind: PURE, type: LEAF_LIST) - height @__execute(id: 198, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 199, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 197, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 198, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 199, kind: PURE, type: LEAF) } } } } } ... on Droid { - friends @__execute(id: 201, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 201, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 203, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 203, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 205, kind: PURE, type: LEAF) name @__execute(id: 206, kind: PURE, type: LEAF) - appearsIn @__execute(id: 207, kind: PURE, type: LEAF_LIST) - height @__execute(id: 208, kind: PURE, type: LEAF) - homePlanet @__execute(id: 209, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 207, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 208, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 209, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 211, kind: PURE, type: LEAF) name @__execute(id: 212, kind: PURE, type: LEAF) - appearsIn @__execute(id: 213, kind: PURE, type: LEAF_LIST) - height @__execute(id: 214, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 215, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 213, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 214, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 215, kind: PURE, type: LEAF) } } } @@ -464,44 +544,60 @@ query getHero { ... on FriendsConnection { nodes @__execute(id: 220, kind: PURE, type: COMPOSITE_LIST) { ... on Human { - friends @__execute(id: 222, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 222, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 224, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 224, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 226, kind: PURE, type: LEAF) name @__execute(id: 227, kind: PURE, type: LEAF) - appearsIn @__execute(id: 228, kind: PURE, type: LEAF_LIST) - height @__execute(id: 229, kind: PURE, type: LEAF) - homePlanet @__execute(id: 230, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 228, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 229, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 230, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 232, kind: PURE, type: LEAF) name @__execute(id: 233, kind: PURE, type: LEAF) - appearsIn @__execute(id: 234, kind: PURE, type: LEAF_LIST) - height @__execute(id: 235, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 236, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 234, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 235, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 236, kind: PURE, type: LEAF) } } } } } ... on Droid { - friends @__execute(id: 238, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 238, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 240, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 240, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 242, kind: PURE, type: LEAF) name @__execute(id: 243, kind: PURE, type: LEAF) - appearsIn @__execute(id: 244, kind: PURE, type: LEAF_LIST) - height @__execute(id: 245, kind: PURE, type: LEAF) - homePlanet @__execute(id: 246, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 244, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 245, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 246, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 248, kind: PURE, type: LEAF) name @__execute(id: 249, kind: PURE, type: LEAF) - appearsIn @__execute(id: 250, kind: PURE, type: LEAF_LIST) - height @__execute(id: 251, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 252, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 250, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 251, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 252, kind: PURE, type: LEAF) } } } @@ -529,44 +625,60 @@ query getHero { ... on FriendsConnection { nodes @__execute(id: 265, kind: PURE, type: COMPOSITE_LIST) { ... on Human { - friends @__execute(id: 267, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 267, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 269, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 269, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 271, kind: PURE, type: LEAF) name @__execute(id: 272, kind: PURE, type: LEAF) - appearsIn @__execute(id: 273, kind: PURE, type: LEAF_LIST) - height @__execute(id: 274, kind: PURE, type: LEAF) - homePlanet @__execute(id: 275, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 273, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 274, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 275, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 277, kind: PURE, type: LEAF) name @__execute(id: 278, kind: PURE, type: LEAF) - appearsIn @__execute(id: 279, kind: PURE, type: LEAF_LIST) - height @__execute(id: 280, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 281, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 279, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 280, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 281, kind: PURE, type: LEAF) } } } } } ... on Droid { - friends @__execute(id: 283, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 283, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 285, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 285, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 287, kind: PURE, type: LEAF) name @__execute(id: 288, kind: PURE, type: LEAF) - appearsIn @__execute(id: 289, kind: PURE, type: LEAF_LIST) - height @__execute(id: 290, kind: PURE, type: LEAF) - homePlanet @__execute(id: 291, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 289, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 290, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 291, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 293, kind: PURE, type: LEAF) name @__execute(id: 294, kind: PURE, type: LEAF) - appearsIn @__execute(id: 295, kind: PURE, type: LEAF_LIST) - height @__execute(id: 296, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 297, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 295, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 296, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 297, kind: PURE, type: LEAF) } } } @@ -582,44 +694,60 @@ query getHero { ... on FriendsConnection { nodes @__execute(id: 302, kind: PURE, type: COMPOSITE_LIST) { ... on Human { - friends @__execute(id: 304, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 304, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 306, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 306, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 308, kind: PURE, type: LEAF) name @__execute(id: 309, kind: PURE, type: LEAF) - appearsIn @__execute(id: 310, kind: PURE, type: LEAF_LIST) - height @__execute(id: 311, kind: PURE, type: LEAF) - homePlanet @__execute(id: 312, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 310, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 311, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 312, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 314, kind: PURE, type: LEAF) name @__execute(id: 315, kind: PURE, type: LEAF) - appearsIn @__execute(id: 316, kind: PURE, type: LEAF_LIST) - height @__execute(id: 317, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 318, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 316, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 317, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 318, kind: PURE, type: LEAF) } } } } } ... on Droid { - friends @__execute(id: 320, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 320, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 322, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 322, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 324, kind: PURE, type: LEAF) name @__execute(id: 325, kind: PURE, type: LEAF) - appearsIn @__execute(id: 326, kind: PURE, type: LEAF_LIST) - height @__execute(id: 327, kind: PURE, type: LEAF) - homePlanet @__execute(id: 328, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 326, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 327, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 328, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 330, kind: PURE, type: LEAF) name @__execute(id: 331, kind: PURE, type: LEAF) - appearsIn @__execute(id: 332, kind: PURE, type: LEAF_LIST) - height @__execute(id: 333, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 334, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 332, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 333, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 334, kind: PURE, type: LEAF) } } } @@ -649,44 +777,60 @@ query getHero { ... on FriendsConnection { nodes @__execute(id: 347, kind: PURE, type: COMPOSITE_LIST) { ... on Human { - friends @__execute(id: 349, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 349, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 351, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 351, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 353, kind: PURE, type: LEAF) name @__execute(id: 354, kind: PURE, type: LEAF) - appearsIn @__execute(id: 355, kind: PURE, type: LEAF_LIST) - height @__execute(id: 356, kind: PURE, type: LEAF) - homePlanet @__execute(id: 357, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 355, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 356, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 357, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 359, kind: PURE, type: LEAF) name @__execute(id: 360, kind: PURE, type: LEAF) - appearsIn @__execute(id: 361, kind: PURE, type: LEAF_LIST) - height @__execute(id: 362, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 363, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 361, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 362, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 363, kind: PURE, type: LEAF) } } } } } ... on Droid { - friends @__execute(id: 365, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 365, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 367, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 367, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 369, kind: PURE, type: LEAF) name @__execute(id: 370, kind: PURE, type: LEAF) - appearsIn @__execute(id: 371, kind: PURE, type: LEAF_LIST) - height @__execute(id: 372, kind: PURE, type: LEAF) - homePlanet @__execute(id: 373, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 371, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 372, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 373, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 375, kind: PURE, type: LEAF) name @__execute(id: 376, kind: PURE, type: LEAF) - appearsIn @__execute(id: 377, kind: PURE, type: LEAF_LIST) - height @__execute(id: 378, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 379, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 377, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 378, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 379, kind: PURE, type: LEAF) } } } @@ -702,44 +846,60 @@ query getHero { ... on FriendsConnection { nodes @__execute(id: 384, kind: PURE, type: COMPOSITE_LIST) { ... on Human { - friends @__execute(id: 386, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 386, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 388, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 388, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 390, kind: PURE, type: LEAF) name @__execute(id: 391, kind: PURE, type: LEAF) - appearsIn @__execute(id: 392, kind: PURE, type: LEAF_LIST) - height @__execute(id: 393, kind: PURE, type: LEAF) - homePlanet @__execute(id: 394, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 392, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 393, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 394, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 396, kind: PURE, type: LEAF) name @__execute(id: 397, kind: PURE, type: LEAF) - appearsIn @__execute(id: 398, kind: PURE, type: LEAF_LIST) - height @__execute(id: 399, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 400, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 398, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 399, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 400, kind: PURE, type: LEAF) } } } } } ... on Droid { - friends @__execute(id: 402, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 402, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 404, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 404, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 406, kind: PURE, type: LEAF) name @__execute(id: 407, kind: PURE, type: LEAF) - appearsIn @__execute(id: 408, kind: PURE, type: LEAF_LIST) - height @__execute(id: 409, kind: PURE, type: LEAF) - homePlanet @__execute(id: 410, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 408, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 409, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 410, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 412, kind: PURE, type: LEAF) name @__execute(id: 413, kind: PURE, type: LEAF) - appearsIn @__execute(id: 414, kind: PURE, type: LEAF_LIST) - height @__execute(id: 415, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 416, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 414, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 415, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 416, kind: PURE, type: LEAF) } } } @@ -767,44 +927,60 @@ query getHero { ... on FriendsConnection { nodes @__execute(id: 429, kind: PURE, type: COMPOSITE_LIST) { ... on Human { - friends @__execute(id: 431, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 431, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 433, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 433, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 435, kind: PURE, type: LEAF) name @__execute(id: 436, kind: PURE, type: LEAF) - appearsIn @__execute(id: 437, kind: PURE, type: LEAF_LIST) - height @__execute(id: 438, kind: PURE, type: LEAF) - homePlanet @__execute(id: 439, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 437, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 438, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 439, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 441, kind: PURE, type: LEAF) name @__execute(id: 442, kind: PURE, type: LEAF) - appearsIn @__execute(id: 443, kind: PURE, type: LEAF_LIST) - height @__execute(id: 444, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 445, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 443, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 444, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 445, kind: PURE, type: LEAF) } } } } } ... on Droid { - friends @__execute(id: 447, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 447, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 449, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 449, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 451, kind: PURE, type: LEAF) name @__execute(id: 452, kind: PURE, type: LEAF) - appearsIn @__execute(id: 453, kind: PURE, type: LEAF_LIST) - height @__execute(id: 454, kind: PURE, type: LEAF) - homePlanet @__execute(id: 455, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 453, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 454, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 455, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 457, kind: PURE, type: LEAF) name @__execute(id: 458, kind: PURE, type: LEAF) - appearsIn @__execute(id: 459, kind: PURE, type: LEAF_LIST) - height @__execute(id: 460, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 461, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 459, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 460, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 461, kind: PURE, type: LEAF) } } } @@ -820,44 +996,60 @@ query getHero { ... on FriendsConnection { nodes @__execute(id: 466, kind: PURE, type: COMPOSITE_LIST) { ... on Human { - friends @__execute(id: 468, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 468, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 470, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 470, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 472, kind: PURE, type: LEAF) name @__execute(id: 473, kind: PURE, type: LEAF) - appearsIn @__execute(id: 474, kind: PURE, type: LEAF_LIST) - height @__execute(id: 475, kind: PURE, type: LEAF) - homePlanet @__execute(id: 476, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 474, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 475, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 476, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 478, kind: PURE, type: LEAF) name @__execute(id: 479, kind: PURE, type: LEAF) - appearsIn @__execute(id: 480, kind: PURE, type: LEAF_LIST) - height @__execute(id: 481, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 482, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 480, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 481, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 482, kind: PURE, type: LEAF) } } } } } ... on Droid { - friends @__execute(id: 484, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 484, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 486, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 486, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 488, kind: PURE, type: LEAF) name @__execute(id: 489, kind: PURE, type: LEAF) - appearsIn @__execute(id: 490, kind: PURE, type: LEAF_LIST) - height @__execute(id: 491, kind: PURE, type: LEAF) - homePlanet @__execute(id: 492, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 490, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 491, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 492, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 494, kind: PURE, type: LEAF) name @__execute(id: 495, kind: PURE, type: LEAF) - appearsIn @__execute(id: 496, kind: PURE, type: LEAF_LIST) - height @__execute(id: 497, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 498, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 496, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 497, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 498, kind: PURE, type: LEAF) } } } @@ -894,44 +1086,60 @@ query getHero { ... on FriendsConnection { nodes @__execute(id: 517, kind: PURE, type: COMPOSITE_LIST) { ... on Human { - friends @__execute(id: 519, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 519, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 521, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 521, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 523, kind: PURE, type: LEAF) name @__execute(id: 524, kind: PURE, type: LEAF) - appearsIn @__execute(id: 525, kind: PURE, type: LEAF_LIST) - height @__execute(id: 526, kind: PURE, type: LEAF) - homePlanet @__execute(id: 527, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 525, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 526, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 527, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 529, kind: PURE, type: LEAF) name @__execute(id: 530, kind: PURE, type: LEAF) - appearsIn @__execute(id: 531, kind: PURE, type: LEAF_LIST) - height @__execute(id: 532, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 533, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 531, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 532, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 533, kind: PURE, type: LEAF) } } } } } ... on Droid { - friends @__execute(id: 535, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 535, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 537, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 537, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 539, kind: PURE, type: LEAF) name @__execute(id: 540, kind: PURE, type: LEAF) - appearsIn @__execute(id: 541, kind: PURE, type: LEAF_LIST) - height @__execute(id: 542, kind: PURE, type: LEAF) - homePlanet @__execute(id: 543, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 541, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 542, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 543, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 545, kind: PURE, type: LEAF) name @__execute(id: 546, kind: PURE, type: LEAF) - appearsIn @__execute(id: 547, kind: PURE, type: LEAF_LIST) - height @__execute(id: 548, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 549, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 547, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 548, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 549, kind: PURE, type: LEAF) } } } @@ -947,44 +1155,60 @@ query getHero { ... on FriendsConnection { nodes @__execute(id: 554, kind: PURE, type: COMPOSITE_LIST) { ... on Human { - friends @__execute(id: 556, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 556, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 558, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 558, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 560, kind: PURE, type: LEAF) name @__execute(id: 561, kind: PURE, type: LEAF) - appearsIn @__execute(id: 562, kind: PURE, type: LEAF_LIST) - height @__execute(id: 563, kind: PURE, type: LEAF) - homePlanet @__execute(id: 564, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 562, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 563, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 564, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 566, kind: PURE, type: LEAF) name @__execute(id: 567, kind: PURE, type: LEAF) - appearsIn @__execute(id: 568, kind: PURE, type: LEAF_LIST) - height @__execute(id: 569, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 570, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 568, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 569, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 570, kind: PURE, type: LEAF) } } } } } ... on Droid { - friends @__execute(id: 572, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 572, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 574, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 574, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 576, kind: PURE, type: LEAF) name @__execute(id: 577, kind: PURE, type: LEAF) - appearsIn @__execute(id: 578, kind: PURE, type: LEAF_LIST) - height @__execute(id: 579, kind: PURE, type: LEAF) - homePlanet @__execute(id: 580, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 578, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 579, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 580, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 582, kind: PURE, type: LEAF) name @__execute(id: 583, kind: PURE, type: LEAF) - appearsIn @__execute(id: 584, kind: PURE, type: LEAF_LIST) - height @__execute(id: 585, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 586, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 584, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 585, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 586, kind: PURE, type: LEAF) } } } @@ -1013,44 +1237,60 @@ query getHero { ... on FriendsConnection { nodes @__execute(id: 600, kind: PURE, type: COMPOSITE_LIST) { ... on Human { - friends @__execute(id: 602, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 602, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 604, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 604, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 606, kind: PURE, type: LEAF) name @__execute(id: 607, kind: PURE, type: LEAF) - appearsIn @__execute(id: 608, kind: PURE, type: LEAF_LIST) - height @__execute(id: 609, kind: PURE, type: LEAF) - homePlanet @__execute(id: 610, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 608, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 609, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 610, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 612, kind: PURE, type: LEAF) name @__execute(id: 613, kind: PURE, type: LEAF) - appearsIn @__execute(id: 614, kind: PURE, type: LEAF_LIST) - height @__execute(id: 615, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 616, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 614, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 615, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 616, kind: PURE, type: LEAF) } } } } } ... on Droid { - friends @__execute(id: 618, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 618, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 620, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 620, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 622, kind: PURE, type: LEAF) name @__execute(id: 623, kind: PURE, type: LEAF) - appearsIn @__execute(id: 624, kind: PURE, type: LEAF_LIST) - height @__execute(id: 625, kind: PURE, type: LEAF) - homePlanet @__execute(id: 626, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 624, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 625, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 626, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 628, kind: PURE, type: LEAF) name @__execute(id: 629, kind: PURE, type: LEAF) - appearsIn @__execute(id: 630, kind: PURE, type: LEAF_LIST) - height @__execute(id: 631, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 632, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 630, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 631, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 632, kind: PURE, type: LEAF) } } } @@ -1066,44 +1306,60 @@ query getHero { ... on FriendsConnection { nodes @__execute(id: 637, kind: PURE, type: COMPOSITE_LIST) { ... on Human { - friends @__execute(id: 639, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 639, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 641, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 641, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 643, kind: PURE, type: LEAF) name @__execute(id: 644, kind: PURE, type: LEAF) - appearsIn @__execute(id: 645, kind: PURE, type: LEAF_LIST) - height @__execute(id: 646, kind: PURE, type: LEAF) - homePlanet @__execute(id: 647, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 645, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 646, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 647, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 649, kind: PURE, type: LEAF) name @__execute(id: 650, kind: PURE, type: LEAF) - appearsIn @__execute(id: 651, kind: PURE, type: LEAF_LIST) - height @__execute(id: 652, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 653, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 651, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 652, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 653, kind: PURE, type: LEAF) } } } } } ... on Droid { - friends @__execute(id: 655, kind: DEFAULT, type: COMPOSITE) { + friends + @__execute(id: 655, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @__execute(id: 657, kind: PURE, type: COMPOSITE_LIST) { + nodes + @__execute(id: 657, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @__execute(id: 659, kind: PURE, type: LEAF) name @__execute(id: 660, kind: PURE, type: LEAF) - appearsIn @__execute(id: 661, kind: PURE, type: LEAF_LIST) - height @__execute(id: 662, kind: PURE, type: LEAF) - homePlanet @__execute(id: 663, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 661, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 662, kind: PURE, type: LEAF) + homePlanet + @__execute(id: 663, kind: PURE, type: LEAF) } ... on Droid { id @__execute(id: 665, kind: PURE, type: LEAF) name @__execute(id: 666, kind: PURE, type: LEAF) - appearsIn @__execute(id: 667, kind: PURE, type: LEAF_LIST) - height @__execute(id: 668, kind: PURE, type: LEAF) - primaryFunction @__execute(id: 669, kind: PURE, type: LEAF) + appearsIn + @__execute(id: 667, kind: PURE, type: LEAF_LIST) + height + @__execute(id: 668, kind: PURE, type: LEAF) + primaryFunction + @__execute(id: 669, kind: PURE, type: LEAF) } } } @@ -1142,7 +1398,8 @@ query getHero { kind @__execute(id: 683, kind: PURE, type: LEAF) name @__execute(id: 684, kind: PURE, type: LEAF) description @__execute(id: 685, kind: PURE, type: LEAF) - fields(includeDeprecated: true) @__execute(id: 686, kind: PURE, type: COMPOSITE_LIST) { + fields(includeDeprecated: true) + @__execute(id: 686, kind: PURE, type: COMPOSITE_LIST) { ... on __Field { name @__execute(id: 692, kind: PURE, type: LEAF) description @__execute(id: 693, kind: PURE, type: LEAF) @@ -1158,14 +1415,18 @@ query getHero { ... on __Type { kind @__execute(id: 708, kind: PURE, type: LEAF) name @__execute(id: 709, kind: PURE, type: LEAF) - ofType @__execute(id: 710, kind: PURE, type: COMPOSITE) { + ofType + @__execute(id: 710, kind: PURE, type: COMPOSITE) { ... on __Type { kind @__execute(id: 712, kind: PURE, type: LEAF) name @__execute(id: 713, kind: PURE, type: LEAF) - ofType @__execute(id: 714, kind: PURE, type: COMPOSITE) { + ofType + @__execute(id: 714, kind: PURE, type: COMPOSITE) { ... on __Type { - kind @__execute(id: 716, kind: PURE, type: LEAF) - name @__execute(id: 717, kind: PURE, type: LEAF) + kind + @__execute(id: 716, kind: PURE, type: LEAF) + name + @__execute(id: 717, kind: PURE, type: LEAF) } } } @@ -1189,7 +1450,8 @@ query getHero { ... on __Type { kind @__execute(id: 727, kind: PURE, type: LEAF) name @__execute(id: 728, kind: PURE, type: LEAF) - ofType @__execute(id: 729, kind: PURE, type: COMPOSITE) { + ofType + @__execute(id: 729, kind: PURE, type: COMPOSITE) { ... on __Type { kind @__execute(id: 731, kind: PURE, type: LEAF) name @__execute(id: 732, kind: PURE, type: LEAF) @@ -1221,7 +1483,8 @@ query getHero { ... on __Type { kind @__execute(id: 747, kind: PURE, type: LEAF) name @__execute(id: 748, kind: PURE, type: LEAF) - ofType @__execute(id: 749, kind: PURE, type: COMPOSITE) { + ofType + @__execute(id: 749, kind: PURE, type: COMPOSITE) { ... on __Type { kind @__execute(id: 751, kind: PURE, type: LEAF) name @__execute(id: 752, kind: PURE, type: LEAF) @@ -1260,7 +1523,8 @@ query getHero { } } } - enumValues(includeDeprecated: true) @__execute(id: 689, kind: PURE, type: COMPOSITE_LIST) { + enumValues(includeDeprecated: true) + @__execute(id: 689, kind: PURE, type: COMPOSITE_LIST) { ... on __EnumValue { name @__execute(id: 769, kind: PURE, type: LEAF) description @__execute(id: 770, kind: PURE, type: LEAF) @@ -1314,7 +1578,8 @@ query getHero { ... on __Type { kind @__execute(id: 809, kind: PURE, type: LEAF) name @__execute(id: 810, kind: PURE, type: LEAF) - ofType @__execute(id: 811, kind: PURE, type: COMPOSITE) { + ofType + @__execute(id: 811, kind: PURE, type: COMPOSITE) { ... on __Type { kind @__execute(id: 813, kind: PURE, type: LEAF) name @__execute(id: 814, kind: PURE, type: LEAF) diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Nested_Fragments.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Nested_Fragments.snap index 1a390ab5dbc..0a63ab08e31 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Nested_Fragments.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Nested_Fragments.snap @@ -1,6 +1,4 @@ -query( - $if: Boolean! -) { +query($if: Boolean!) { human(id: "1000") { ... Human1 @include(if: $if) ... Human2 @skip(if: $if) @@ -48,63 +46,105 @@ fragment Human3 on Human { --------------------------------------------------------- -query( - $if: Boolean! -) { +query($if: Boolean!) { ... on Query { human(id: "1000") @__execute(id: 2, kind: PURE, type: COMPOSITE) { ... on Human { friends @conditional @__execute(id: 4, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - edges @conditional @__execute(id: 6, kind: PURE, type: COMPOSITE_LIST) { + edges + @conditional + @__execute(id: 6, kind: PURE, type: COMPOSITE_LIST) { ... on FriendsEdge { node @conditional @__execute(id: 8, kind: PURE, type: COMPOSITE) { ... on Human { - __typename @conditional @__execute(id: 10, kind: PURE, type: LEAF) - friends @conditional @__execute(id: 11, kind: DEFAULT, type: COMPOSITE) { + __typename + @conditional + @__execute(id: 10, kind: PURE, type: LEAF) + friends + @conditional + @__execute(id: 11, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @conditional @__execute(id: 15, kind: PURE, type: COMPOSITE_LIST) { + nodes + @conditional + @__execute(id: 15, kind: PURE, type: COMPOSITE_LIST) { ... on Human { - __typename @conditional @__execute(id: 17, kind: PURE, type: LEAF) - name @conditional @__execute(id: 18, kind: PURE, type: LEAF) - otherHuman @conditional @__execute(id: 19, kind: PURE, type: COMPOSITE) { + __typename + @conditional + @__execute(id: 17, kind: PURE, type: LEAF) + name + @conditional + @__execute(id: 18, kind: PURE, type: LEAF) + otherHuman + @conditional + @__execute(id: 19, kind: PURE, type: COMPOSITE) { ... on Human { - __typename @conditional @__execute(id: 21, kind: PURE, type: LEAF) - name @conditional @__execute(id: 22, kind: PURE, type: LEAF) + __typename + @conditional + @__execute(id: 21, kind: PURE, type: LEAF) + name + @conditional + @__execute(id: 22, kind: PURE, type: LEAF) } } } ... on Droid { - __typename @conditional @__execute(id: 24, kind: PURE, type: LEAF) + __typename + @conditional + @__execute(id: 24, kind: PURE, type: LEAF) } } } } name @conditional @__execute(id: 12, kind: PURE, type: LEAF) - otherHuman @conditional @__execute(id: 13, kind: PURE, type: COMPOSITE) { + otherHuman + @conditional + @__execute(id: 13, kind: PURE, type: COMPOSITE) { ... on Human { - __typename @conditional @__execute(id: 26, kind: PURE, type: LEAF) - name @conditional @__execute(id: 27, kind: PURE, type: LEAF) + __typename + @conditional + @__execute(id: 26, kind: PURE, type: LEAF) + name + @conditional + @__execute(id: 27, kind: PURE, type: LEAF) } } } ... on Droid { - __typename @conditional @__execute(id: 29, kind: PURE, type: LEAF) - friends @conditional @__execute(id: 30, kind: DEFAULT, type: COMPOSITE) { + __typename + @conditional + @__execute(id: 29, kind: PURE, type: LEAF) + friends + @conditional + @__execute(id: 30, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @conditional @__execute(id: 32, kind: PURE, type: COMPOSITE_LIST) { + nodes + @conditional + @__execute(id: 32, kind: PURE, type: COMPOSITE_LIST) { ... on Human { - __typename @conditional @__execute(id: 34, kind: PURE, type: LEAF) - name @conditional @__execute(id: 35, kind: PURE, type: LEAF) - otherHuman @conditional @__execute(id: 36, kind: PURE, type: COMPOSITE) { + __typename + @conditional + @__execute(id: 34, kind: PURE, type: LEAF) + name + @conditional + @__execute(id: 35, kind: PURE, type: LEAF) + otherHuman + @conditional + @__execute(id: 36, kind: PURE, type: COMPOSITE) { ... on Human { - __typename @conditional @__execute(id: 38, kind: PURE, type: LEAF) - name @conditional @__execute(id: 39, kind: PURE, type: LEAF) + __typename + @conditional + @__execute(id: 38, kind: PURE, type: LEAF) + name + @conditional + @__execute(id: 39, kind: PURE, type: LEAF) } } } ... on Droid { - __typename @conditional @__execute(id: 41, kind: PURE, type: LEAF) + __typename + @conditional + @__execute(id: 41, kind: PURE, type: LEAF) } } } diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Nested_Fragments_with_Conditions.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Nested_Fragments_with_Conditions.snap index 1a390ab5dbc..0a63ab08e31 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Nested_Fragments_with_Conditions.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Nested_Fragments_with_Conditions.snap @@ -1,6 +1,4 @@ -query( - $if: Boolean! -) { +query($if: Boolean!) { human(id: "1000") { ... Human1 @include(if: $if) ... Human2 @skip(if: $if) @@ -48,63 +46,105 @@ fragment Human3 on Human { --------------------------------------------------------- -query( - $if: Boolean! -) { +query($if: Boolean!) { ... on Query { human(id: "1000") @__execute(id: 2, kind: PURE, type: COMPOSITE) { ... on Human { friends @conditional @__execute(id: 4, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - edges @conditional @__execute(id: 6, kind: PURE, type: COMPOSITE_LIST) { + edges + @conditional + @__execute(id: 6, kind: PURE, type: COMPOSITE_LIST) { ... on FriendsEdge { node @conditional @__execute(id: 8, kind: PURE, type: COMPOSITE) { ... on Human { - __typename @conditional @__execute(id: 10, kind: PURE, type: LEAF) - friends @conditional @__execute(id: 11, kind: DEFAULT, type: COMPOSITE) { + __typename + @conditional + @__execute(id: 10, kind: PURE, type: LEAF) + friends + @conditional + @__execute(id: 11, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @conditional @__execute(id: 15, kind: PURE, type: COMPOSITE_LIST) { + nodes + @conditional + @__execute(id: 15, kind: PURE, type: COMPOSITE_LIST) { ... on Human { - __typename @conditional @__execute(id: 17, kind: PURE, type: LEAF) - name @conditional @__execute(id: 18, kind: PURE, type: LEAF) - otherHuman @conditional @__execute(id: 19, kind: PURE, type: COMPOSITE) { + __typename + @conditional + @__execute(id: 17, kind: PURE, type: LEAF) + name + @conditional + @__execute(id: 18, kind: PURE, type: LEAF) + otherHuman + @conditional + @__execute(id: 19, kind: PURE, type: COMPOSITE) { ... on Human { - __typename @conditional @__execute(id: 21, kind: PURE, type: LEAF) - name @conditional @__execute(id: 22, kind: PURE, type: LEAF) + __typename + @conditional + @__execute(id: 21, kind: PURE, type: LEAF) + name + @conditional + @__execute(id: 22, kind: PURE, type: LEAF) } } } ... on Droid { - __typename @conditional @__execute(id: 24, kind: PURE, type: LEAF) + __typename + @conditional + @__execute(id: 24, kind: PURE, type: LEAF) } } } } name @conditional @__execute(id: 12, kind: PURE, type: LEAF) - otherHuman @conditional @__execute(id: 13, kind: PURE, type: COMPOSITE) { + otherHuman + @conditional + @__execute(id: 13, kind: PURE, type: COMPOSITE) { ... on Human { - __typename @conditional @__execute(id: 26, kind: PURE, type: LEAF) - name @conditional @__execute(id: 27, kind: PURE, type: LEAF) + __typename + @conditional + @__execute(id: 26, kind: PURE, type: LEAF) + name + @conditional + @__execute(id: 27, kind: PURE, type: LEAF) } } } ... on Droid { - __typename @conditional @__execute(id: 29, kind: PURE, type: LEAF) - friends @conditional @__execute(id: 30, kind: DEFAULT, type: COMPOSITE) { + __typename + @conditional + @__execute(id: 29, kind: PURE, type: LEAF) + friends + @conditional + @__execute(id: 30, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @conditional @__execute(id: 32, kind: PURE, type: COMPOSITE_LIST) { + nodes + @conditional + @__execute(id: 32, kind: PURE, type: COMPOSITE_LIST) { ... on Human { - __typename @conditional @__execute(id: 34, kind: PURE, type: LEAF) - name @conditional @__execute(id: 35, kind: PURE, type: LEAF) - otherHuman @conditional @__execute(id: 36, kind: PURE, type: COMPOSITE) { + __typename + @conditional + @__execute(id: 34, kind: PURE, type: LEAF) + name + @conditional + @__execute(id: 35, kind: PURE, type: LEAF) + otherHuman + @conditional + @__execute(id: 36, kind: PURE, type: COMPOSITE) { ... on Human { - __typename @conditional @__execute(id: 38, kind: PURE, type: LEAF) - name @conditional @__execute(id: 39, kind: PURE, type: LEAF) + __typename + @conditional + @__execute(id: 38, kind: PURE, type: LEAF) + name + @conditional + @__execute(id: 39, kind: PURE, type: LEAF) } } } ... on Droid { - __typename @conditional @__execute(id: 41, kind: PURE, type: LEAF) + __typename + @conditional + @__execute(id: 41, kind: PURE, type: LEAF) } } } diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Object_Field_Visibility_Is_Correctly_Inherited.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Object_Field_Visibility_Is_Correctly_Inherited.snap index 113d4c54312..5313b0a46e5 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Object_Field_Visibility_Is_Correctly_Inherited.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Object_Field_Visibility_Is_Correctly_Inherited.snap @@ -1,6 +1,4 @@ -query foo( - $v: Boolean! -) { +query foo($v: Boolean!) { hero(episode: EMPIRE) @include(if: $v) { name } @@ -18,9 +16,7 @@ query foo( --------------------------------------------------------- -query foo( - $v: Boolean! -) { +query foo($v: Boolean!) { ... on Query { hero(episode: EMPIRE) @__execute(id: 2, kind: PURE, type: COMPOSITE) { ... on Human { diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Object_Field_Visibility_Is_Correctly_Inherited_2.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Object_Field_Visibility_Is_Correctly_Inherited_2.snap index 2c9b67917cf..72409823e1d 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Object_Field_Visibility_Is_Correctly_Inherited_2.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Object_Field_Visibility_Is_Correctly_Inherited_2.snap @@ -1,7 +1,4 @@ -query foo( - $v: Boolean! - $q: Boolean! -) { +query foo($v: Boolean!, $q: Boolean!) { hero(episode: EMPIRE) @include(if: $v) { name @include(if: $q) } @@ -19,10 +16,7 @@ query foo( --------------------------------------------------------- -query foo( - $v: Boolean! - $q: Boolean! -) { +query foo($v: Boolean!, $q: Boolean!) { ... on Query { hero(episode: EMPIRE) @__execute(id: 2, kind: PURE, type: COMPOSITE) { ... on Human { diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Object_Field_Visibility_Is_Correctly_Inherited_3.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Object_Field_Visibility_Is_Correctly_Inherited_3.snap index fb43aab341c..0a7f901b1a2 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Object_Field_Visibility_Is_Correctly_Inherited_3.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Object_Field_Visibility_Is_Correctly_Inherited_3.snap @@ -1,7 +1,4 @@ -query foo( - $v: Boolean! - $q: Boolean! -) { +query foo($v: Boolean!, $q: Boolean!) { hero(episode: EMPIRE) @include(if: $v) { name @include(if: $q) } @@ -9,12 +6,11 @@ query foo( --------------------------------------------------------- -query foo( - $v: Boolean! - $q: Boolean! -) { +query foo($v: Boolean!, $q: Boolean!) { ... on Query { - hero(episode: EMPIRE) @conditional @__execute(id: 2, kind: PURE, type: COMPOSITE) { + hero(episode: EMPIRE) + @conditional + @__execute(id: 2, kind: PURE, type: COMPOSITE) { ... on Human { name @conditional @__execute(id: 4, kind: PURE, type: LEAF) } diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Reuse_Selection.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Reuse_Selection.snap index c8c1d288fb5..4dcc5673225 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Reuse_Selection.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Reuse_Selection.snap @@ -1,7 +1,4 @@ -query Hero( - $episode: Episode - $withFriends: Boolean! -) { +query Hero($episode: Episode, $withFriends: Boolean!) { hero(episode: $episode) { name friends @include(if: $withFriends) { @@ -14,17 +11,16 @@ query Hero( --------------------------------------------------------- -query Hero( - $episode: Episode - $withFriends: Boolean! -) { +query Hero($episode: Episode, $withFriends: Boolean!) { ... on Query { hero(episode: $episode) @__execute(id: 2, kind: PURE, type: COMPOSITE) { ... on Human { name @__execute(id: 4, kind: PURE, type: LEAF) friends @conditional @__execute(id: 5, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @conditional @__execute(id: 7, kind: PURE, type: COMPOSITE_LIST) { + nodes + @conditional + @__execute(id: 7, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @conditional @__execute(id: 9, kind: PURE, type: LEAF) } @@ -39,7 +35,9 @@ query Hero( name @__execute(id: 13, kind: PURE, type: LEAF) friends @conditional @__execute(id: 14, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { - nodes @conditional @__execute(id: 16, kind: PURE, type: COMPOSITE_LIST) { + nodes + @conditional + @__execute(id: 16, kind: PURE, type: COMPOSITE_LIST) { ... on Human { id @conditional @__execute(id: 18, kind: PURE, type: LEAF) } diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Integration.Tests/__snapshots__/IntegrationTests.Schema_Snapshot.snap b/src/HotChocolate/Core/test/Types.Analyzers.Integration.Tests/__snapshots__/IntegrationTests.Schema_Snapshot.snap index de8976a5db4..f68e38f005b 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Integration.Tests/__snapshots__/IntegrationTests.Schema_Snapshot.snap +++ b/src/HotChocolate/Core/test/Types.Analyzers.Integration.Tests/__snapshots__/IntegrationTests.Schema_Snapshot.snap @@ -73,14 +73,35 @@ type ProductsEdge { type Query { """ Gets the product. - - + + **Returns:** The only product. """ product: Product! - ints("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): IntsConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) - products("Returns the elements in the list that come after the specified cursor." after: Version2 "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): ProductsConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) @cost(weight: "10") + ints( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): IntsConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + products( + "Returns the elements in the list that come after the specified cursor." + after: Version2 + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): ProductsConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @cost(weight: "10") argumentWithExplicitType(arg: Version2): String! nullableArgumentWithExplicitType(arg: Version2): String! nullableArrayArgumentRef(items: [String!]): String! @@ -102,10 +123,24 @@ type Television implements Product { } "The purpose of the `cost` directive is to define a `weight` for GraphQL types, fields, and arguments. Static analysis can use these weights when calculating the overall cost of a query or response." -directive @cost("The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." weight: String!) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @cost( + "The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." + weight: String! +) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION "The purpose of the `@listSize` directive is to either inform the static analysis about the size of returned lists (if that information is statically available), or to point the analysis to where to find that information." -directive @listSize("The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." assumedSize: Int "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." slicingArguments: [String!] "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." slicingArgumentDefaultValue: Int "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." sizedFields: [String!] "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." requireOneSlicingArgument: Boolean = true) on FIELD_DEFINITION +directive @listSize( + "The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." + assumedSize: Int + "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." + slicingArguments: [String!] + "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." + slicingArgumentDefaultValue: Int + "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." + sizedFields: [String!] + "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." + requireOneSlicingArgument: Boolean = true +) on FIELD_DEFINITION scalar Version diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IntegrationTests.Schema.graphql b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IntegrationTests.Schema.graphql index 5a1d3ca9841..e1ca733652e 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IntegrationTests.Schema.graphql +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IntegrationTests.Schema.graphql @@ -22,11 +22,20 @@ type Address { } type Author implements Entity & Node { - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection "This is some information." someInfo: String additionalInfo(someArg: String!): String! - additionalInfo1(someArg1: String! someArg2: String!): String! + additionalInfo1(someArg1: String!, someArg2: String!): String! authorsPure: [Author!]! authorsQuery: [Author!]! authorsNeedsPostProcessor: [Author!]! @@ -58,7 +67,16 @@ type AuthorsEdge { type Book implements Node & Entity @shareable { id: ID! author: Author - chapter("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): ChapterConnection + chapter( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): ChapterConnection idAndTitle: String! bookUri: String! title: String! @@ -136,11 +154,29 @@ type Query { node("ID of the object." id: ID!): Node "Lookup nodes by a list of IDs." nodes("The list of node IDs." ids: [ID!]!): [Node]! - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection authorById(id: ID!): Author addressById(id: Int!): Address queryFieldCollocatedWithAuthor: String! - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection bookById(id: Int!): Book staticField: String! } diff --git a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/CustomCursorHandlerTests.Infer_Schema_Correctly_When_Connection_IsUsed.snap b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/CustomCursorHandlerTests.Infer_Schema_Correctly_When_Connection_IsUsed.snap index a47fc9def1c..8c2a73631f0 100644 --- a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/CustomCursorHandlerTests.Infer_Schema_Correctly_When_Connection_IsUsed.snap +++ b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/CustomCursorHandlerTests.Infer_Schema_Correctly_When_Connection_IsUsed.snap @@ -1,4 +1,4 @@ -schema { +schema { query: Query } @@ -33,5 +33,14 @@ type PageInfo { } type Query { - items("Returns the first _n_ elements from the list." first: Int = 10 "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): ItemsConnection + items( + "Returns the first _n_ elements from the list." + first: Int = 10 + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): ItemsConnection } diff --git a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/EdgeTests.Extend_Edge_Type_And_Inject_Edge_Value_Schema.snap b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/EdgeTests.Extend_Edge_Type_And_Inject_Edge_Value_Schema.snap index db5bf1f18b8..5e2fcdaf2ba 100644 --- a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/EdgeTests.Extend_Edge_Type_And_Inject_Edge_Value_Schema.snap +++ b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/EdgeTests.Extend_Edge_Type_And_Inject_Edge_Value_Schema.snap @@ -1,4 +1,4 @@ -schema { +schema { query: Query } @@ -15,7 +15,16 @@ type PageInfo { } type Query { - users("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): UsersConnection + users( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): UsersConnection } type User { diff --git a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/InferenceTests.Handle_FactoryTypeReference_For_Connection.graphql b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/InferenceTests.Handle_FactoryTypeReference_For_Connection.graphql index 99e8b3639af..0290f2613f2 100644 --- a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/InferenceTests.Handle_FactoryTypeReference_For_Connection.graphql +++ b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/InferenceTests.Handle_FactoryTypeReference_For_Connection.graphql @@ -41,11 +41,36 @@ type ProductsEdge { } type Query1 { - products("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): ProductsConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) @cost(weight: "10") + products( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): ProductsConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @cost(weight: "10") } "The purpose of the `cost` directive is to define a `weight` for GraphQL types, fields, and arguments. Static analysis can use these weights when calculating the overall cost of a query or response." -directive @cost("The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." weight: String!) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @cost( + "The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." + weight: String! +) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION "The purpose of the `@listSize` directive is to either inform the static analysis about the size of returned lists (if that information is statically available), or to point the analysis to where to find that information." -directive @listSize("The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." assumedSize: Int "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." slicingArguments: [String!] "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." slicingArgumentDefaultValue: Int "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." sizedFields: [String!] "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." requireOneSlicingArgument: Boolean = true) on FIELD_DEFINITION +directive @listSize( + "The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." + assumedSize: Int + "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." + slicingArguments: [String!] + "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." + slicingArgumentDefaultValue: Int + "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." + sizedFields: [String!] + "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." + requireOneSlicingArgument: Boolean = true +) on FIELD_DEFINITION diff --git a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/InferenceTests.Handle_FactoryTypeReference_For_Enumerable.graphql b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/InferenceTests.Handle_FactoryTypeReference_For_Enumerable.graphql index 99e8b3639af..0290f2613f2 100644 --- a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/InferenceTests.Handle_FactoryTypeReference_For_Enumerable.graphql +++ b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/InferenceTests.Handle_FactoryTypeReference_For_Enumerable.graphql @@ -41,11 +41,36 @@ type ProductsEdge { } type Query1 { - products("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): ProductsConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) @cost(weight: "10") + products( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): ProductsConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @cost(weight: "10") } "The purpose of the `cost` directive is to define a `weight` for GraphQL types, fields, and arguments. Static analysis can use these weights when calculating the overall cost of a query or response." -directive @cost("The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." weight: String!) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @cost( + "The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." + weight: String! +) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION "The purpose of the `@listSize` directive is to either inform the static analysis about the size of returned lists (if that information is statically available), or to point the analysis to where to find that information." -directive @listSize("The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." assumedSize: Int "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." slicingArguments: [String!] "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." slicingArgumentDefaultValue: Int "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." sizedFields: [String!] "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." requireOneSlicingArgument: Boolean = true) on FIELD_DEFINITION +directive @listSize( + "The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." + assumedSize: Int + "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." + slicingArguments: [String!] + "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." + slicingArgumentDefaultValue: Int + "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." + sizedFields: [String!] + "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." + requireOneSlicingArgument: Boolean = true +) on FIELD_DEFINITION diff --git a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Attribute_Interface_With_Paging_Field.graphql b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Attribute_Interface_With_Paging_Field.graphql index 327d20d8d44..8841f9c1137 100644 --- a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Attribute_Interface_With_Paging_Field.graphql +++ b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Attribute_Interface_With_Paging_Field.graphql @@ -3,7 +3,16 @@ schema { } interface ISome2 { - explicitType("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): ExplicitTypeConnection + explicitType( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): ExplicitTypeConnection } "A connection to a list of items." @@ -79,7 +88,34 @@ type PageInfo { } type QueryAttr { - nestedObjectList("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): NestedObjectListConnection - letters("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): LettersConnection - explicitType("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): ExplicitTypeConnection + nestedObjectList( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): NestedObjectListConnection + letters( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): LettersConnection + explicitType( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): ExplicitTypeConnection } diff --git a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Attribute_Simple_StringList_Schema.graphql b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Attribute_Simple_StringList_Schema.graphql index 9c60d2d313e..0ac66a80e5d 100644 --- a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Attribute_Simple_StringList_Schema.graphql +++ b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Attribute_Simple_StringList_Schema.graphql @@ -75,7 +75,34 @@ type PageInfo { } type QueryAttr { - nestedObjectList("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): NestedObjectListConnection - letters("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): LettersConnection - explicitType("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): ExplicitTypeConnection + nestedObjectList( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): NestedObjectListConnection + letters( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): LettersConnection + explicitType( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): ExplicitTypeConnection } diff --git a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Deactivate_BackwardPagination.graphql b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Deactivate_BackwardPagination.graphql index 08b9d723858..7aa383cc642 100644 --- a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Deactivate_BackwardPagination.graphql +++ b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Deactivate_BackwardPagination.graphql @@ -111,9 +111,34 @@ type PageInfo { } type Query { - letters("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String): LettersConnection - explicitType("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String): ExplicitTypeConnection - nestedObjectList("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String): NestedObjectListConnection - extendedTypeRef("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String): ExtendedTypeRefConnection - extendedTypeRefNested("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String): ExtendedTypeRefNestedConnection + letters( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + ): LettersConnection + explicitType( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + ): ExplicitTypeConnection + nestedObjectList( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + ): NestedObjectListConnection + extendedTypeRef( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + ): ExtendedTypeRefConnection + extendedTypeRefNested( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + ): ExtendedTypeRefNestedConnection } diff --git a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Deactivate_BackwardPagination_Interface.graphql b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Deactivate_BackwardPagination_Interface.graphql index 2e7f7c15669..3bc82bbb050 100644 --- a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Deactivate_BackwardPagination_Interface.graphql +++ b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Deactivate_BackwardPagination_Interface.graphql @@ -3,7 +3,12 @@ schema { } interface ISome { - explicitType("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String): ExplicitTypeConnection + explicitType( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + ): ExplicitTypeConnection } "A connection to a list of items." @@ -79,7 +84,22 @@ type PageInfo { } type QueryAttr { - nestedObjectList("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String): NestedObjectListConnection - letters("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String): LettersConnection - explicitType("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String): ExplicitTypeConnection + nestedObjectList( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + ): NestedObjectListConnection + letters( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + ): LettersConnection + explicitType( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + ): ExplicitTypeConnection } diff --git a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Ensure_That_Explicit_Backward_Paging_Fields_Work.snap b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Ensure_That_Explicit_Backward_Paging_Fields_Work.snap index ee26d30f4be..e77d3b38882 100644 --- a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Ensure_That_Explicit_Backward_Paging_Fields_Work.snap +++ b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Ensure_That_Explicit_Backward_Paging_Fields_Work.snap @@ -3,7 +3,12 @@ schema { } type BackwardQuery { - foos("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String): FoosConnection + foos( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + ): FoosConnection } "A connection to a list of items." diff --git a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Explicit_ConnectionName.graphql b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Explicit_ConnectionName.graphql index 20c6d5b9de5..ea4863550d9 100644 --- a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Explicit_ConnectionName.graphql +++ b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Explicit_ConnectionName.graphql @@ -39,9 +39,36 @@ type Connection2Edge { } type ExplicitConnectionName { - abc("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): Connection1Connection - def("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): Connection2Connection - ghi("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): GhiConnection + abc( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): Connection1Connection + def( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): Connection2Connection + ghi( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): GhiConnection } "A connection to a list of items." diff --git a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Explicit_ConnectionName_With_NamingConvention.graphql b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Explicit_ConnectionName_With_NamingConvention.graphql index d6bfbfdf51f..9ab0e8702d4 100644 --- a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Explicit_ConnectionName_With_NamingConvention.graphql +++ b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Explicit_ConnectionName_With_NamingConvention.graphql @@ -39,9 +39,36 @@ type Connection2EdgeNamed { } type ExplicitConnectionName { - abc("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): Connection1ConnectionNamed - def("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): Connection2ConnectionNamed - ghi("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): GhiConnectionNamed + abc( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): Connection1ConnectionNamed + def( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): Connection2ConnectionNamed + ghi( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): GhiConnectionNamed } "A connection to a list of items." diff --git a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.IncludeNodesField_False.graphql b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.IncludeNodesField_False.graphql index f9f3ebd94fa..cd20918624b 100644 --- a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.IncludeNodesField_False.graphql +++ b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.IncludeNodesField_False.graphql @@ -101,9 +101,54 @@ type PageInfo { } type Query { - letters("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): LettersConnection - explicitType("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): ExplicitTypeConnection - nestedObjectList("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): NestedObjectListConnection - extendedTypeRef("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): ExtendedTypeRefConnection - extendedTypeRefNested("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): ExtendedTypeRefNestedConnection + letters( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): LettersConnection + explicitType( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): ExplicitTypeConnection + nestedObjectList( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): NestedObjectListConnection + extendedTypeRef( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): ExtendedTypeRefConnection + extendedTypeRefNested( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): ExtendedTypeRefNestedConnection } diff --git a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Infer_ConnectionName_From_Field.graphql b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Infer_ConnectionName_From_Field.graphql index 62f867cd002..fe2889e3d06 100644 --- a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Infer_ConnectionName_From_Field.graphql +++ b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Infer_ConnectionName_From_Field.graphql @@ -3,7 +3,16 @@ schema { } type InferConnectionNameFromField { - names("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): NamesConnection + names( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): NamesConnection } "A connection to a list of items." diff --git a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Infer_ConnectionName_From_NodeType_With_NamingConvention.graphql b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Infer_ConnectionName_From_NodeType_With_NamingConvention.graphql index 4100cfea08b..941702508d2 100644 --- a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Infer_ConnectionName_From_NodeType_With_NamingConvention.graphql +++ b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Infer_ConnectionName_From_NodeType_With_NamingConvention.graphql @@ -3,7 +3,16 @@ schema { } type InferConnectionNameFromNodeType { - names("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): StringConnectionNamed + names( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): StringConnectionNamed } "Information about pagination in a connection." diff --git a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Interface_With_Paging_Field.graphql b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Interface_With_Paging_Field.graphql index 53e807a5507..2a6a75e2e33 100644 --- a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Interface_With_Paging_Field.graphql +++ b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Interface_With_Paging_Field.graphql @@ -3,7 +3,16 @@ schema { } interface ISome { - explicitType("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): ExplicitTypeConnection + explicitType( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): ExplicitTypeConnection } "A connection to a list of items." @@ -79,7 +88,34 @@ type PageInfo { } type QueryAttr { - nestedObjectList("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): NestedObjectListConnection - letters("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): LettersConnection - explicitType("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): ExplicitTypeConnection + nestedObjectList( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): NestedObjectListConnection + letters( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): LettersConnection + explicitType( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): ExplicitTypeConnection } diff --git a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Simple_StringList_Schema.graphql b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Simple_StringList_Schema.graphql index 177168e7039..1752103e18b 100644 --- a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Simple_StringList_Schema.graphql +++ b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/IntegrationTests.Simple_StringList_Schema.graphql @@ -111,9 +111,54 @@ type PageInfo { } type Query { - letters("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): LettersConnection - explicitType("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): ExplicitTypeConnection - nestedObjectList("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): NestedObjectListConnection - extendedTypeRef("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): ExtendedTypeRefConnection - extendedTypeRefNested("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): ExtendedTypeRefNestedConnection + letters( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): LettersConnection + explicitType( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): ExplicitTypeConnection + nestedObjectList( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): NestedObjectListConnection + extendedTypeRef( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): ExtendedTypeRefConnection + extendedTypeRefNested( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): ExtendedTypeRefNestedConnection } diff --git a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/UsePagingAttributeTests.Ensure_Attributes_Are_Applied_Once.snap b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/UsePagingAttributeTests.Ensure_Attributes_Are_Applied_Once.snap index 16dbb144f77..d9bc9ac25d9 100644 --- a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/UsePagingAttributeTests.Ensure_Attributes_Are_Applied_Once.snap +++ b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/UsePagingAttributeTests.Ensure_Attributes_Are_Applied_Once.snap @@ -1,4 +1,4 @@ -schema { +schema { query: Query1 } @@ -42,6 +42,15 @@ type PageInfo { } type Query1 implements Node { - foos("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FoosConnection + foos( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FoosConnection id: ID! } diff --git a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/UsePagingAttributeTests.UsePagingAttribute_Infer_Types.snap b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/UsePagingAttributeTests.UsePagingAttribute_Infer_Types.snap index 98a287be326..cc20fe6c54e 100644 --- a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/UsePagingAttributeTests.UsePagingAttribute_Infer_Types.snap +++ b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/UsePagingAttributeTests.UsePagingAttribute_Infer_Types.snap @@ -1,4 +1,4 @@ -schema { +schema { query: Query } @@ -37,5 +37,14 @@ type PageInfo { } type Query { - foos("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FoosConnection + foos( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FoosConnection } diff --git a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/UsePagingAttributeTests.UsePagingAttribute_Infer_Types_On_Interface.snap b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/UsePagingAttributeTests.UsePagingAttribute_Infer_Types_On_Interface.snap index 02094fa27a2..f86752510e5 100644 --- a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/UsePagingAttributeTests.UsePagingAttribute_Infer_Types_On_Interface.snap +++ b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/UsePagingAttributeTests.UsePagingAttribute_Infer_Types_On_Interface.snap @@ -1,5 +1,14 @@ -interface IHasFoos { - foos("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FoosConnection +interface IHasFoos { + foos( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FoosConnection } type Foo { diff --git a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/UsePagingAttributeTests.UsePagingAttribute_On_Extension_Infer_Types.snap b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/UsePagingAttributeTests.UsePagingAttribute_On_Extension_Infer_Types.snap index 98a287be326..cc20fe6c54e 100644 --- a/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/UsePagingAttributeTests.UsePagingAttribute_On_Extension_Infer_Types.snap +++ b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/UsePagingAttributeTests.UsePagingAttribute_On_Extension_Infer_Types.snap @@ -1,4 +1,4 @@ -schema { +schema { query: Query } @@ -37,5 +37,14 @@ type PageInfo { } type Query { - foos("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FoosConnection + foos( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FoosConnection } diff --git a/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/CustomCollectionSegmentHandlerTests.Infer_Schema_Correctly_When_CollectionSegment_IsUsed.snap b/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/CustomCollectionSegmentHandlerTests.Infer_Schema_Correctly_When_CollectionSegment_IsUsed.snap index 8cf0a9fb8c4..80ba4b7d2a8 100644 --- a/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/CustomCollectionSegmentHandlerTests.Infer_Schema_Correctly_When_CollectionSegment_IsUsed.snap +++ b/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/CustomCollectionSegmentHandlerTests.Infer_Schema_Correctly_When_CollectionSegment_IsUsed.snap @@ -1,4 +1,4 @@ -schema { +schema { query: Query } @@ -19,5 +19,5 @@ type ItemsCollectionSegment { } type Query { - items(skip: Int take: Int): ItemsCollectionSegment + items(skip: Int, take: Int): ItemsCollectionSegment } diff --git a/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/IntegrationTests.Attribute_Dictionary_ReturnType_ThrowsSchemaException.graphql b/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/IntegrationTests.Attribute_Dictionary_ReturnType_ThrowsSchemaException.graphql index 7b0c7cc89a7..2bdfb9da281 100644 --- a/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/IntegrationTests.Attribute_Dictionary_ReturnType_ThrowsSchemaException.graphql +++ b/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/IntegrationTests.Attribute_Dictionary_ReturnType_ThrowsSchemaException.graphql @@ -16,7 +16,7 @@ type KeyValuePairOfStringAndString { } type UglyLegacyQuery { - uglyLegacyResolver(skip: Int take: Int): UglyLegacyResolverCollectionSegment + uglyLegacyResolver(skip: Int, take: Int): UglyLegacyResolverCollectionSegment } "A segment of a collection." diff --git a/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/IntegrationTests.Attribute_Interface_With_Paging_Field.snap b/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/IntegrationTests.Attribute_Interface_With_Paging_Field.snap index 4577f525ccf..06deffe11dd 100644 --- a/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/IntegrationTests.Attribute_Interface_With_Paging_Field.snap +++ b/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/IntegrationTests.Attribute_Interface_With_Paging_Field.snap @@ -1,9 +1,9 @@ -schema { +schema { query: QueryAttr } interface ISome2 { - explicitType(skip: Int take: Int): ExplicitTypeCollectionSegment + explicitType(skip: Int, take: Int): ExplicitTypeCollectionSegment } "Information about the offset pagination." @@ -44,7 +44,7 @@ type NestedObjectListCollectionSegment { } type QueryAttr { - nestedObjectList(skip: Int take: Int): NestedObjectListCollectionSegment - letters(skip: Int take: Int): LettersCollectionSegment - explicitType(skip: Int take: Int): ExplicitTypeCollectionSegment + nestedObjectList(skip: Int, take: Int): NestedObjectListCollectionSegment + letters(skip: Int, take: Int): LettersCollectionSegment + explicitType(skip: Int, take: Int): ExplicitTypeCollectionSegment } diff --git a/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/IntegrationTests.Attribute_Simple_StringList_Schema.snap b/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/IntegrationTests.Attribute_Simple_StringList_Schema.snap index 1251310b3da..db7b4760110 100644 --- a/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/IntegrationTests.Attribute_Simple_StringList_Schema.snap +++ b/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/IntegrationTests.Attribute_Simple_StringList_Schema.snap @@ -1,4 +1,4 @@ -schema { +schema { query: QueryAttr } @@ -40,7 +40,7 @@ type NestedObjectListCollectionSegment { } type QueryAttr { - nestedObjectList(skip: Int take: Int): NestedObjectListCollectionSegment - letters(skip: Int take: Int): LettersCollectionSegment - explicitType(skip: Int take: Int): ExplicitTypeCollectionSegment + nestedObjectList(skip: Int, take: Int): NestedObjectListCollectionSegment + letters(skip: Int, take: Int): LettersCollectionSegment + explicitType(skip: Int, take: Int): ExplicitTypeCollectionSegment } diff --git a/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/IntegrationTests.Interface_With_Paging_Field.snap b/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/IntegrationTests.Interface_With_Paging_Field.snap index 353b2d49d74..246380791f2 100644 --- a/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/IntegrationTests.Interface_With_Paging_Field.snap +++ b/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/IntegrationTests.Interface_With_Paging_Field.snap @@ -1,9 +1,9 @@ -schema { +schema { query: QueryAttr } interface ISome { - explicitType(skip: Int take: Int): StringCollectionSegment + explicitType(skip: Int, take: Int): StringCollectionSegment } "Information about the offset pagination." @@ -44,9 +44,9 @@ type NestedObjectListCollectionSegment { } type QueryAttr { - nestedObjectList(skip: Int take: Int): NestedObjectListCollectionSegment - letters(skip: Int take: Int): LettersCollectionSegment - explicitType(skip: Int take: Int): ExplicitTypeCollectionSegment + nestedObjectList(skip: Int, take: Int): NestedObjectListCollectionSegment + letters(skip: Int, take: Int): LettersCollectionSegment + explicitType(skip: Int, take: Int): ExplicitTypeCollectionSegment } "A segment of a collection." diff --git a/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/IntegrationTests.Simple_StringList_Schema.snap b/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/IntegrationTests.Simple_StringList_Schema.snap index 7fdc302a5aa..578a6dc2c22 100644 --- a/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/IntegrationTests.Simple_StringList_Schema.snap +++ b/src/HotChocolate/Core/test/Types.OffsetPagination.Tests/__snapshots__/IntegrationTests.Simple_StringList_Schema.snap @@ -1,4 +1,4 @@ -schema { +schema { query: Query } @@ -56,9 +56,9 @@ type NestedObjectListCollectionSegment { } type Query { - letters(skip: Int take: Int): LettersCollectionSegment - explicitType(skip: Int take: Int): ExplicitTypeCollectionSegment - nestedObjectList(skip: Int take: Int): NestedObjectListCollectionSegment - extendedTypeRef(skip: Int take: Int): ExtendedTypeRefCollectionSegment - extendedTypeRefNested(skip: Int take: Int): ExtendedTypeRefNestedCollectionSegment + letters(skip: Int, take: Int): LettersCollectionSegment + explicitType(skip: Int, take: Int): ExplicitTypeCollectionSegment + nestedObjectList(skip: Int, take: Int): NestedObjectListCollectionSegment + extendedTypeRef(skip: Int, take: Int): ExtendedTypeRefCollectionSegment + extendedTypeRefNested(skip: Int, take: Int): ExtendedTypeRefNestedCollectionSegment } diff --git a/src/HotChocolate/Core/test/Types.Queries.Tests/__snapshots__/AnnotationBasedSchemaTests.Schema_Query_With_FieldResult_And_Paging.graphql b/src/HotChocolate/Core/test/Types.Queries.Tests/__snapshots__/AnnotationBasedSchemaTests.Schema_Query_With_FieldResult_And_Paging.graphql index a33e00e7d01..64edbf11a9b 100644 --- a/src/HotChocolate/Core/test/Types.Queries.Tests/__snapshots__/AnnotationBasedSchemaTests.Schema_Query_With_FieldResult_And_Paging.graphql +++ b/src/HotChocolate/Core/test/Types.Queries.Tests/__snapshots__/AnnotationBasedSchemaTests.Schema_Query_With_FieldResult_And_Paging.graphql @@ -30,8 +30,30 @@ type PageInfo { } type QueryWithFieldResultAndPaging { - users(error: Boolean! = false "Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): UsersResult! - usersWithFilter(error: Boolean! = false "Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: UserFilterInput order: [UserSortInput!]): UsersWithFilterResult! + users( + error: Boolean! = false + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): UsersResult! + usersWithFilter( + error: Boolean! = false + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: UserFilterInput + order: [UserSortInput!] + ): UsersWithFilterResult! } type User { diff --git a/src/HotChocolate/Core/test/Types.Queries.Tests/__snapshots__/CodeFirstSchemaTests.Schema_Query_With_FieldResult_And_Paging.graphql b/src/HotChocolate/Core/test/Types.Queries.Tests/__snapshots__/CodeFirstSchemaTests.Schema_Query_With_FieldResult_And_Paging.graphql index 22499f19e62..367ad5ed24d 100644 --- a/src/HotChocolate/Core/test/Types.Queries.Tests/__snapshots__/CodeFirstSchemaTests.Schema_Query_With_FieldResult_And_Paging.graphql +++ b/src/HotChocolate/Core/test/Types.Queries.Tests/__snapshots__/CodeFirstSchemaTests.Schema_Query_With_FieldResult_And_Paging.graphql @@ -30,8 +30,30 @@ type PageInfo { } type QueryWithFieldResultAndPagingType { - users(error: Boolean! = false "Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): UsersResult! - usersWithFilter(error: Boolean! = false "Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: UserFilterInput order: [UserSortInput!]): UsersWithFilterResult! + users( + error: Boolean! = false + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): UsersResult! + usersWithFilter( + error: Boolean! = false + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: UserFilterInput + order: [UserSortInput!] + ): UsersWithFilterResult! } type User { diff --git a/src/HotChocolate/Core/test/Types.Tests/Configuration/__snapshots__/FactoryTypeReferenceTests.FactoryTypeReference_Is_Handled.graphql b/src/HotChocolate/Core/test/Types.Tests/Configuration/__snapshots__/FactoryTypeReferenceTests.FactoryTypeReference_Is_Handled.graphql index 62314e56368..62c3ca280c9 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Configuration/__snapshots__/FactoryTypeReferenceTests.FactoryTypeReference_Is_Handled.graphql +++ b/src/HotChocolate/Core/test/Types.Tests/Configuration/__snapshots__/FactoryTypeReferenceTests.FactoryTypeReference_Is_Handled.graphql @@ -7,4 +7,7 @@ type Query { } "The purpose of the `cost` directive is to define a `weight` for GraphQL types, fields, and arguments. Static analysis can use these weights when calculating the overall cost of a query or response." -directive @cost("The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." weight: String!) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @cost( + "The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." + weight: String! +) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION diff --git a/src/HotChocolate/Core/test/Types.Tests/Configuration/__snapshots__/TypeDiscoveryTests.InferDateTime.snap b/src/HotChocolate/Core/test/Types.Tests/Configuration/__snapshots__/TypeDiscoveryTests.InferDateTime.snap index aa2096f37a8..a87450e5fd3 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Configuration/__snapshots__/TypeDiscoveryTests.InferDateTime.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Configuration/__snapshots__/TypeDiscoveryTests.InferDateTime.snap @@ -8,7 +8,11 @@ type QueryWithDateTime { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `DateTime` scalar type represents a date and time with time zone offset information." -scalar DateTime @specifiedBy(url: "https://scalars.graphql.org/chillicream/date-time.html") +scalar DateTime + @specifiedBy(url: "https://scalars.graphql.org/chillicream/date-time.html") diff --git a/src/HotChocolate/Core/test/Types.Tests/Configuration/__snapshots__/TypeDiscoveryTests.InferDateTimeFromModel.snap b/src/HotChocolate/Core/test/Types.Tests/Configuration/__snapshots__/TypeDiscoveryTests.InferDateTimeFromModel.snap index 55497e180b0..f08eca88aa6 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Configuration/__snapshots__/TypeDiscoveryTests.InferDateTimeFromModel.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Configuration/__snapshots__/TypeDiscoveryTests.InferDateTimeFromModel.snap @@ -42,14 +42,28 @@ type PagingEdge { type Query { items: [Model] - paging("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): PagingConnection + paging( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): PagingConnection } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `Date` scalar type represents a date in UTC." -scalar Date @specifiedBy(url: "https://scalars.graphql.org/chillicream/date.html") +scalar Date + @specifiedBy(url: "https://scalars.graphql.org/chillicream/date.html") "The `DateTime` scalar type represents a date and time with time zone offset information." -scalar DateTime @specifiedBy(url: "https://scalars.graphql.org/chillicream/date-time.html") +scalar DateTime + @specifiedBy(url: "https://scalars.graphql.org/chillicream/date-time.html") diff --git a/src/HotChocolate/Core/test/Types.Tests/Configuration/__snapshots__/TypeDiscoveryTests.TypeDiscovery_Should_InferStructs.snap b/src/HotChocolate/Core/test/Types.Tests/Configuration/__snapshots__/TypeDiscoveryTests.TypeDiscovery_Should_InferStructs.snap index 7e59890ca60..0403a65dd02 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Configuration/__snapshots__/TypeDiscoveryTests.TypeDiscovery_Should_InferStructs.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Configuration/__snapshots__/TypeDiscoveryTests.TypeDiscovery_Should_InferStructs.snap @@ -19,10 +19,15 @@ type QueryTypeWithStruct { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `DateTime` scalar type represents a date and time with time zone offset information." -scalar DateTime @specifiedBy(url: "https://scalars.graphql.org/chillicream/date-time.html") +scalar DateTime + @specifiedBy(url: "https://scalars.graphql.org/chillicream/date-time.html") "The `UUID` scalar type represents a Universally Unique Identifier (UUID) as defined by RFC 9562." -scalar UUID @specifiedBy(url: "https://scalars.graphql.org/chillicream/uuid.html") +scalar UUID + @specifiedBy(url: "https://scalars.graphql.org/chillicream/uuid.html") diff --git a/src/HotChocolate/Core/test/Types.Tests/Configuration/__snapshots__/TypeTrimmerTests.Executable_Directives_Should_Be_Visited.snap b/src/HotChocolate/Core/test/Types.Tests/Configuration/__snapshots__/TypeTrimmerTests.Executable_Directives_Should_Be_Visited.snap index 53273913fe0..699d26f5f2e 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Configuration/__snapshots__/TypeTrimmerTests.Executable_Directives_Should_Be_Visited.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Configuration/__snapshots__/TypeTrimmerTests.Executable_Directives_Should_Be_Visited.snap @@ -17,7 +17,11 @@ type ghi implements def { directive @_abc(arg: UUID) on QUERY | OBJECT "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `UUID` scalar type represents a Universally Unique Identifier (UUID) as defined by RFC 9562." -scalar UUID @specifiedBy(url: "https://scalars.graphql.org/chillicream/uuid.html") +scalar UUID + @specifiedBy(url: "https://scalars.graphql.org/chillicream/uuid.html") diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Composite/LookupTests.cs b/src/HotChocolate/Core/test/Types.Tests/Types/Composite/LookupTests.cs index f14564d4208..37f96f05fde 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Composite/LookupTests.cs +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Composite/LookupTests.cs @@ -150,7 +150,8 @@ type Book4 @key(fields: "id") { } type Query4 { - book(by: Book4ByInput! @is(field: "{\n id\n} | {\n title\n}")): Book4! @lookup + book(by: Book4ByInput! @is(field: "{\n id\n} | {\n title\n}")): Book4! + @lookup } input Book4ByInput @oneOf { diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Composite/__snapshots__/SerializeAsTests.SerializeAs_Is_Added.graphql b/src/HotChocolate/Core/test/Types.Tests/Types/Composite/__snapshots__/SerializeAsTests.SerializeAs_Is_Added.graphql index c9dcb81c7f8..98f51d9d58e 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Composite/__snapshots__/SerializeAsTests.SerializeAs_Is_Added.graphql +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Composite/__snapshots__/SerializeAsTests.SerializeAs_Is_Added.graphql @@ -24,7 +24,12 @@ enum ScalarSerializationType { LIST } -directive @serializeAs("The primitive type a scalar is serialized to." type: [ScalarSerializationType!]! "The ECMA-262 regex pattern that the serialized scalar value conforms to." pattern: String) on SCALAR +directive @serializeAs( + "The primitive type a scalar is serialized to." + type: [ScalarSerializationType!]! + "The ECMA-262 regex pattern that the serialized scalar value conforms to." + pattern: String +) on SCALAR scalar Custom1 @serializeAs(type: STRING) diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Composite/__snapshots__/ShareableTests.New_On_PageInfo_Is_Shareable.graphql b/src/HotChocolate/Core/test/Types.Tests/Types/Composite/__snapshots__/ShareableTests.New_On_PageInfo_Is_Shareable.graphql index c18c175fb04..e085ee03c2c 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Composite/__snapshots__/ShareableTests.New_On_PageInfo_Is_Shareable.graphql +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Composite/__snapshots__/ShareableTests.New_On_PageInfo_Is_Shareable.graphql @@ -34,7 +34,16 @@ type PageInfo { } type Query1 { - names("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): NamesConnection + names( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): NamesConnection } """ diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Composite/__snapshots__/ShareableTests.New_On_PageInfo_Is_Shareable_Fluent.graphql b/src/HotChocolate/Core/test/Types.Tests/Types/Composite/__snapshots__/ShareableTests.New_On_PageInfo_Is_Shareable_Fluent.graphql index b029293a959..99248067907 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Composite/__snapshots__/ShareableTests.New_On_PageInfo_Is_Shareable_Fluent.graphql +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Composite/__snapshots__/ShareableTests.New_On_PageInfo_Is_Shareable_Fluent.graphql @@ -34,7 +34,16 @@ type PageInfo { } type Query1 { - names("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): NamesConnection + names( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): NamesConnection } """ diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Composite/__snapshots__/ShareableTests.PageInfo_Is_Shareable.graphql b/src/HotChocolate/Core/test/Types.Tests/Types/Composite/__snapshots__/ShareableTests.PageInfo_Is_Shareable.graphql index b8227d76e3a..27efffe9b5d 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Composite/__snapshots__/ShareableTests.PageInfo_Is_Shareable.graphql +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Composite/__snapshots__/ShareableTests.PageInfo_Is_Shareable.graphql @@ -33,7 +33,16 @@ type PageInfo @shareable { } type Query1 { - names("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): NamesConnection + names( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): NamesConnection } """ diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Composite/__snapshots__/ShareableTests.PageInfo_Is_Shareable_Fluent.graphql b/src/HotChocolate/Core/test/Types.Tests/Types/Composite/__snapshots__/ShareableTests.PageInfo_Is_Shareable_Fluent.graphql index b8227d76e3a..27efffe9b5d 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Composite/__snapshots__/ShareableTests.PageInfo_Is_Shareable_Fluent.graphql +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Composite/__snapshots__/ShareableTests.PageInfo_Is_Shareable_Fluent.graphql @@ -33,7 +33,16 @@ type PageInfo @shareable { } type Query1 { - names("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): NamesConnection + names( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): NamesConnection } """ diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/OptInFeatureStabilityDirectiveTests.BuildSchemaAsync_CodeFirst_MatchesSnapshot.graphql b/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/OptInFeatureStabilityDirectiveTests.BuildSchemaAsync_CodeFirst_MatchesSnapshot.graphql index b4543769c00..f45240c4a0b 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/OptInFeatureStabilityDirectiveTests.BuildSchemaAsync_CodeFirst_MatchesSnapshot.graphql +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/OptInFeatureStabilityDirectiveTests.BuildSchemaAsync_CodeFirst_MatchesSnapshot.graphql @@ -1,4 +1,6 @@ -schema @optInFeatureStability(feature: "feature1", stability: "stability1") @optInFeatureStability(feature: "feature2", stability: "stability2") { +schema + @optInFeatureStability(feature: "feature1", stability: "stability1") + @optInFeatureStability(feature: "feature2", stability: "stability2") { query: Query } @@ -7,4 +9,9 @@ type Query { } "Sets the stability level of an opt-in feature." -directive @optInFeatureStability("The name of the feature for which to set the stability." feature: String! "The stability level of the feature." stability: String!) repeatable on SCHEMA +directive @optInFeatureStability( + "The name of the feature for which to set the stability." + feature: String! + "The stability level of the feature." + stability: String! +) repeatable on SCHEMA diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/OptInFeatureStabilityDirectiveTests.BuildSchemaAsync_SchemaFirst_MatchesSnapshot.graphql b/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/OptInFeatureStabilityDirectiveTests.BuildSchemaAsync_SchemaFirst_MatchesSnapshot.graphql index b4543769c00..f45240c4a0b 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/OptInFeatureStabilityDirectiveTests.BuildSchemaAsync_SchemaFirst_MatchesSnapshot.graphql +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/OptInFeatureStabilityDirectiveTests.BuildSchemaAsync_SchemaFirst_MatchesSnapshot.graphql @@ -1,4 +1,6 @@ -schema @optInFeatureStability(feature: "feature1", stability: "stability1") @optInFeatureStability(feature: "feature2", stability: "stability2") { +schema + @optInFeatureStability(feature: "feature1", stability: "stability1") + @optInFeatureStability(feature: "feature2", stability: "stability2") { query: Query } @@ -7,4 +9,9 @@ type Query { } "Sets the stability level of an opt-in feature." -directive @optInFeatureStability("The name of the feature for which to set the stability." feature: String! "The stability level of the feature." stability: String!) repeatable on SCHEMA +directive @optInFeatureStability( + "The name of the feature for which to set the stability." + feature: String! + "The stability level of the feature." + stability: String! +) repeatable on SCHEMA diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/RequiresOptInDirectiveTests.BuildSchemaAsync_CodeFirst_MatchesSnapshot.graphql b/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/RequiresOptInDirectiveTests.BuildSchemaAsync_CodeFirst_MatchesSnapshot.graphql index 83d995a4cbe..1ac8b8f4b2c 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/RequiresOptInDirectiveTests.BuildSchemaAsync_CodeFirst_MatchesSnapshot.graphql +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/RequiresOptInDirectiveTests.BuildSchemaAsync_CodeFirst_MatchesSnapshot.graphql @@ -3,7 +3,11 @@ schema { } type Query { - field(argument: Int @requiresOptIn(feature: "objectFieldArgFeature1") @requiresOptIn(feature: "objectFieldArgFeature2")): Int @requiresOptIn(feature: "objectFieldFeature1") @requiresOptIn(feature: "objectFieldFeature2") + field( + argument: Int @requiresOptIn(feature: "objectFieldArgFeature1") @requiresOptIn(feature: "objectFieldArgFeature2") + ): Int + @requiresOptIn(feature: "objectFieldFeature1") + @requiresOptIn(feature: "objectFieldFeature2") } input Input { @@ -11,8 +15,13 @@ input Input { } enum Enum { - VALUE @requiresOptIn(feature: "enumValueFeature1") @requiresOptIn(feature: "enumValueFeature2") + VALUE + @requiresOptIn(feature: "enumValueFeature1") + @requiresOptIn(feature: "enumValueFeature2") } "Indicates that the given field, argument, input field, or enum value requires giving explicit consent before being used." -directive @requiresOptIn("The name of the feature that requires opt in." feature: String!) repeatable on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION +directive @requiresOptIn( + "The name of the feature that requires opt in." + feature: String! +) repeatable on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/RequiresOptInDirectiveTests.BuildSchemaAsync_ImplementationFirst_MatchesSnapshot.graphql b/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/RequiresOptInDirectiveTests.BuildSchemaAsync_ImplementationFirst_MatchesSnapshot.graphql index 83d995a4cbe..1ac8b8f4b2c 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/RequiresOptInDirectiveTests.BuildSchemaAsync_ImplementationFirst_MatchesSnapshot.graphql +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/RequiresOptInDirectiveTests.BuildSchemaAsync_ImplementationFirst_MatchesSnapshot.graphql @@ -3,7 +3,11 @@ schema { } type Query { - field(argument: Int @requiresOptIn(feature: "objectFieldArgFeature1") @requiresOptIn(feature: "objectFieldArgFeature2")): Int @requiresOptIn(feature: "objectFieldFeature1") @requiresOptIn(feature: "objectFieldFeature2") + field( + argument: Int @requiresOptIn(feature: "objectFieldArgFeature1") @requiresOptIn(feature: "objectFieldArgFeature2") + ): Int + @requiresOptIn(feature: "objectFieldFeature1") + @requiresOptIn(feature: "objectFieldFeature2") } input Input { @@ -11,8 +15,13 @@ input Input { } enum Enum { - VALUE @requiresOptIn(feature: "enumValueFeature1") @requiresOptIn(feature: "enumValueFeature2") + VALUE + @requiresOptIn(feature: "enumValueFeature1") + @requiresOptIn(feature: "enumValueFeature2") } "Indicates that the given field, argument, input field, or enum value requires giving explicit consent before being used." -directive @requiresOptIn("The name of the feature that requires opt in." feature: String!) repeatable on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION +directive @requiresOptIn( + "The name of the feature that requires opt in." + feature: String! +) repeatable on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/RequiresOptInDirectiveTests.BuildSchemaAsync_SchemaFirst_MatchesSnapshot.graphql b/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/RequiresOptInDirectiveTests.BuildSchemaAsync_SchemaFirst_MatchesSnapshot.graphql index 83d995a4cbe..1ac8b8f4b2c 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/RequiresOptInDirectiveTests.BuildSchemaAsync_SchemaFirst_MatchesSnapshot.graphql +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/RequiresOptInDirectiveTests.BuildSchemaAsync_SchemaFirst_MatchesSnapshot.graphql @@ -3,7 +3,11 @@ schema { } type Query { - field(argument: Int @requiresOptIn(feature: "objectFieldArgFeature1") @requiresOptIn(feature: "objectFieldArgFeature2")): Int @requiresOptIn(feature: "objectFieldFeature1") @requiresOptIn(feature: "objectFieldFeature2") + field( + argument: Int @requiresOptIn(feature: "objectFieldArgFeature1") @requiresOptIn(feature: "objectFieldArgFeature2") + ): Int + @requiresOptIn(feature: "objectFieldFeature1") + @requiresOptIn(feature: "objectFieldFeature2") } input Input { @@ -11,8 +15,13 @@ input Input { } enum Enum { - VALUE @requiresOptIn(feature: "enumValueFeature1") @requiresOptIn(feature: "enumValueFeature2") + VALUE + @requiresOptIn(feature: "enumValueFeature1") + @requiresOptIn(feature: "enumValueFeature2") } "Indicates that the given field, argument, input field, or enum value requires giving explicit consent before being used." -directive @requiresOptIn("The name of the feature that requires opt in." feature: String!) repeatable on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION +directive @requiresOptIn( + "The name of the feature that requires opt in." + feature: String! +) repeatable on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/SpecifiedByDirectiveTypeTests.EnsureSpecifiedByDirectiveExistsInSdl.graphql b/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/SpecifiedByDirectiveTypeTests.EnsureSpecifiedByDirectiveExistsInSdl.graphql index 325e64e0703..ba003f2aaf3 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/SpecifiedByDirectiveTypeTests.EnsureSpecifiedByDirectiveExistsInSdl.graphql +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/SpecifiedByDirectiveTypeTests.EnsureSpecifiedByDirectiveExistsInSdl.graphql @@ -7,7 +7,11 @@ type Query1 { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `DateTime` scalar type represents a date and time with time zone offset information." -scalar DateTime @specifiedBy(url: "https://scalars.graphql.org/chillicream/date-time.html") +scalar DateTime + @specifiedBy(url: "https://scalars.graphql.org/chillicream/date-time.html") diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/TagDirectiveTests.EnsureAllLocationsAreApplied.graphql b/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/TagDirectiveTests.EnsureAllLocationsAreApplied.graphql index c152c22f3c1..c4de2e34a40 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/TagDirectiveTests.EnsureAllLocationsAreApplied.graphql +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/TagDirectiveTests.EnsureAllLocationsAreApplied.graphql @@ -3,7 +3,8 @@ schema @tag(name: "OnSchema") { } interface IFoo @tag(name: "OnInterface") { - bar(baz: String! @tag(name: "OnInterfaceFieldArg")): String! @tag(name: "OnInterfaceField") + bar(baz: String! @tag(name: "OnInterfaceFieldArg")): String! + @tag(name: "OnInterfaceField") } type Foo implements IFoo { @@ -11,7 +12,8 @@ type Foo implements IFoo { } type Query @tag(name: "OnObjectType") { - foo(a: String! @tag(name: "OnObjectFieldArg")): IFoo! @tag(name: "OnObjectField") + foo(a: String! @tag(name: "OnObjectFieldArg")): IFoo! + @tag(name: "OnObjectField") fooEnum(input: FooInput!): FooEnum! } diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Relay/__snapshots__/IdAttributeTests.Id_Type_Is_Correctly_Inferred.snap b/src/HotChocolate/Core/test/Types.Tests/Types/Relay/__snapshots__/IdAttributeTests.Id_Type_Is_Correctly_Inferred.snap index 35bfd7d1a39..015d867d6b9 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Relay/__snapshots__/IdAttributeTests.Id_Type_Is_Correctly_Inferred.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Relay/__snapshots__/IdAttributeTests.Id_Type_Is_Correctly_Inferred.snap @@ -62,7 +62,11 @@ input FooInput { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `UUID` scalar type represents a Universally Unique Identifier (UUID) as defined by RFC 9562." -scalar UUID @specifiedBy(url: "https://scalars.graphql.org/chillicream/uuid.html") +scalar UUID + @specifiedBy(url: "https://scalars.graphql.org/chillicream/uuid.html") diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/AnyTypeTests.cs b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/AnyTypeTests.cs index e80cd27ea79..c404064dea5 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/AnyTypeTests.cs +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/AnyTypeTests.cs @@ -1453,7 +1453,10 @@ type QueryJsonElement { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." - directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR + directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! + ) on SCALAR "The `Any` scalar type represents any valid GraphQL value." scalar Any @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/DateTypeTests.DateOnly_As_Argument_Schema.snap b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/DateTypeTests.DateOnly_As_Argument_Schema.snap index 30cbe0b32fa..1dd4a5ce11b 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/DateTypeTests.DateOnly_As_Argument_Schema.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/DateTypeTests.DateOnly_As_Argument_Schema.snap @@ -11,7 +11,11 @@ type QueryDate1 { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `Date` scalar type represents a date in UTC." -scalar Date @specifiedBy(url: "https://scalars.graphql.org/chillicream/date.html") +scalar Date + @specifiedBy(url: "https://scalars.graphql.org/chillicream/date.html") diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/DateTypeTests.DateOnly_As_ReturnValue_Schema.snap b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/DateTypeTests.DateOnly_As_ReturnValue_Schema.snap index a0e036bd588..575e3a35c5c 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/DateTypeTests.DateOnly_As_ReturnValue_Schema.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/DateTypeTests.DateOnly_As_ReturnValue_Schema.snap @@ -11,7 +11,11 @@ type QueryDate2 { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `Date` scalar type represents a date in UTC." -scalar Date @specifiedBy(url: "https://scalars.graphql.org/chillicream/date.html") +scalar Date + @specifiedBy(url: "https://scalars.graphql.org/chillicream/date.html") diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/DurationTypeTests.ImplementationFirst_AutomaticallyBinds_TimeSpan.snap b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/DurationTypeTests.ImplementationFirst_AutomaticallyBinds_TimeSpan.snap index a96d0ed69ec..5dec00d9f90 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/DurationTypeTests.ImplementationFirst_AutomaticallyBinds_TimeSpan.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/DurationTypeTests.ImplementationFirst_AutomaticallyBinds_TimeSpan.snap @@ -7,7 +7,11 @@ type Query { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `Duration` scalar type represents a duration of time." -scalar Duration @specifiedBy(url: "https://scalars.graphql.org/chillicream/duration.html") +scalar Duration + @specifiedBy(url: "https://scalars.graphql.org/chillicream/duration.html") diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/Issue6970ReproTests.Schema_With_IDictionary_String_Object_Output_Field_Builds.snap b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/Issue6970ReproTests.Schema_With_IDictionary_String_Object_Output_Field_Builds.snap index 390a69193a3..6a3aeea4f77 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/Issue6970ReproTests.Schema_With_IDictionary_String_Object_Output_Field_Builds.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/Issue6970ReproTests.Schema_With_IDictionary_String_Object_Output_Field_Builds.snap @@ -11,7 +11,10 @@ type Query { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `Any` scalar type represents any valid GraphQL value." scalar Any @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalDateTimeTypeTests.LocalDateTime_As_Argument_Schema.snap b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalDateTimeTypeTests.LocalDateTime_As_Argument_Schema.snap index cbb93e6d505..1272cc17bf5 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalDateTimeTypeTests.LocalDateTime_As_Argument_Schema.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalDateTimeTypeTests.LocalDateTime_As_Argument_Schema.snap @@ -11,7 +11,11 @@ type QueryDateTime1 { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `LocalDateTime` scalar type represents a date and time without time zone information." -scalar LocalDateTime @specifiedBy(url: "https://scalars.graphql.org/chillicream/local-date-time.html") +scalar LocalDateTime + @specifiedBy(url: "https://scalars.graphql.org/chillicream/local-date-time.html") diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalDateTimeTypeTests.LocalDateTime_As_ReturnValue_Schema.snap b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalDateTimeTypeTests.LocalDateTime_As_ReturnValue_Schema.snap index 64312f1b560..a1d2e934192 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalDateTimeTypeTests.LocalDateTime_As_ReturnValue_Schema.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalDateTimeTypeTests.LocalDateTime_As_ReturnValue_Schema.snap @@ -11,7 +11,11 @@ type QueryDateTime2 { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `LocalDateTime` scalar type represents a date and time without time zone information." -scalar LocalDateTime @specifiedBy(url: "https://scalars.graphql.org/chillicream/local-date-time.html") +scalar LocalDateTime + @specifiedBy(url: "https://scalars.graphql.org/chillicream/local-date-time.html") diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalDateTypeTests.DateOnly_As_Argument_Schema.snap b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalDateTypeTests.DateOnly_As_Argument_Schema.snap index c38b86bcc30..3eadee36d8d 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalDateTypeTests.DateOnly_As_Argument_Schema.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalDateTypeTests.DateOnly_As_Argument_Schema.snap @@ -11,7 +11,11 @@ type QueryDateTime1 { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `LocalDate` scalar type represents a date without time or time zone information." -scalar LocalDate @specifiedBy(url: "https://scalars.graphql.org/chillicream/local-date.html") +scalar LocalDate + @specifiedBy(url: "https://scalars.graphql.org/chillicream/local-date.html") diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalDateTypeTests.DateOnly_As_ReturnValue_Schema.snap b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalDateTypeTests.DateOnly_As_ReturnValue_Schema.snap index c591f35a8dc..1a88752726e 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalDateTypeTests.DateOnly_As_ReturnValue_Schema.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalDateTypeTests.DateOnly_As_ReturnValue_Schema.snap @@ -11,7 +11,11 @@ type QueryDateTime2 { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `LocalDate` scalar type represents a date without time or time zone information." -scalar LocalDate @specifiedBy(url: "https://scalars.graphql.org/chillicream/local-date.html") +scalar LocalDate + @specifiedBy(url: "https://scalars.graphql.org/chillicream/local-date.html") diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalTimeTypeTests.TimeOnly_As_Argument_Schema.snap b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalTimeTypeTests.TimeOnly_As_Argument_Schema.snap index 3e9463f3777..dd8e8316692 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalTimeTypeTests.TimeOnly_As_Argument_Schema.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalTimeTypeTests.TimeOnly_As_Argument_Schema.snap @@ -11,7 +11,11 @@ type QueryDateTime1 { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `LocalTime` scalar type represents a time of day without date or time zone information." -scalar LocalTime @specifiedBy(url: "https://scalars.graphql.org/chillicream/local-time.html") +scalar LocalTime + @specifiedBy(url: "https://scalars.graphql.org/chillicream/local-time.html") diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalTimeTypeTests.TimeOnly_As_ReturnValue_Schema.snap b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalTimeTypeTests.TimeOnly_As_ReturnValue_Schema.snap index 69d0574921a..f48a6ab22c6 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalTimeTypeTests.TimeOnly_As_ReturnValue_Schema.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/__snapshots__/LocalTimeTypeTests.TimeOnly_As_ReturnValue_Schema.snap @@ -11,7 +11,11 @@ type QueryDateTime2 { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `LocalTime` scalar type represents a time of day without date or time zone information." -scalar LocalTime @specifiedBy(url: "https://scalars.graphql.org/chillicream/local-time.html") +scalar LocalTime + @specifiedBy(url: "https://scalars.graphql.org/chillicream/local-time.html") diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/DescriptionTests.Schema_With_All_Possible_Descriptions.graphql b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/DescriptionTests.Schema_With_All_Possible_Descriptions.graphql index 135e573b3d5..23071624275 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/DescriptionTests.Schema_With_All_Possible_Descriptions.graphql +++ b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/DescriptionTests.Schema_With_All_Possible_Descriptions.graphql @@ -20,7 +20,7 @@ interface SomeInterface { comment """ fieldMulti: String - fieldWithArgs("Single line comment" arg1: String! """ + fieldWithArgs("Single line comment" arg1: String!, """ Multi line comment """ arg2: String!): String @@ -33,7 +33,7 @@ comment type OtherObjectType implements SomeInterface & OtherInterface { field: String fieldMulti: String - fieldWithArgs(arg1: String! arg2: String!): String + fieldWithArgs(arg1: String!, arg2: String!): String } """ @@ -48,7 +48,7 @@ type Query { comment """ outputFieldMulti: String - outputFieldWithArgs("Single line comment" arg1: SomeInput! """ + outputFieldWithArgs("Single line comment" arg1: SomeInput!, """ Multi line comment """ arg2: OtherInput!): String @@ -117,7 +117,7 @@ enum SomeEnum { directive @oneOf on INPUT_OBJECT "Single line comment" -directive @other("Single line comment" arg1: String """ +directive @other("Single line comment" arg1: String, """ Multi line comment """ arg2: String) on FIELD @@ -126,7 +126,7 @@ comment Multi line comment """ -directive @some("Single line comment" arg1: String """ +directive @some("Single line comment" arg1: String, """ Multi line comment """ arg2: String) on FIELD diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/DirectiveTests.Directive_Query_Directives_Are_Not_Removed_Without_Usage.snap b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/DirectiveTests.Directive_Query_Directives_Are_Not_Removed_Without_Usage.snap index 69ddc2257ab..48b5281e0bf 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/DirectiveTests.Directive_Query_Directives_Are_Not_Removed_Without_Usage.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/DirectiveTests.Directive_Query_Directives_Are_Not_Removed_Without_Usage.snap @@ -10,4 +10,4 @@ input FooChildInput { bar: String! } -directive @Foo(bar: String! child: FooChildInput!) on QUERY +directive @Foo(bar: String!, child: FooChildInput!) on QUERY diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/DirectiveTypeTests.AnnotationBased_Deprecated_NullableArguments_Valid.graphql b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/DirectiveTypeTests.AnnotationBased_Deprecated_NullableArguments_Valid.graphql index d18fe386f6b..f04b35aad36 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/DirectiveTypeTests.AnnotationBased_Deprecated_NullableArguments_Valid.graphql +++ b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/DirectiveTypeTests.AnnotationBased_Deprecated_NullableArguments_Valid.graphql @@ -6,4 +6,8 @@ type Query { bar: String @deprecated2 } -directive @deprecated2(obsoleteWithReason: Int @deprecated(reason: "reason") obsolete: Int @deprecated deprecated: Int @deprecated(reason: "reason")) on FIELD_DEFINITION +directive @deprecated2( + obsoleteWithReason: Int @deprecated(reason: "reason") + obsolete: Int @deprecated + deprecated: Int @deprecated(reason: "reason") +) on FIELD_DEFINITION diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/DirectiveTypeTests.Infer_Directive_Argument_Defaults_From_Properties.snap b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/DirectiveTypeTests.Infer_Directive_Argument_Defaults_From_Properties.snap index 3a7d2eac968..846d22f284c 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/DirectiveTypeTests.Infer_Directive_Argument_Defaults_From_Properties.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/DirectiveTypeTests.Infer_Directive_Argument_Defaults_From_Properties.snap @@ -6,4 +6,4 @@ type Query @foo { foo: String } -directive @foo(argument1: String = "abc" argument2: String) on OBJECT +directive @foo(argument1: String = "abc", argument2: String) on OBJECT diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/ObjectTypeTests.CreateObjectTypeWithXmlDocumentation.snap b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/ObjectTypeTests.CreateObjectTypeWithXmlDocumentation.snap index a24cfcc4c37..67606bc8253 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/ObjectTypeTests.CreateObjectTypeWithXmlDocumentation.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/ObjectTypeTests.CreateObjectTypeWithXmlDocumentation.snap @@ -1,4 +1,4 @@ -schema { +schema { query: QueryWithDocumentation } diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/ObjectTypeTests.Infer_Argument_Default_Values.snap b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/ObjectTypeTests.Infer_Argument_Default_Values.snap index 3426fd8a88b..ab1f9ddd513 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/ObjectTypeTests.Infer_Argument_Default_Values.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/ObjectTypeTests.Infer_Argument_Default_Values.snap @@ -3,6 +3,6 @@ schema { } type QueryWithArgumentDefaults { - field1(a: String b: String! = "abc"): String - field2(a: String! b: String = "abc"): String + field1(a: String, b: String! = "abc"): String + field2(a: String!, b: String = "abc"): String } diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_Attribute_Schema_Is_Generated_Correctly.md b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_Attribute_Schema_Is_Generated_Correctly.md index e23837b66fe..57b45518cc8 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_Attribute_Schema_Is_Generated_Correctly.md +++ b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_Attribute_Schema_Is_Generated_Correctly.md @@ -8,8 +8,8 @@ schema { } type MyMutation { - writeBoolean(userId: String! message: Boolean!): Boolean! - writeMessage(userId: String! message: String!): String! + writeBoolean(userId: String!, message: Boolean!): Boolean! + writeMessage(userId: String!, message: String!): String! writeSysMessage(message: String!): String! writeFixedMessage(message: String!): String! writeOnInferTopic(message: String!): String! diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/TypeFactoryTests.CreateObjectTypeDescriptions.snap b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/TypeFactoryTests.CreateObjectTypeDescriptions.snap index cf5e7737746..74a0a139b15 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/TypeFactoryTests.CreateObjectTypeDescriptions.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/TypeFactoryTests.CreateObjectTypeDescriptions.snap @@ -1,4 +1,4 @@ -schema { +schema { query: Simple } diff --git a/src/HotChocolate/Core/test/Types.Tests/__snapshots__/CodeFirstTests.Change_DefaultBinding_For_DateTime.snap b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/CodeFirstTests.Change_DefaultBinding_For_DateTime.snap index bfd4dc490ad..97f2ed9bf8b 100644 --- a/src/HotChocolate/Core/test/Types.Tests/__snapshots__/CodeFirstTests.Change_DefaultBinding_For_DateTime.snap +++ b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/CodeFirstTests.Change_DefaultBinding_For_DateTime.snap @@ -12,10 +12,15 @@ type QueryWithDateTime { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `Date` scalar type represents a date in UTC." -scalar Date @specifiedBy(url: "https://scalars.graphql.org/chillicream/date.html") +scalar Date + @specifiedBy(url: "https://scalars.graphql.org/chillicream/date.html") "The `DateTime` scalar type represents a date and time with time zone offset information." -scalar DateTime @specifiedBy(url: "https://scalars.graphql.org/chillicream/date-time.html") +scalar DateTime + @specifiedBy(url: "https://scalars.graphql.org/chillicream/date-time.html") diff --git a/src/HotChocolate/Core/test/Types.Tests/__snapshots__/CodeFirstTests.InferSchemaWithNonNullRefTypesAndGenerics.snap b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/CodeFirstTests.InferSchemaWithNonNullRefTypesAndGenerics.snap index b7c2405bb7e..2a6395897ce 100644 --- a/src/HotChocolate/Core/test/Types.Tests/__snapshots__/CodeFirstTests.InferSchemaWithNonNullRefTypesAndGenerics.snap +++ b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/CodeFirstTests.InferSchemaWithNonNullRefTypesAndGenerics.snap @@ -16,7 +16,14 @@ type GenericWrapperOfIPet { type QueryWithGenerics { pet(id: Int!): IPet - pets(arg1: Int arg2: Boolean arg3: Boolean arg4: String arg5: GenericWrapperOfStringInput arg6: GreetingsInput): GenericWrapperOfIPet! + pets( + arg1: Int + arg2: Boolean + arg3: Boolean + arg4: String + arg5: GenericWrapperOfStringInput + arg6: GreetingsInput + ): GenericWrapperOfIPet! } input GenericWrapperOfStringInput { diff --git a/src/HotChocolate/Core/test/Types.Tests/__snapshots__/NamingConventionTests.PureCodeFirst_NamingConvention_RenameArgument.snap b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/NamingConventionTests.PureCodeFirst_NamingConvention_RenameArgument.snap index 6c0508ee52e..e6d637f084d 100644 --- a/src/HotChocolate/Core/test/Types.Tests/__snapshots__/NamingConventionTests.PureCodeFirst_NamingConvention_RenameArgument.snap +++ b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/NamingConventionTests.PureCodeFirst_NamingConvention_RenameArgument.snap @@ -6,7 +6,12 @@ schema { "GetTypeDescription" type MutationNamingConvention_Named { "GetMemberDescription" - mutationField_Named("GetArgumentDescription" mutationArgument_Named: Int! "GetArgumentDescription" complexArgumentMutation_Named: InputObjectNamingConventionInput_Named!): ObjectNamingConvention_Named! + mutationField_Named( + "GetArgumentDescription" + mutationArgument_Named: Int! + "GetArgumentDescription" + complexArgumentMutation_Named: InputObjectNamingConventionInput_Named! + ): ObjectNamingConvention_Named! } "GetTypeDescription" @@ -18,7 +23,12 @@ type ObjectNamingConvention_Named { "GetTypeDescription" type QueryNamingConvention_Named { "GetMemberDescription" - queryField_Named("GetArgumentDescription" queryArgument_Named: Int! "GetArgumentDescription" complexArgument_Named: InputObjectNamingConventionInput_Named!): ObjectNamingConvention_Named! + queryField_Named( + "GetArgumentDescription" + queryArgument_Named: Int! + "GetArgumentDescription" + complexArgument_Named: InputObjectNamingConventionInput_Named! + ): ObjectNamingConvention_Named! } "GetTypeDescription" diff --git a/src/HotChocolate/Core/test/Types.Tests/__snapshots__/NamingConventionTests.PureCodeFirst_NamingConvention_RenameArgument_RequestBuilder.snap b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/NamingConventionTests.PureCodeFirst_NamingConvention_RenameArgument_RequestBuilder.snap index 6c0508ee52e..e6d637f084d 100644 --- a/src/HotChocolate/Core/test/Types.Tests/__snapshots__/NamingConventionTests.PureCodeFirst_NamingConvention_RenameArgument_RequestBuilder.snap +++ b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/NamingConventionTests.PureCodeFirst_NamingConvention_RenameArgument_RequestBuilder.snap @@ -6,7 +6,12 @@ schema { "GetTypeDescription" type MutationNamingConvention_Named { "GetMemberDescription" - mutationField_Named("GetArgumentDescription" mutationArgument_Named: Int! "GetArgumentDescription" complexArgumentMutation_Named: InputObjectNamingConventionInput_Named!): ObjectNamingConvention_Named! + mutationField_Named( + "GetArgumentDescription" + mutationArgument_Named: Int! + "GetArgumentDescription" + complexArgumentMutation_Named: InputObjectNamingConventionInput_Named! + ): ObjectNamingConvention_Named! } "GetTypeDescription" @@ -18,7 +23,12 @@ type ObjectNamingConvention_Named { "GetTypeDescription" type QueryNamingConvention_Named { "GetMemberDescription" - queryField_Named("GetArgumentDescription" queryArgument_Named: Int! "GetArgumentDescription" complexArgument_Named: InputObjectNamingConventionInput_Named!): ObjectNamingConvention_Named! + queryField_Named( + "GetArgumentDescription" + queryArgument_Named: Int! + "GetArgumentDescription" + complexArgument_Named: InputObjectNamingConventionInput_Named! + ): ObjectNamingConvention_Named! } "GetTypeDescription" diff --git a/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SchemaFirstTests.SchemaFirst_Cursor_OffsetPaging.snap b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SchemaFirstTests.SchemaFirst_Cursor_OffsetPaging.snap index 8cf0a9fb8c4..80ba4b7d2a8 100644 --- a/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SchemaFirstTests.SchemaFirst_Cursor_OffsetPaging.snap +++ b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SchemaFirstTests.SchemaFirst_Cursor_OffsetPaging.snap @@ -1,4 +1,4 @@ -schema { +schema { query: Query } @@ -19,5 +19,5 @@ type ItemsCollectionSegment { } type Query { - items(skip: Int take: Int): ItemsCollectionSegment + items(skip: Int, take: Int): ItemsCollectionSegment } diff --git a/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SchemaFirstTests.SchemaFirst_Cursor_Paging.snap b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SchemaFirstTests.SchemaFirst_Cursor_Paging.snap index 8e02cf374ef..d3071c63718 100644 --- a/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SchemaFirstTests.SchemaFirst_Cursor_Paging.snap +++ b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SchemaFirstTests.SchemaFirst_Cursor_Paging.snap @@ -1,4 +1,4 @@ -schema { +schema { query: Query } @@ -33,5 +33,14 @@ type PageInfo { } type Query { - items("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): ItemsConnection + items( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): ItemsConnection } diff --git a/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SchemaFirstTests.SchemaFirst_Cursor_Paging_With_Objects.snap b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SchemaFirstTests.SchemaFirst_Cursor_Paging_With_Objects.snap index 89ef6d1e7f9..d7469af9941 100644 --- a/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SchemaFirstTests.SchemaFirst_Cursor_Paging_With_Objects.snap +++ b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SchemaFirstTests.SchemaFirst_Cursor_Paging_With_Objects.snap @@ -1,4 +1,4 @@ -schema { +schema { query: Query } @@ -37,5 +37,14 @@ type Person { } type Query { - items("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): ItemsConnection + items( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): ItemsConnection } diff --git a/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SchemaFirstTests.SchemaFirst_Cursor_Paging_With_Resolver.snap b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SchemaFirstTests.SchemaFirst_Cursor_Paging_With_Resolver.snap index 8e02cf374ef..d3071c63718 100644 --- a/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SchemaFirstTests.SchemaFirst_Cursor_Paging_With_Resolver.snap +++ b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SchemaFirstTests.SchemaFirst_Cursor_Paging_With_Resolver.snap @@ -1,4 +1,4 @@ -schema { +schema { query: Query } @@ -33,5 +33,14 @@ type PageInfo { } type Query { - items("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): ItemsConnection + items( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): ItemsConnection } diff --git a/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SchemaSerializerTests.SerializeSchemaWithMutationWithoutSubscription.snap b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SchemaSerializerTests.SerializeSchemaWithMutationWithoutSubscription.snap index de262ae56f2..e3acac86770 100644 --- a/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SchemaSerializerTests.SerializeSchemaWithMutationWithoutSubscription.snap +++ b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SchemaSerializerTests.SerializeSchemaWithMutationWithoutSubscription.snap @@ -1,4 +1,4 @@ -schema { +schema { query: Query mutation: Mutation } diff --git a/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SemanticNonNullTests.Pagination.snap b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SemanticNonNullTests.Pagination.snap index 39efb4b7ede..46ffb4b0661 100644 --- a/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SemanticNonNullTests.Pagination.snap +++ b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SemanticNonNullTests.Pagination.snap @@ -49,8 +49,17 @@ type PageInfo { } type QueryWithPagination { - cursorPagination("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): CursorPaginationConnection - offsetPagination(skip: Int take: Int): OffsetPaginationCollectionSegment + cursorPagination( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): CursorPaginationConnection + offsetPagination(skip: Int, take: Int): OffsetPaginationCollectionSegment } directive @semanticNonNull(levels: [Int!] = [ diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/CostSyntaxRewriterTests.Rewrite_DefaultWeights_RemovesCostDirectives.graphql b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/CostSyntaxRewriterTests.Rewrite_DefaultWeights_RemovesCostDirectives.graphql index 1489182a51e..88fa710dc6f 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/CostSyntaxRewriterTests.Rewrite_DefaultWeights_RemovesCostDirectives.graphql +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/CostSyntaxRewriterTests.Rewrite_DefaultWeights_RemovesCostDirectives.graphql @@ -11,7 +11,7 @@ type ElementType { } type Query { - compositeField(inputArg: Input listArg: [Scalar] scalarArg: Scalar): CompositeType + compositeField(inputArg: Input, listArg: [Scalar], scalarArg: Scalar): CompositeType } input Input { @@ -25,6 +25,9 @@ enum Enum { } "The purpose of the `cost` directive is to define a `weight` for GraphQL types, fields, and arguments. Static analysis can use these weights when calculating the overall cost of a query or response." -directive @cost("The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." weight: String!) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @cost( + "The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." + weight: String! +) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION scalar Scalar diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/CostSyntaxRewriterTests.Rewrite_NonDefaultWeights_DoesNotRemoveCostDirectives.graphql b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/CostSyntaxRewriterTests.Rewrite_NonDefaultWeights_DoesNotRemoveCostDirectives.graphql index a8e71505f1e..4ba6725bb8b 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/CostSyntaxRewriterTests.Rewrite_NonDefaultWeights_DoesNotRemoveCostDirectives.graphql +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/CostSyntaxRewriterTests.Rewrite_NonDefaultWeights_DoesNotRemoveCostDirectives.graphql @@ -11,7 +11,11 @@ type ElementType { } type Query { - compositeField(inputArg: Input @cost(weight: "0") listArg: [Scalar] @cost(weight: "0") scalarArg: Scalar @cost(weight: "1")): CompositeType @cost(weight: "0") + compositeField( + inputArg: Input @cost(weight: "0") + listArg: [Scalar] @cost(weight: "0") + scalarArg: Scalar @cost(weight: "1") + ): CompositeType @cost(weight: "0") } input Input { @@ -25,6 +29,9 @@ enum Enum @cost(weight: "1") { } "The purpose of the `cost` directive is to define a `weight` for GraphQL types, fields, and arguments. Static analysis can use these weights when calculating the overall cost of a query or response." -directive @cost("The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." weight: String!) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @cost( + "The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." + weight: String! +) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION scalar Scalar @cost(weight: "1") diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Do_Not_Apply_Defaults.graphql b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Do_Not_Apply_Defaults.graphql index 529d01bb859..3211186bf05 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Do_Not_Apply_Defaults.graphql +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Do_Not_Apply_Defaults.graphql @@ -26,7 +26,16 @@ type AuthorsEdge { type Book { title: String! - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } "A connection to a list of items." @@ -105,10 +114,42 @@ type PageInfo { } type Query { - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: BookFilterInput order: [BookSortInput!]): BooksConnection - booksWithTotalCount("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: BookFilterInput order: [BookSortInput!]): BooksTotalConnection - booksOffset(skip: Int take: Int where: BookFilterInput order: [BookSortInput!]): BooksOffsetCollectionSegment - booksOffsetWithTotalCount(skip: Int take: Int where: BookFilterInput order: [BookSortInput!]): BooksTotalCollectionSegment + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: BookFilterInput + order: [BookSortInput!] + ): BooksConnection + booksWithTotalCount( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: BookFilterInput + order: [BookSortInput!] + ): BooksTotalConnection + booksOffset( + skip: Int + take: Int + where: BookFilterInput + order: [BookSortInput!] + ): BooksOffsetCollectionSegment + booksOffsetWithTotalCount( + skip: Int + take: Int + where: BookFilterInput + order: [BookSortInput!] + ): BooksTotalCollectionSegment } input BookFilterInput { diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Do_Not_Use_Default_Page_Size_When_Default_Is_Specified.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Do_Not_Use_Default_Page_Size_When_Default_Is_Specified.md index 323bbbf4613..574fbedd928 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Do_Not_Use_Default_Page_Size_When_Default_Is_Specified.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Do_Not_Use_Default_Page_Size_When_Default_Is_Specified.md @@ -61,7 +61,17 @@ type AuthorsEdge { type Book { title: String! - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) } "A connection to a list of items." @@ -140,10 +150,50 @@ type PageInfo { } type Query { - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10")): BooksConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) @cost(weight: "10") - booksWithTotalCount("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10")): BooksTotalConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) @cost(weight: "10") - booksOffset(skip: Int take: Int where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10")): BooksOffsetCollectionSegment @listSize(assumedSize: 50, slicingArguments: ["take"], sizedFields: ["items"], requireOneSlicingArgument: false) @cost(weight: "10") - booksOffsetWithTotalCount(skip: Int take: Int where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10")): BooksTotalCollectionSegment @listSize(assumedSize: 50, slicingArguments: ["take"], sizedFields: ["items"], requireOneSlicingArgument: false) @cost(weight: "10") + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: BookFilterInput @cost(weight: "10") + order: [BookSortInput!] @cost(weight: "10") + ): BooksConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @cost(weight: "10") + booksWithTotalCount( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: BookFilterInput @cost(weight: "10") + order: [BookSortInput!] @cost(weight: "10") + ): BooksTotalConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @cost(weight: "10") + booksOffset( + skip: Int + take: Int + where: BookFilterInput @cost(weight: "10") + order: [BookSortInput!] @cost(weight: "10") + ): BooksOffsetCollectionSegment + @listSize(assumedSize: 50, slicingArguments: ["take"], sizedFields: ["items"], requireOneSlicingArgument: false) + @cost(weight: "10") + booksOffsetWithTotalCount( + skip: Int + take: Int + where: BookFilterInput @cost(weight: "10") + order: [BookSortInput!] @cost(weight: "10") + ): BooksTotalCollectionSegment + @listSize(assumedSize: 50, slicingArguments: ["take"], sizedFields: ["items"], requireOneSlicingArgument: false) + @cost(weight: "10") } input BookFilterInput { @@ -177,8 +227,22 @@ enum SortEnumType { } "The purpose of the `cost` directive is to define a `weight` for GraphQL types, fields, and arguments. Static analysis can use these weights when calculating the overall cost of a query or response." -directive @cost("The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." weight: String!) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @cost( + "The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." + weight: String! +) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION "The purpose of the `@listSize` directive is to either inform the static analysis about the size of returned lists (if that information is statically available), or to point the analysis to where to find that information." -directive @listSize("The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." assumedSize: Int "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." slicingArguments: [String!] "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." slicingArgumentDefaultValue: Int "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." sizedFields: [String!] "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." requireOneSlicingArgument: Boolean = true) on FIELD_DEFINITION +directive @listSize( + "The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." + assumedSize: Int + "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." + slicingArguments: [String!] + "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." + slicingArgumentDefaultValue: Int + "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." + sizedFields: [String!] + "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." + requireOneSlicingArgument: Boolean = true +) on FIELD_DEFINITION ``` diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Ensure_Paging_Defaults_Are_Applied.graphql b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Ensure_Paging_Defaults_Are_Applied.graphql index 756a6a64da6..464eb73548e 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Ensure_Paging_Defaults_Are_Applied.graphql +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Ensure_Paging_Defaults_Are_Applied.graphql @@ -26,7 +26,17 @@ type AuthorsEdge { type Book { title: String! - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"]) + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"]) } "A connection to a list of items." @@ -105,10 +115,50 @@ type PageInfo { } type Query { - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10")): BooksConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"]) @cost(weight: "10") - booksWithTotalCount("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10")): BooksTotalConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"]) @cost(weight: "10") - booksOffset(skip: Int take: Int where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10")): BooksOffsetCollectionSegment @listSize(assumedSize: 50, slicingArguments: ["take"], slicingArgumentDefaultValue: 10, sizedFields: ["items"]) @cost(weight: "10") - booksOffsetWithTotalCount(skip: Int take: Int where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10")): BooksTotalCollectionSegment @listSize(assumedSize: 50, slicingArguments: ["take"], slicingArgumentDefaultValue: 10, sizedFields: ["items"]) @cost(weight: "10") + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: BookFilterInput @cost(weight: "10") + order: [BookSortInput!] @cost(weight: "10") + ): BooksConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"]) + @cost(weight: "10") + booksWithTotalCount( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: BookFilterInput @cost(weight: "10") + order: [BookSortInput!] @cost(weight: "10") + ): BooksTotalConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"]) + @cost(weight: "10") + booksOffset( + skip: Int + take: Int + where: BookFilterInput @cost(weight: "10") + order: [BookSortInput!] @cost(weight: "10") + ): BooksOffsetCollectionSegment + @listSize(assumedSize: 50, slicingArguments: ["take"], slicingArgumentDefaultValue: 10, sizedFields: ["items"]) + @cost(weight: "10") + booksOffsetWithTotalCount( + skip: Int + take: Int + where: BookFilterInput @cost(weight: "10") + order: [BookSortInput!] @cost(weight: "10") + ): BooksTotalCollectionSegment + @listSize(assumedSize: 50, slicingArguments: ["take"], slicingArgumentDefaultValue: 10, sizedFields: ["items"]) + @cost(weight: "10") } input BookFilterInput { @@ -142,7 +192,21 @@ enum SortEnumType { } "The purpose of the `cost` directive is to define a `weight` for GraphQL types, fields, and arguments. Static analysis can use these weights when calculating the overall cost of a query or response." -directive @cost("The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." weight: String!) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @cost( + "The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." + weight: String! +) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION "The purpose of the `@listSize` directive is to either inform the static analysis about the size of returned lists (if that information is statically available), or to point the analysis to where to find that information." -directive @listSize("The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." assumedSize: Int "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." slicingArguments: [String!] "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." slicingArgumentDefaultValue: Int "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." sizedFields: [String!] "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." requireOneSlicingArgument: Boolean = true) on FIELD_DEFINITION +directive @listSize( + "The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." + assumedSize: Int + "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." + slicingArguments: [String!] + "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." + slicingArgumentDefaultValue: Int + "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." + sizedFields: [String!] + "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." + requireOneSlicingArgument: Boolean = true +) on FIELD_DEFINITION diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Filtering_Variable.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Filtering_Variable.md index 2f18bbf6ebe..34e752bec4e 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Filtering_Variable.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Filtering_Variable.md @@ -3,9 +3,7 @@ ## Operation ```graphql -query( - $where: BookFilterInput -) { +query($where: BookFilterInput) { books(where: $where) { nodes { title diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Single_Boundary_With_Variable.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Single_Boundary_With_Variable.md index 91e4a3d7bca..7af3b08e3ab 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Single_Boundary_With_Variable.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Single_Boundary_With_Variable.md @@ -3,9 +3,7 @@ ## Operation ```graphql -query( - $first: Int -) { +query($first: Int) { books(first: $first) { nodes { title diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Two_Boundaries_Mixed.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Two_Boundaries_Mixed.md index 4f2fa3a1802..92c8f2f2e98 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Two_Boundaries_Mixed.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Two_Boundaries_Mixed.md @@ -3,9 +3,7 @@ ## Operation ```graphql -query( - $first: Int -) { +query($first: Int) { books(first: $first, last: 1) { nodes { title diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Two_Boundaries_With_Variable.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Two_Boundaries_With_Variable.md index c90af86bc75..75415cb7373 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Two_Boundaries_With_Variable.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Two_Boundaries_With_Variable.md @@ -3,10 +3,7 @@ ## Operation ```graphql -query( - $first: Int - $last: Int -) { +query($first: Int, $last: Int) { books(first: $first, last: $last) { nodes { title diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Use_Default_Page_Size_When_Default_Is_Specified.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Use_Default_Page_Size_When_Default_Is_Specified.md index 67cce99fd7b..a797e64fcf4 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Use_Default_Page_Size_When_Default_Is_Specified.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Use_Default_Page_Size_When_Default_Is_Specified.md @@ -61,7 +61,17 @@ type AuthorsEdge { type Book { title: String! - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 2, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 2, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) } "A connection to a list of items." @@ -140,10 +150,50 @@ type PageInfo { } type Query { - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10")): BooksConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 2, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) @cost(weight: "10") - booksWithTotalCount("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10")): BooksTotalConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 2, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) @cost(weight: "10") - booksOffset(skip: Int take: Int where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10")): BooksOffsetCollectionSegment @listSize(assumedSize: 50, slicingArguments: ["take"], slicingArgumentDefaultValue: 2, sizedFields: ["items"], requireOneSlicingArgument: false) @cost(weight: "10") - booksOffsetWithTotalCount(skip: Int take: Int where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10")): BooksTotalCollectionSegment @listSize(assumedSize: 50, slicingArguments: ["take"], slicingArgumentDefaultValue: 2, sizedFields: ["items"], requireOneSlicingArgument: false) @cost(weight: "10") + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: BookFilterInput @cost(weight: "10") + order: [BookSortInput!] @cost(weight: "10") + ): BooksConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 2, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @cost(weight: "10") + booksWithTotalCount( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: BookFilterInput @cost(weight: "10") + order: [BookSortInput!] @cost(weight: "10") + ): BooksTotalConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 2, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @cost(weight: "10") + booksOffset( + skip: Int + take: Int + where: BookFilterInput @cost(weight: "10") + order: [BookSortInput!] @cost(weight: "10") + ): BooksOffsetCollectionSegment + @listSize(assumedSize: 50, slicingArguments: ["take"], slicingArgumentDefaultValue: 2, sizedFields: ["items"], requireOneSlicingArgument: false) + @cost(weight: "10") + booksOffsetWithTotalCount( + skip: Int + take: Int + where: BookFilterInput @cost(weight: "10") + order: [BookSortInput!] @cost(weight: "10") + ): BooksTotalCollectionSegment + @listSize(assumedSize: 50, slicingArguments: ["take"], slicingArgumentDefaultValue: 2, sizedFields: ["items"], requireOneSlicingArgument: false) + @cost(weight: "10") } input BookFilterInput { @@ -177,8 +227,22 @@ enum SortEnumType { } "The purpose of the `cost` directive is to define a `weight` for GraphQL types, fields, and arguments. Static analysis can use these weights when calculating the overall cost of a query or response." -directive @cost("The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." weight: String!) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @cost( + "The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." + weight: String! +) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION "The purpose of the `@listSize` directive is to either inform the static analysis about the size of returned lists (if that information is statically available), or to point the analysis to where to find that information." -directive @listSize("The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." assumedSize: Int "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." slicingArguments: [String!] "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." slicingArgumentDefaultValue: Int "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." sizedFields: [String!] "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." requireOneSlicingArgument: Boolean = true) on FIELD_DEFINITION +directive @listSize( + "The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." + assumedSize: Int + "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." + slicingArguments: [String!] + "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." + slicingArgumentDefaultValue: Int + "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." + sizedFields: [String!] + "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." + requireOneSlicingArgument: Boolean = true +) on FIELD_DEFINITION ``` diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SchemaIntegrationTests.Rewrite_DefaultWeights_RemovesCostDirectives.graphql b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SchemaIntegrationTests.Rewrite_DefaultWeights_RemovesCostDirectives.graphql index 1489182a51e..88fa710dc6f 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SchemaIntegrationTests.Rewrite_DefaultWeights_RemovesCostDirectives.graphql +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SchemaIntegrationTests.Rewrite_DefaultWeights_RemovesCostDirectives.graphql @@ -11,7 +11,7 @@ type ElementType { } type Query { - compositeField(inputArg: Input listArg: [Scalar] scalarArg: Scalar): CompositeType + compositeField(inputArg: Input, listArg: [Scalar], scalarArg: Scalar): CompositeType } input Input { @@ -25,6 +25,9 @@ enum Enum { } "The purpose of the `cost` directive is to define a `weight` for GraphQL types, fields, and arguments. Static analysis can use these weights when calculating the overall cost of a query or response." -directive @cost("The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." weight: String!) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @cost( + "The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." + weight: String! +) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION scalar Scalar diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SchemaIntegrationTests.Rewrite_NonDefaultWeights_DoesNotRemoveCostDirectives.graphql b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SchemaIntegrationTests.Rewrite_NonDefaultWeights_DoesNotRemoveCostDirectives.graphql index a8e71505f1e..4ba6725bb8b 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SchemaIntegrationTests.Rewrite_NonDefaultWeights_DoesNotRemoveCostDirectives.graphql +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SchemaIntegrationTests.Rewrite_NonDefaultWeights_DoesNotRemoveCostDirectives.graphql @@ -11,7 +11,11 @@ type ElementType { } type Query { - compositeField(inputArg: Input @cost(weight: "0") listArg: [Scalar] @cost(weight: "0") scalarArg: Scalar @cost(weight: "1")): CompositeType @cost(weight: "0") + compositeField( + inputArg: Input @cost(weight: "0") + listArg: [Scalar] @cost(weight: "0") + scalarArg: Scalar @cost(weight: "1") + ): CompositeType @cost(weight: "0") } input Input { @@ -25,6 +29,9 @@ enum Enum @cost(weight: "1") { } "The purpose of the `cost` directive is to define a `weight` for GraphQL types, fields, and arguments. Static analysis can use these weights when calculating the overall cost of a query or response." -directive @cost("The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." weight: String!) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @cost( + "The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." + weight: String! +) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION scalar Scalar @cost(weight: "1") diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SlicingArgumentsTests.SlicingArgumentDefaultValue_Inferred_From_DefaultPageSize.graphql b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SlicingArgumentsTests.SlicingArgumentDefaultValue_Inferred_From_DefaultPageSize.graphql index b7ee2893b25..f14145281d1 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SlicingArgumentsTests.SlicingArgumentDefaultValue_Inferred_From_DefaultPageSize.graphql +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SlicingArgumentsTests.SlicingArgumentDefaultValue_Inferred_From_DefaultPageSize.graphql @@ -33,8 +33,29 @@ type PageInfo { } type Query2 { - foos("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FoosConnection @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 42, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + foos( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FoosConnection + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 42, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) } "The purpose of the `@listSize` directive is to either inform the static analysis about the size of returned lists (if that information is statically available), or to point the analysis to where to find that information." -directive @listSize("The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." assumedSize: Int "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." slicingArguments: [String!] "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." slicingArgumentDefaultValue: Int "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." sizedFields: [String!] "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." requireOneSlicingArgument: Boolean = true) on FIELD_DEFINITION +directive @listSize( + "The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." + assumedSize: Int + "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." + slicingArguments: [String!] + "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." + slicingArgumentDefaultValue: Int + "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." + sizedFields: [String!] + "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." + requireOneSlicingArgument: Boolean = true +) on FIELD_DEFINITION diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SlicingArgumentsTests.SlicingArgumentDefaultValue_ListSizeAttribute_HasPrecedenceOver_DefaultPageSize.graphql b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SlicingArgumentsTests.SlicingArgumentDefaultValue_ListSizeAttribute_HasPrecedenceOver_DefaultPageSize.graphql index 0a517e20a87..7ff77f4e787 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SlicingArgumentsTests.SlicingArgumentDefaultValue_ListSizeAttribute_HasPrecedenceOver_DefaultPageSize.graphql +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SlicingArgumentsTests.SlicingArgumentDefaultValue_ListSizeAttribute_HasPrecedenceOver_DefaultPageSize.graphql @@ -33,8 +33,29 @@ type PageInfo { } type Query3 { - foos("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FoosConnection @listSize(assumedSize: 10, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 999, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + foos( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FoosConnection + @listSize(assumedSize: 10, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 999, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) } "The purpose of the `@listSize` directive is to either inform the static analysis about the size of returned lists (if that information is statically available), or to point the analysis to where to find that information." -directive @listSize("The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." assumedSize: Int "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." slicingArguments: [String!] "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." slicingArgumentDefaultValue: Int "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." sizedFields: [String!] "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." requireOneSlicingArgument: Boolean = true) on FIELD_DEFINITION +directive @listSize( + "The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." + assumedSize: Int + "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." + slicingArguments: [String!] + "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." + slicingArgumentDefaultValue: Int + "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." + sizedFields: [String!] + "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." + requireOneSlicingArgument: Boolean = true +) on FIELD_DEFINITION diff --git a/src/HotChocolate/Data/test/Data.EntityFramework.Tests/__snapshots__/UseDbContextTests.Infer_Schema_From_IQueryable_Fields.snap b/src/HotChocolate/Data/test/Data.EntityFramework.Tests/__snapshots__/UseDbContextTests.Infer_Schema_From_IQueryable_Fields.snap index 5317a17e3a5..7a12c85e1cc 100644 --- a/src/HotChocolate/Data/test/Data.EntityFramework.Tests/__snapshots__/UseDbContextTests.Infer_Schema_From_IQueryable_Fields.snap +++ b/src/HotChocolate/Data/test/Data.EntityFramework.Tests/__snapshots__/UseDbContextTests.Infer_Schema_From_IQueryable_Fields.snap @@ -97,12 +97,56 @@ type Query { authors: [Author!]! author: Author! authorSync: Author - authorOffsetPaging(skip: Int take: Int where: AuthorFilterInput order: [AuthorSortInput!]): AuthorOffsetPagingCollectionSegment - authorOffsetPagingExecutable(skip: Int take: Int where: AuthorFilterInput order: [AuthorSortInput!]): AuthorOffsetPagingExecutableCollectionSegment - authorCursorPagingExecutable("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: AuthorFilterInput order: [AuthorSortInput!]): AuthorCursorPagingExecutableConnection - authorCursorPaging("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorCursorPagingConnection - queryableExtensionsCursor("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): QueryableExtensionsCursorConnection - queryableExtensionsOffset(skip: Int take: Int where: AuthorFilterInput order: [AuthorSortInput!]): QueryableExtensionsOffsetCollectionSegment + authorOffsetPaging( + skip: Int + take: Int + where: AuthorFilterInput + order: [AuthorSortInput!] + ): AuthorOffsetPagingCollectionSegment + authorOffsetPagingExecutable( + skip: Int + take: Int + where: AuthorFilterInput + order: [AuthorSortInput!] + ): AuthorOffsetPagingExecutableCollectionSegment + authorCursorPagingExecutable( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: AuthorFilterInput + order: [AuthorSortInput!] + ): AuthorCursorPagingExecutableConnection + authorCursorPaging( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorCursorPagingConnection + queryableExtensionsCursor( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): QueryableExtensionsCursorConnection + queryableExtensionsOffset( + skip: Int + take: Int + where: AuthorFilterInput + order: [AuthorSortInput!] + ): QueryableExtensionsOffsetCollectionSegment } "A connection to a list of items." diff --git a/src/HotChocolate/Data/test/Data.EntityFramework.Tests/__snapshots__/UseDbContextTests.Infer_Schema_From_IQueryable_Task_Fields.snap b/src/HotChocolate/Data/test/Data.EntityFramework.Tests/__snapshots__/UseDbContextTests.Infer_Schema_From_IQueryable_Task_Fields.snap index edc1522ecc9..17aa65e777b 100644 --- a/src/HotChocolate/Data/test/Data.EntityFramework.Tests/__snapshots__/UseDbContextTests.Infer_Schema_From_IQueryable_Task_Fields.snap +++ b/src/HotChocolate/Data/test/Data.EntityFramework.Tests/__snapshots__/UseDbContextTests.Infer_Schema_From_IQueryable_Task_Fields.snap @@ -95,10 +95,40 @@ type PageInfo { type QueryTask { authors: [Author!]! - authorOffsetPaging(skip: Int take: Int where: AuthorFilterInput order: [AuthorSortInput!]): AuthorOffsetPagingCollectionSegment - authorOffsetPagingExecutable(skip: Int take: Int where: AuthorFilterInput order: [AuthorSortInput!]): AuthorOffsetPagingExecutableCollectionSegment - authorCursorPagingExecutable("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: AuthorFilterInput order: [AuthorSortInput!]): AuthorCursorPagingExecutableConnection - authorCursorPaging("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorCursorPagingConnection + authorOffsetPaging( + skip: Int + take: Int + where: AuthorFilterInput + order: [AuthorSortInput!] + ): AuthorOffsetPagingCollectionSegment + authorOffsetPagingExecutable( + skip: Int + take: Int + where: AuthorFilterInput + order: [AuthorSortInput!] + ): AuthorOffsetPagingExecutableCollectionSegment + authorCursorPagingExecutable( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: AuthorFilterInput + order: [AuthorSortInput!] + ): AuthorCursorPagingExecutableConnection + authorCursorPaging( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorCursorPagingConnection } input AuthorFilterInput { diff --git a/src/HotChocolate/Data/test/Data.EntityFramework.Tests/__snapshots__/UseDbContextTests.Infer_Schema_From_IQueryable_ValueTask_Fields.snap b/src/HotChocolate/Data/test/Data.EntityFramework.Tests/__snapshots__/UseDbContextTests.Infer_Schema_From_IQueryable_ValueTask_Fields.snap index 9b174e18fe1..b66e873d5be 100644 --- a/src/HotChocolate/Data/test/Data.EntityFramework.Tests/__snapshots__/UseDbContextTests.Infer_Schema_From_IQueryable_ValueTask_Fields.snap +++ b/src/HotChocolate/Data/test/Data.EntityFramework.Tests/__snapshots__/UseDbContextTests.Infer_Schema_From_IQueryable_ValueTask_Fields.snap @@ -95,10 +95,40 @@ type PageInfo { type QueryValueTask { authors: [Author!]! - authorOffsetPaging(skip: Int take: Int where: AuthorFilterInput order: [AuthorSortInput!]): AuthorOffsetPagingCollectionSegment - authorOffsetPagingExecutable(skip: Int take: Int where: AuthorFilterInput order: [AuthorSortInput!]): AuthorOffsetPagingExecutableCollectionSegment - authorCursorPagingExecutable("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: AuthorFilterInput order: [AuthorSortInput!]): AuthorCursorPagingExecutableConnection - authorCursorPaging("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorCursorPagingConnection + authorOffsetPaging( + skip: Int + take: Int + where: AuthorFilterInput + order: [AuthorSortInput!] + ): AuthorOffsetPagingCollectionSegment + authorOffsetPagingExecutable( + skip: Int + take: Int + where: AuthorFilterInput + order: [AuthorSortInput!] + ): AuthorOffsetPagingExecutableCollectionSegment + authorCursorPagingExecutable( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: AuthorFilterInput + order: [AuthorSortInput!] + ): AuthorCursorPagingExecutableConnection + authorCursorPaging( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorCursorPagingConnection } input AuthorFilterInput { diff --git a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Multi_Expression.md b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Multi_Expression.md index 1f1690457b3..d6aef0e50c8 100644 --- a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Multi_Expression.md +++ b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Multi_Expression.md @@ -3,24 +3,29 @@ ## SQL ```text -.param set @__keys_0 '[1]' -SELECT "b"."Id", "b"."DisplayName", "b"."Name", "b"."Details_Country_Name" -FROM "Brands" AS "b" -WHERE "b"."Id" IN ( - SELECT "k"."value" - FROM json_each(@__keys_0) AS "k" -) AND "b"."Name" LIKE 'Brand%' AND "b"."Name" LIKE '%0' ``` ## Result ```json { - "data": { - "multiFilterExpression": { - "name": "Brand0" + "errors": [ + { + "message": "Unexpected Execution Error", + "path": [ + "multiFilterExpression" + ], + "extensions": { + "exception": { + "message": "The LINQ expression 'DbSet()\n .Where(b => __keys_0\n .Contains(b.Id))\n .Where(b => b.Name.StartsWith(\"Brand\") && b.Name.EndsWith(0))' could not be translated. Additional information: Translation of method 'string.EndsWith' failed. If this method can be mapped to your custom function, see https://go.microsoft.com/fwlink/?linkid=2132413 for more information. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.", + "stackTrace": " at Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitor.Translate(Expression expression)\n at Microsoft.EntityFrameworkCore.Query.RelationalQueryableMethodTranslatingExpressionVisitor.Translate(Expression expression)\n at Microsoft.EntityFrameworkCore.Query.QueryCompilationContext.CreateQueryExecutor[TResult](Expression query)\n at Microsoft.EntityFrameworkCore.Storage.Database.CompileQuery[TResult](Expression query, Boolean async)\n at Microsoft.EntityFrameworkCore.Query.Internal.QueryCompiler.CompileQueryCore[TResult](IDatabase database, Expression query, IModel model, Boolean async)\n at Microsoft.EntityFrameworkCore.Query.Internal.QueryCompiler.<>c__DisplayClass9_0`1.b__0()\n at Microsoft.EntityFrameworkCore.Query.Internal.CompiledQueryCache.GetOrAddQuery[TResult](Object cacheKey, Func`1 compiler)\n at Microsoft.EntityFrameworkCore.Query.Internal.QueryCompiler.Execute[TResult](Expression query)\n at Microsoft.EntityFrameworkCore.Query.Internal.EntityQueryProvider.Execute[TResult](Expression expression)\n at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToQueryString(IQueryable source)\n at HotChocolate.Data.Predicates.DataLoaderTests.BrandByIdDataLoader.LoadBatchAsync(IReadOnlyList`1 keys, DataLoaderFetchContext`1 context, CancellationToken cancellationToken) in /workspaces/repo/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/DataLoaderTests.cs:line 275\n at GreenDonut.StatefulBatchDataLoader`2.FetchAsync(IReadOnlyList`1 keys, Memory`1 results, DataLoaderFetchContext`1 context, CancellationToken cancellationToken) in /workspaces/repo/src/GreenDonut/src/GreenDonut/BatchDataLoader.cs:line 116\n at GreenDonut.DataLoaderBase`2.<>c__DisplayClass34_0.<g__StartDispatchingAsync|0>d.MoveNext() in /workspaces/repo/src/GreenDonut/src/GreenDonut/DataLoaderBase.cs:line 372\n--- End of stack trace from previous location ---\n at HotChocolate.Data.Predicates.DataLoaderTests.Query.MultiFilterExpression(Int32 id, BrandByIdDataLoader brandById, CancellationToken cancellationToken) in /workspaces/repo/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/DataLoaderTests.cs:line 211\n at HotChocolate.Resolvers.Expressions.ExpressionHelper.AwaitTaskHelper[T](Task`1 task) in /workspaces/repo/src/HotChocolate/Core/src/Types/Resolvers/Expressions/ExpressionHelper.cs:line 16\n at HotChocolate.Types.Helpers.FieldMiddlewareCompiler.<>c__DisplayClass9_0.<b__0>d.MoveNext() in /workspaces/repo/src/HotChocolate/Core/src/Types/Types/Helpers/FieldMiddlewareCompiler.cs:line 127\n--- End of stack trace from previous location ---\n at HotChocolate.Execution.Processing.Tasks.ResolverTask.ExecuteResolverPipelineAsync(CancellationToken cancellationToken) in /workspaces/repo/src/HotChocolate/Core/src/Types/Execution/Processing/Tasks/ResolverTask.Execute.cs:line 135\n at HotChocolate.Execution.Processing.Tasks.ResolverTask.TryExecuteAsync(CancellationToken cancellationToken) in /workspaces/repo/src/HotChocolate/Core/src/Types/Execution/Processing/Tasks/ResolverTask.Execute.cs:line 81" + } + } } + ], + "data": { + "multiFilterExpression": null } } ``` diff --git a/src/HotChocolate/Data/test/Data.Filters.Tests/Expression/__snapshots__/QueryableFilterVisitorComparableTests.Overwrite_Comparable_Filter_Type_With_Attribute.graphql b/src/HotChocolate/Data/test/Data.Filters.Tests/Expression/__snapshots__/QueryableFilterVisitorComparableTests.Overwrite_Comparable_Filter_Type_With_Attribute.graphql index e3ff6cb6662..4265536ec2d 100644 --- a/src/HotChocolate/Data/test/Data.Filters.Tests/Expression/__snapshots__/QueryableFilterVisitorComparableTests.Overwrite_Comparable_Filter_Type_With_Attribute.graphql +++ b/src/HotChocolate/Data/test/Data.Filters.Tests/Expression/__snapshots__/QueryableFilterVisitorComparableTests.Overwrite_Comparable_Filter_Type_With_Attribute.graphql @@ -28,7 +28,11 @@ input ShortOperationFilterInput { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `Short` scalar type represents a signed 16-bit integer." -scalar Short @specifiedBy(url: "https://scalars.graphql.org/chillicream/short.html") +scalar Short + @specifiedBy(url: "https://scalars.graphql.org/chillicream/short.html") diff --git a/src/HotChocolate/Data/test/Data.Filters.Tests/Expression/__snapshots__/QueryableFilterVisitorEnumTests.Overwrite_Enum_Filter_Type_With_Attribute.graphql b/src/HotChocolate/Data/test/Data.Filters.Tests/Expression/__snapshots__/QueryableFilterVisitorEnumTests.Overwrite_Enum_Filter_Type_With_Attribute.graphql index 821a6bdf563..973eba95af4 100644 --- a/src/HotChocolate/Data/test/Data.Filters.Tests/Expression/__snapshots__/QueryableFilterVisitorEnumTests.Overwrite_Enum_Filter_Type_With_Attribute.graphql +++ b/src/HotChocolate/Data/test/Data.Filters.Tests/Expression/__snapshots__/QueryableFilterVisitorEnumTests.Overwrite_Enum_Filter_Type_With_Attribute.graphql @@ -28,7 +28,11 @@ input ShortOperationFilterInput { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `Short` scalar type represents a signed 16-bit integer." -scalar Short @specifiedBy(url: "https://scalars.graphql.org/chillicream/short.html") +scalar Short + @specifiedBy(url: "https://scalars.graphql.org/chillicream/short.html") diff --git a/src/HotChocolate/Data/test/Data.Filters.Tests/Types/__snapshots__/ComparableOperationInputTests.Create_Implicit_Operation.graphql b/src/HotChocolate/Data/test/Data.Filters.Tests/Types/__snapshots__/ComparableOperationInputTests.Create_Implicit_Operation.graphql index 0ae937d2a0c..6f2b7f99213 100644 --- a/src/HotChocolate/Data/test/Data.Filters.Tests/Types/__snapshots__/ComparableOperationInputTests.Create_Implicit_Operation.graphql +++ b/src/HotChocolate/Data/test/Data.Filters.Tests/Types/__snapshots__/ComparableOperationInputTests.Create_Implicit_Operation.graphql @@ -330,25 +330,34 @@ enum FooBar { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `Decimal` scalar type represents a decimal floating-point number with high precision." -scalar Decimal @specifiedBy(url: "https://scalars.graphql.org/chillicream/decimal.html") +scalar Decimal + @specifiedBy(url: "https://scalars.graphql.org/chillicream/decimal.html") "The `LocalDate` scalar type represents a date without time or time zone information." -scalar LocalDate @specifiedBy(url: "https://scalars.graphql.org/chillicream/local-date.html") +scalar LocalDate + @specifiedBy(url: "https://scalars.graphql.org/chillicream/local-date.html") "The `LocalTime` scalar type represents a time of day without date or time zone information." -scalar LocalTime @specifiedBy(url: "https://scalars.graphql.org/chillicream/local-time.html") +scalar LocalTime + @specifiedBy(url: "https://scalars.graphql.org/chillicream/local-time.html") "The `Long` scalar type represents a signed 64-bit integer." -scalar Long @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") +scalar Long + @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") "The `Short` scalar type represents a signed 16-bit integer." -scalar Short @specifiedBy(url: "https://scalars.graphql.org/chillicream/short.html") +scalar Short + @specifiedBy(url: "https://scalars.graphql.org/chillicream/short.html") "The `URI` scalar type represents a Uniform Resource Identifier (URI) as defined by RFC 3986." scalar URI @specifiedBy(url: "https://scalars.graphql.org/chillicream/uri.html") "The `UnsignedByte` scalar type represents an unsigned 8-bit integer." -scalar UnsignedByte @specifiedBy(url: "https://scalars.graphql.org/chillicream/unsigned-byte.html") +scalar UnsignedByte + @specifiedBy(url: "https://scalars.graphql.org/chillicream/unsigned-byte.html") diff --git a/src/HotChocolate/Data/test/Data.Filters.Tests/Types/__snapshots__/ComparableOperationInputTests.Create_Implicit_Operation_Normalized.graphql b/src/HotChocolate/Data/test/Data.Filters.Tests/Types/__snapshots__/ComparableOperationInputTests.Create_Implicit_Operation_Normalized.graphql index 5323083b9db..748ba25d313 100644 --- a/src/HotChocolate/Data/test/Data.Filters.Tests/Types/__snapshots__/ComparableOperationInputTests.Create_Implicit_Operation_Normalized.graphql +++ b/src/HotChocolate/Data/test/Data.Filters.Tests/Types/__snapshots__/ComparableOperationInputTests.Create_Implicit_Operation_Normalized.graphql @@ -180,25 +180,34 @@ enum FooBar { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `Decimal` scalar type represents a decimal floating-point number with high precision." -scalar Decimal @specifiedBy(url: "https://scalars.graphql.org/chillicream/decimal.html") +scalar Decimal + @specifiedBy(url: "https://scalars.graphql.org/chillicream/decimal.html") "The `LocalDate` scalar type represents a date without time or time zone information." -scalar LocalDate @specifiedBy(url: "https://scalars.graphql.org/chillicream/local-date.html") +scalar LocalDate + @specifiedBy(url: "https://scalars.graphql.org/chillicream/local-date.html") "The `LocalTime` scalar type represents a time of day without date or time zone information." -scalar LocalTime @specifiedBy(url: "https://scalars.graphql.org/chillicream/local-time.html") +scalar LocalTime + @specifiedBy(url: "https://scalars.graphql.org/chillicream/local-time.html") "The `Long` scalar type represents a signed 64-bit integer." -scalar Long @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") +scalar Long + @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") "The `Short` scalar type represents a signed 16-bit integer." -scalar Short @specifiedBy(url: "https://scalars.graphql.org/chillicream/short.html") +scalar Short + @specifiedBy(url: "https://scalars.graphql.org/chillicream/short.html") "The `URI` scalar type represents a Uniform Resource Identifier (URI) as defined by RFC 3986." scalar URI @specifiedBy(url: "https://scalars.graphql.org/chillicream/uri.html") "The `UnsignedByte` scalar type represents an unsigned 8-bit integer." -scalar UnsignedByte @specifiedBy(url: "https://scalars.graphql.org/chillicream/unsigned-byte.html") +scalar UnsignedByte + @specifiedBy(url: "https://scalars.graphql.org/chillicream/unsigned-byte.html") diff --git a/src/HotChocolate/Data/test/Data.Filters.Tests/Types/__snapshots__/ListFilterInputTests.Create_Implicit_Operation.graphql b/src/HotChocolate/Data/test/Data.Filters.Tests/Types/__snapshots__/ListFilterInputTests.Create_Implicit_Operation.graphql index ac76fa87083..f5ec8dc73c5 100644 --- a/src/HotChocolate/Data/test/Data.Filters.Tests/Types/__snapshots__/ListFilterInputTests.Create_Implicit_Operation.graphql +++ b/src/HotChocolate/Data/test/Data.Filters.Tests/Types/__snapshots__/ListFilterInputTests.Create_Implicit_Operation.graphql @@ -206,13 +206,19 @@ enum FooBar { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `Decimal` scalar type represents a decimal floating-point number with high precision." -scalar Decimal @specifiedBy(url: "https://scalars.graphql.org/chillicream/decimal.html") +scalar Decimal + @specifiedBy(url: "https://scalars.graphql.org/chillicream/decimal.html") "The `Long` scalar type represents a signed 64-bit integer." -scalar Long @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") +scalar Long + @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") "The `Short` scalar type represents a signed 16-bit integer." -scalar Short @specifiedBy(url: "https://scalars.graphql.org/chillicream/short.html") +scalar Short + @specifiedBy(url: "https://scalars.graphql.org/chillicream/short.html") diff --git a/src/HotChocolate/Data/test/Data.Filters.Tests/Types/__snapshots__/ObjectInputTests.Create_Explicit_Operation.graphql b/src/HotChocolate/Data/test/Data.Filters.Tests/Types/__snapshots__/ObjectInputTests.Create_Explicit_Operation.graphql index bdde01c3f7a..d497f01b833 100644 --- a/src/HotChocolate/Data/test/Data.Filters.Tests/Types/__snapshots__/ObjectInputTests.Create_Explicit_Operation.graphql +++ b/src/HotChocolate/Data/test/Data.Filters.Tests/Types/__snapshots__/ObjectInputTests.Create_Explicit_Operation.graphql @@ -41,7 +41,11 @@ input ShortOperationFilterInput { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `Short` scalar type represents a signed 16-bit integer." -scalar Short @specifiedBy(url: "https://scalars.graphql.org/chillicream/short.html") +scalar Short + @specifiedBy(url: "https://scalars.graphql.org/chillicream/short.html") diff --git a/src/HotChocolate/Data/test/Data.Filters.Tests/Types/__snapshots__/ObjectInputTests.Create_Implicit_Operation.graphql b/src/HotChocolate/Data/test/Data.Filters.Tests/Types/__snapshots__/ObjectInputTests.Create_Implicit_Operation.graphql index c6814833452..feb825c97e9 100644 --- a/src/HotChocolate/Data/test/Data.Filters.Tests/Types/__snapshots__/ObjectInputTests.Create_Implicit_Operation.graphql +++ b/src/HotChocolate/Data/test/Data.Filters.Tests/Types/__snapshots__/ObjectInputTests.Create_Implicit_Operation.graphql @@ -35,7 +35,11 @@ input ShortOperationFilterInput { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `Short` scalar type represents a signed 16-bit integer." -scalar Short @specifiedBy(url: "https://scalars.graphql.org/chillicream/short.html") +scalar Short + @specifiedBy(url: "https://scalars.graphql.org/chillicream/short.html") diff --git a/src/HotChocolate/Data/test/Data.Filters.Tests/__snapshots__/FilterAttributeTests.Create_Schema_With_FilterAttributes.graphql b/src/HotChocolate/Data/test/Data.Filters.Tests/__snapshots__/FilterAttributeTests.Create_Schema_With_FilterAttributes.graphql index 29da230f78a..132719f487c 100644 --- a/src/HotChocolate/Data/test/Data.Filters.Tests/__snapshots__/FilterAttributeTests.Create_Schema_With_FilterAttributes.graphql +++ b/src/HotChocolate/Data/test/Data.Filters.Tests/__snapshots__/FilterAttributeTests.Create_Schema_With_FilterAttributes.graphql @@ -33,7 +33,11 @@ input LongOperationFilterInput { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `Long` scalar type represents a signed 64-bit integer." -scalar Long @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") +scalar Long + @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") diff --git a/src/HotChocolate/Data/test/Data.Filters.Tests/__snapshots__/FilterAttributeTests.Create_Schema_With_FilterInput.graphql b/src/HotChocolate/Data/test/Data.Filters.Tests/__snapshots__/FilterAttributeTests.Create_Schema_With_FilterInput.graphql index cd1ddb3e4a6..34b4545e68e 100644 --- a/src/HotChocolate/Data/test/Data.Filters.Tests/__snapshots__/FilterAttributeTests.Create_Schema_With_FilterInput.graphql +++ b/src/HotChocolate/Data/test/Data.Filters.Tests/__snapshots__/FilterAttributeTests.Create_Schema_With_FilterInput.graphql @@ -66,7 +66,11 @@ input StringOperationFilterInput { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `Long` scalar type represents a signed 64-bit integer." -scalar Long @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") +scalar Long + @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.CreateSchema.graphql b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.CreateSchema.graphql index 8c1779f398b..dad85983c5f 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.CreateSchema.graphql +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.CreateSchema.graphql @@ -17,7 +17,20 @@ type BillingStatementTransaction implements StatementTransaction { } type Brand implements Node { - products("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: ProductFilterInput @cost(weight: "10") order: [ProductSortInput!] @cost(weight: "10")): BrandProductsConnection! @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) @cost(weight: "10") + products( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: ProductFilterInput @cost(weight: "10") + order: [ProductSortInput!] @cost(weight: "10") + ): BrandProductsConnection! + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @cost(weight: "10") productCount: Int! @cost(weight: "10") supplier: Supplier @cost(weight: "10") id: ID! @@ -167,15 +180,68 @@ type Query { "Fetches an object given its ID." node("ID of the object." id: ID!): Node @shareable @cost(weight: "10") "Lookup nodes by a list of IDs." - nodes("The list of node IDs." ids: [ID!]!): [Node]! @shareable @cost(weight: "10") - hiddenNameProductTypes("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: ProductTypeFilterInput @cost(weight: "10") order: [ProductTypeSortInput!] @cost(weight: "10")): ProductTypeConnection! @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) @cost(weight: "10") + nodes("The list of node IDs." ids: [ID!]!): [Node]! + @shareable + @cost(weight: "10") + hiddenNameProductTypes( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: ProductTypeFilterInput @cost(weight: "10") + order: [ProductTypeSortInput!] @cost(weight: "10") + ): ProductTypeConnection! + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @cost(weight: "10") scopeState: String! - brands("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: BrandFilterInput @cost(weight: "10")): BrandConnection! @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) @cost(weight: "10") + brands( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: BrandFilterInput @cost(weight: "10") + ): BrandConnection! + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @cost(weight: "10") brandById(id: ID!): Brand @lookup @cost(weight: "10") brandByIdWithDL(id: ID!): Brand @lookup @cost(weight: "10") - products("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: ProductFilterInput @cost(weight: "10") order: [ProductSortInput!] @cost(weight: "10")): ProductConnection! @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) @cost(weight: "10") + products( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: ProductFilterInput @cost(weight: "10") + order: [ProductSortInput!] @cost(weight: "10") + ): ProductConnection! + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @cost(weight: "10") productById(id: ID!): Product @lookup @internal @cost(weight: "10") - productsNonRelative("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: ProductFilterInput @cost(weight: "10") order: [ProductSortInput!] @cost(weight: "10")): ProductConnection! @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) @cost(weight: "10") + productsNonRelative( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: ProductFilterInput @cost(weight: "10") + order: [ProductSortInput!] @cost(weight: "10") + ): ProductConnection! + @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @cost(weight: "10") singleProperties: [SingleProperty!]! @cost(weight: "10") statementTransaction: StatementTransaction! } @@ -339,7 +405,10 @@ enum SortEnumType { } "The purpose of the `cost` directive is to define a `weight` for GraphQL types, fields, and arguments. Static analysis can use these weights when calculating the overall cost of a query or response." -directive @cost("The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." weight: String!) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @cost( + "The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." + weight: String! +) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION """ The @internal directive is used in combination with lookup fields and allows you @@ -363,7 +432,18 @@ directive @internal on OBJECT | FIELD_DEFINITION directive @internal on OBJECT | FIELD_DEFINITION "The purpose of the `@listSize` directive is to either inform the static analysis about the size of returned lists (if that information is statically available), or to point the analysis to where to find that information." -directive @listSize("The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." assumedSize: Int "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." slicingArguments: [String!] "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." slicingArgumentDefaultValue: Int "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." sizedFields: [String!] "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." requireOneSlicingArgument: Boolean = true) on FIELD_DEFINITION +directive @listSize( + "The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." + assumedSize: Int + "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." + slicingArguments: [String!] + "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." + slicingArgumentDefaultValue: Int + "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." + sizedFields: [String!] + "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." + requireOneSlicingArgument: Boolean = true +) on FIELD_DEFINITION """ The @lookup directive is used within a source schema to specify output fields @@ -372,7 +452,12 @@ a stable key. """ directive @lookup on FIELD_DEFINITION -directive @serializeAs("The primitive type a scalar is serialized to." type: [ScalarSerializationType!]! "The ECMA-262 regex pattern that the serialized scalar value conforms to." pattern: String) on SCALAR +directive @serializeAs( + "The primitive type a scalar is serialized to." + type: [ScalarSerializationType!]! + "The ECMA-262 regex pattern that the serialized scalar value conforms to." + pattern: String +) on SCALAR """ By default, only a single source schema is allowed to contribute @@ -393,10 +478,17 @@ directive @shareable repeatable on OBJECT | FIELD_DEFINITION directive @shareable repeatable on OBJECT | FIELD_DEFINITION "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `Decimal` scalar type represents a decimal floating-point number with high precision." -scalar Decimal @serializeAs(type: FLOAT) @specifiedBy(url: "https://scalars.graphql.org/chillicream/decimal.html") +scalar Decimal + @serializeAs(type: FLOAT) + @specifiedBy(url: "https://scalars.graphql.org/chillicream/decimal.html") "The `UnsignedByte` scalar type represents an unsigned 8-bit integer." -scalar UnsignedByte @serializeAs(type: INT) @specifiedBy(url: "https://scalars.graphql.org/chillicream/unsigned-byte.html") +scalar UnsignedByte + @serializeAs(type: INT) + @specifiedBy(url: "https://scalars.graphql.org/chillicream/unsigned-byte.html") diff --git a/src/HotChocolate/Data/test/Data.Sorting.Tests/__snapshots__/SortAttributeTests.Create_Schema_With_SortAttributes.graphql b/src/HotChocolate/Data/test/Data.Sorting.Tests/__snapshots__/SortAttributeTests.Create_Schema_With_SortAttributes.graphql index 60c7e4f724b..a3a506e8218 100644 --- a/src/HotChocolate/Data/test/Data.Sorting.Tests/__snapshots__/SortAttributeTests.Create_Schema_With_SortAttributes.graphql +++ b/src/HotChocolate/Data/test/Data.Sorting.Tests/__snapshots__/SortAttributeTests.Create_Schema_With_SortAttributes.graphql @@ -21,7 +21,11 @@ enum SortEnumType { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `Long` scalar type represents a signed 64-bit integer." -scalar Long @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") +scalar Long + @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.CreateSchema_OnDifferentScope.snap b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.CreateSchema_OnDifferentScope.snap index 804c4f4f517..8a418a84d75 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.CreateSchema_OnDifferentScope.snap +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.CreateSchema_OnDifferentScope.snap @@ -53,7 +53,18 @@ type BooksEdge { } type DifferentScope { - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: Foo_BookFilterInput order: [Foo_BookSortInput!]): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: Foo_BookFilterInput + order: [Foo_BookSortInput!] + ): BooksConnection } "Information about pagination in a connection." diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.ExecuteAsync_Should_ProjectAndPage_When_AliasIsSameAsAlwaysProjectedField.snap b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.ExecuteAsync_Should_ProjectAndPage_When_AliasIsSameAsAlwaysProjectedField.snap index 0daeb978c32..cd63704a0e9 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.ExecuteAsync_Should_ProjectAndPage_When_AliasIsSameAsAlwaysProjectedField.snap +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.ExecuteAsync_Should_ProjectAndPage_When_AliasIsSameAsAlwaysProjectedField.snap @@ -83,7 +83,18 @@ type Query { node("ID of the object." id: ID!): Node "Lookup nodes by a list of IDs." nodes("The list of node IDs." ids: [ID!]!): [Node]! - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: BookFilterInput order: [BookSortInput!]): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: BookFilterInput + order: [BookSortInput!] + ): BooksConnection } input AuthorFilterInput { diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.ExecuteAsync_Should_ProjectAndPage_When_NodesFragmentContainsProjectedField_With_Extensions.snap b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.ExecuteAsync_Should_ProjectAndPage_When_NodesFragmentContainsProjectedField_With_Extensions.snap index 8f041400faa..0b9a57ea775 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.ExecuteAsync_Should_ProjectAndPage_When_NodesFragmentContainsProjectedField_With_Extensions.snap +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.ExecuteAsync_Should_ProjectAndPage_When_NodesFragmentContainsProjectedField_With_Extensions.snap @@ -86,7 +86,18 @@ type Query { node("ID of the object." id: ID!): Node "Lookup nodes by a list of IDs." nodes("The list of node IDs." ids: [ID!]!): [Node]! - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: BookFilterInput order: [BookSortInput!]): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: BookFilterInput + order: [BookSortInput!] + ): BooksConnection } input AuthorFilterInput { diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.Execute_And_OnRoot.snap b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.Execute_And_OnRoot.snap index 804c4f4f517..8a418a84d75 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.Execute_And_OnRoot.snap +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.Execute_And_OnRoot.snap @@ -53,7 +53,18 @@ type BooksEdge { } type DifferentScope { - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: Foo_BookFilterInput order: [Foo_BookSortInput!]): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: Foo_BookFilterInput + order: [Foo_BookSortInput!] + ): BooksConnection } "Information about pagination in a connection." diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.Execute_And_OnRoot_Reverse.snap b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.Execute_And_OnRoot_Reverse.snap index 804c4f4f517..8a418a84d75 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.Execute_And_OnRoot_Reverse.snap +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.Execute_And_OnRoot_Reverse.snap @@ -53,7 +53,18 @@ type BooksEdge { } type DifferentScope { - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: Foo_BookFilterInput order: [Foo_BookSortInput!]): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: Foo_BookFilterInput + order: [Foo_BookSortInput!] + ): BooksConnection } "Information about pagination in a connection." diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.Schema_Should_Generate_WhenStaticTypeExtensionWithOffsetPagingOnStaticResolver.snap b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.Schema_Should_Generate_WhenStaticTypeExtensionWithOffsetPagingOnStaticResolver.snap index 24c654f5e51..f47f75f463e 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.Schema_Should_Generate_WhenStaticTypeExtensionWithOffsetPagingOnStaticResolver.snap +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/IntegrationTests.Schema_Should_Generate_WhenStaticTypeExtensionWithOffsetPagingOnStaticResolver.snap @@ -23,5 +23,5 @@ type CollectionSegmentInfo { } type Query { - bars(skip: Int take: Int): BarsCollectionSegment + bars(skip: Int, take: Int): BarsCollectionSegment } diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceFieldFilterAndSortTests.Interface_Field_Schema_Snapshot.graphql b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceFieldFilterAndSortTests.Interface_Field_Schema_Snapshot.graphql index 51ac250dd3e..97ee75b0964 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceFieldFilterAndSortTests.Interface_Field_Schema_Snapshot.graphql +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceFieldFilterAndSortTests.Interface_Field_Schema_Snapshot.graphql @@ -3,12 +3,34 @@ schema { } interface Person { - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: PersonFilterInput order: [PersonSortInput!]): FriendsConnection + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: PersonFilterInput + order: [PersonSortInput!] + ): FriendsConnection name: String! } type Author implements Person { - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: PersonFilterInput order: [PersonSortInput!]): FriendsConnection + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: PersonFilterInput + order: [PersonSortInput!] + ): FriendsConnection name: String! } diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Deep_SecondPage.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Deep_SecondPage.md index 5f918abe82a..dbc8d91dc99 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Deep_SecondPage.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Deep_SecondPage.md @@ -16,7 +16,7 @@ LIMIT @__p_2 ## Expression 0 ```text -[Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].OrderBy(x => x.BrandDetails.Country.Name).ThenBy(t => t.Id).Where(t => ((t.BrandDetails.Country.Name.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass14_0`1[System.String]).value) > 0) OrElse ((t.BrandDetails.Country.Name.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass14_0`1[System.String]).value) == 0) AndAlso (t.Id.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass14_0`1[System.Int32]).value) > 0)))).Take(3) +[Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].OrderBy(x => x.BrandDetails.Country.Name).ThenBy(t => t.Id).Where(t => ((t.BrandDetails.Country.Name.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass16_0`1[System.String]).value) > 0) OrElse ((t.BrandDetails.Country.Name.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass16_0`1[System.String]).value) == 0) AndAlso (t.Id.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass16_0`1[System.Int32]).value) > 0)))).Take(3) ``` ## Result diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetSecondPage_With_2_Items.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetSecondPage_With_2_Items.md index 6bef425e8f7..de79aaa6e9d 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetSecondPage_With_2_Items.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetSecondPage_With_2_Items.md @@ -16,7 +16,7 @@ LIMIT @__p_2 ## Expression 0 ```text -[Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].OrderBy(t => t.Name).ThenBy(t => t.Id).Where(t => ((t.Name.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass14_0`1[System.String]).value) > 0) OrElse ((t.Name.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass14_0`1[System.String]).value) == 0) AndAlso (t.Id.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass14_0`1[System.Int32]).value) > 0)))).Take(3) +[Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].OrderBy(t => t.Name).ThenBy(t => t.Id).Where(t => ((t.Name.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass16_0`1[System.String]).value) > 0) OrElse ((t.Name.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass16_0`1[System.String]).value) == 0) AndAlso (t.Id.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass16_0`1[System.Int32]).value) > 0)))).Take(3) ``` ## Result diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13.md index dcc9055a17d..8ebd25adcb9 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13.md @@ -16,7 +16,7 @@ LIMIT @__p_2 ## Expression 0 ```text -[Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].OrderBy(t => t.Name).ThenBy(t => t.Id).Where(t => ((t.Name.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass14_0`1[System.String]).value) > 0) OrElse ((t.Name.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass14_0`1[System.String]).value) == 0) AndAlso (t.Id.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass14_0`1[System.Int32]).value) > 0)))).Take(6) +[Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].OrderBy(t => t.Name).ThenBy(t => t.Id).Where(t => ((t.Name.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass16_0`1[System.String]).value) > 0) OrElse ((t.Name.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass16_0`1[System.String]).value) == 0) AndAlso (t.Id.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass16_0`1[System.Int32]).value) > 0)))).Take(6) ``` ## Result 3 diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96.md index ef3c0174609..396d78db6c5 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96.md @@ -16,7 +16,7 @@ LIMIT @__p_2 ## Expression 0 ```text -[Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].OrderByDescending(t => t.Name).ThenByDescending(t => t.Id).Where(t => ((t.Name.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass14_0`1[System.String]).value) < 0) OrElse ((t.Name.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass14_0`1[System.String]).value) == 0) AndAlso (t.Id.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass14_0`1[System.Int32]).value) < 0)))).Take(6) +[Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].OrderByDescending(t => t.Name).ThenByDescending(t => t.Id).Where(t => ((t.Name.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass16_0`1[System.String]).value) < 0) OrElse ((t.Name.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass16_0`1[System.String]).value) == 0) AndAlso (t.Id.CompareTo(value(GreenDonut.Data.Expressions.ExpressionHelpers+<>c__DisplayClass16_0`1[System.Int32]).value) < 0)))).Take(6) ``` ## Result 3 diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/TypeValidationTests.EnsureCorrectlyOrderedMiddlewarePassValidation.snap b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/TypeValidationTests.EnsureCorrectlyOrderedMiddlewarePassValidation.snap index f22f4f38df7..bebf76dba8b 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/TypeValidationTests.EnsureCorrectlyOrderedMiddlewarePassValidation.snap +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/TypeValidationTests.EnsureCorrectlyOrderedMiddlewarePassValidation.snap @@ -21,7 +21,18 @@ type BarsEdge { } type CorrectMiddlewarePipeline { - bars("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String where: FooFilterInput order: [FooSortInput!]): BarsConnection + bars( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + where: FooFilterInput + order: [FooSortInput!] + ): BarsConnection } type Foo { diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ActivityServerDiagnosticListenerTests.RequestDetails_All_IncludesAllDetails.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ActivityServerDiagnosticListenerTests.RequestDetails_All_IncludesAllDetails.snap index 40eb6d8cbf6..e5503e87ada 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ActivityServerDiagnosticListenerTests.RequestDetails_All_IncludesAllDetails.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ActivityServerDiagnosticListenerTests.RequestDetails_All_IncludesAllDetails.snap @@ -27,7 +27,7 @@ }, { "Key": "graphql.http.request.query.body", - "Value": "query GetHero(\n $episode: Episode!\n) {\n hero(episode: $episode) {\n name\n }\n}" + "Value": "query GetHero($episode: Episode!) {\n hero(episode: $episode) {\n name\n }\n}" }, { "Key": "graphql.http.request.variables", diff --git a/src/HotChocolate/Fusion/src/Fusion.Execution.Types/Serialization/SchemaFormatter.cs b/src/HotChocolate/Fusion/src/Fusion.Execution.Types/Serialization/SchemaFormatter.cs index cc4d73ea0fe..1d1a16e2a6a 100644 --- a/src/HotChocolate/Fusion/src/Fusion.Execution.Types/Serialization/SchemaFormatter.cs +++ b/src/HotChocolate/Fusion/src/Fusion.Execution.Types/Serialization/SchemaFormatter.cs @@ -12,7 +12,7 @@ public static class SchemaFormatter new() { Indented = true, - MaxDirectivesPerLine = 0 + PrintWidth = 80 }; public static string FormatAsString( diff --git a/src/HotChocolate/Fusion/src/Fusion.Language/ISyntaxWriter.cs b/src/HotChocolate/Fusion/src/Fusion.Language/ISyntaxWriter.cs index 30289b24bec..4d1ad181d9f 100644 --- a/src/HotChocolate/Fusion/src/Fusion.Language/ISyntaxWriter.cs +++ b/src/HotChocolate/Fusion/src/Fusion.Language/ISyntaxWriter.cs @@ -5,6 +5,11 @@ namespace HotChocolate.Fusion.Language; /// internal interface ISyntaxWriter { + /// + /// Gets the current column position in the output. + /// + int Column { get; } + /// /// Increase writer indentation. /// diff --git a/src/HotChocolate/Fusion/src/Fusion.Language/StringSyntaxWriter.cs b/src/HotChocolate/Fusion/src/Fusion.Language/StringSyntaxWriter.cs index 5368f7597dc..46ddb161a61 100644 --- a/src/HotChocolate/Fusion/src/Fusion.Language/StringSyntaxWriter.cs +++ b/src/HotChocolate/Fusion/src/Fusion.Language/StringSyntaxWriter.cs @@ -8,8 +8,12 @@ internal class StringSyntaxWriter(StringSyntaxWriterOptions? options = null) : I ?? new StringSyntaxWriterOptions(); private int _indent; + private int _column; private readonly StringBuilder _stringBuilder = new(); + /// + public int Column => _column; + public void Indent() { _indent++; @@ -26,18 +30,40 @@ public void Unindent() public void Write(char c) { _stringBuilder.Append(c); + + if (c == '\n') + { + _column = 0; + } + else + { + _column++; + } } public void Write(string s) { _stringBuilder.Append(s); + + var lastNewLine = s.LastIndexOf('\n'); + + if (lastNewLine >= 0) + { + _column = s.Length - lastNewLine - 1; + } + else + { + _column += s.Length; + } } public void WriteIndent(bool condition = true) { if (condition && _indent > 0) { - _stringBuilder.Append(' ', _options.IndentSize * _indent); + var spaces = _options.IndentSize * _indent; + _stringBuilder.Append(' ', spaces); + _column += spaces; } } @@ -46,6 +72,7 @@ public void WriteLine(bool condition = true) if (condition) { _stringBuilder.Append(_options.NewLine); + _column = 0; } } @@ -54,12 +81,14 @@ public void WriteSpace(bool condition = true) if (condition) { _stringBuilder.Append(' '); + _column++; } } public void Clear() { _stringBuilder.Clear(); + _column = 0; } public override string ToString() diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Abstract_Type.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Abstract_Type.yaml index 5d690fe7ced..82b371d38c7 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Abstract_Type.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Abstract_Type.yaml @@ -81,7 +81,16 @@ sourceSchemas: abstractType: SharedType! otherAbstractType: SharedType! abstractTypes: [SharedType!]! - interfaceConnection("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): InterfaceConnectionConnection + interfaceConnection( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): InterfaceConnectionConnection authorById(id: Int!): Author! @lookup } interactions: diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Abstract_Type_Direct_Source_Schema_Call.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Abstract_Type_Direct_Source_Schema_Call.yaml index 24651a1f0f1..b60b19d95b8 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Abstract_Type_Direct_Source_Schema_Call.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Abstract_Type_Direct_Source_Schema_Call.yaml @@ -86,7 +86,16 @@ sourceSchemas: abstractType: SharedType! otherAbstractType: SharedType! abstractTypes: [SharedType!]! - interfaceConnection("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): InterfaceConnectionConnection + interfaceConnection( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): InterfaceConnectionConnection authorById(id: Int!): Author! @lookup } interactions: diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Abstract_Type_With_Abstract_Lookup.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Abstract_Type_With_Abstract_Lookup.yaml index 292bd460c35..be5a3897b84 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Abstract_Type_With_Abstract_Lookup.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Abstract_Type_With_Abstract_Lookup.yaml @@ -80,7 +80,16 @@ sourceSchemas: abstractType: SharedType! otherAbstractType: SharedType! abstractTypes: [SharedType!]! - interfaceConnection("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): InterfaceConnectionConnection + interfaceConnection( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): InterfaceConnectionConnection authorById(id: Int!): Author! @lookup } interactions: @@ -137,9 +146,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_ddf05407_2( - $__fusion_1_id: Int! - ) { + query Op_ddf05407_2($__fusion_1_id: Int!) { otherInterface(id: $__fusion_1_id) { __typename ... on Author { @@ -198,9 +205,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_ddf05407_2( - $__fusion_1_id: Int! - ) { + query Op_ddf05407_2($__fusion_1_id: Int!) { otherInterface(id: $__fusion_1_id) { __typename ... on Author { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Abstract_Type_With_Concrete_Lookup.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Abstract_Type_With_Concrete_Lookup.yaml index 32e632feef7..6397c6d7b65 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Abstract_Type_With_Concrete_Lookup.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Abstract_Type_With_Concrete_Lookup.yaml @@ -80,7 +80,16 @@ sourceSchemas: abstractType: SharedType! otherAbstractType: SharedType! abstractTypes: [SharedType!]! - interfaceConnection("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): InterfaceConnectionConnection + interfaceConnection( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): InterfaceConnectionConnection authorById(id: Int!): Author! @lookup } interactions: @@ -137,9 +146,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_bf0deff6_2( - $__fusion_1_id: ID! - ) { + query Op_bf0deff6_2($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { commentCount } @@ -194,9 +201,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_bf0deff6_2( - $__fusion_1_id: ID! - ) { + query Op_bf0deff6_2($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { commentCount } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Concrete_Type_With_Abstract_Lookup.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Concrete_Type_With_Abstract_Lookup.yaml index 863451b5fa1..31d9ee53fdd 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Concrete_Type_With_Abstract_Lookup.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Concrete_Type_With_Abstract_Lookup.yaml @@ -76,7 +76,16 @@ sourceSchemas: abstractType: SharedType! otherAbstractType: SharedType! abstractTypes: [SharedType!]! - interfaceConnection("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): InterfaceConnectionConnection + interfaceConnection( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): InterfaceConnectionConnection authorById(id: Int!): Author! @lookup } interactions: @@ -128,9 +137,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_94874bbd_2( - $__fusion_1_id: Int! - ) { + query Op_94874bbd_2($__fusion_1_id: Int!) { otherInterface(id: $__fusion_1_id) { __typename ... on Author { @@ -181,9 +188,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_94874bbd_2( - $__fusion_1_id: Int! - ) { + query Op_94874bbd_2($__fusion_1_id: Int!) { otherInterface(id: $__fusion_1_id) { __typename ... on Author { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_With_And_Without_Type_Refinements_Aliased_With_Different_Selections.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_With_And_Without_Type_Refinements_Aliased_With_Different_Selections.yaml index 871f8d3ac9c..cd7b437502f 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_With_And_Without_Type_Refinements_Aliased_With_Different_Selections.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_With_And_Without_Type_Refinements_Aliased_With_Different_Selections.yaml @@ -154,9 +154,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_2bff8025_3( - $__fusion_2_id: ID! - ) { + query Op_2bff8025_3($__fusion_2_id: ID!) { discussionById(id: $__fusion_2_id) { upvotes ... on Discussion { @@ -224,9 +222,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_2bff8025_2( - $__fusion_1_id: ID! - ) { + query Op_2bff8025_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { upvotes } @@ -307,9 +303,7 @@ operationPlan: type: OperationBatch schema: C operation: | - query Op_2bff8025_2( - $__fusion_1_id: ID! - ) { + query Op_2bff8025_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { upvotes } @@ -329,9 +323,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_2bff8025_3( - $__fusion_2_id: ID! - ) { + query Op_2bff8025_3($__fusion_2_id: ID!) { discussionById(id: $__fusion_2_id) { upvotes ... on Discussion { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_With_And_Without_Type_Refinements_All_Fields_On_Dedicated_Schemas.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_With_And_Without_Type_Refinements_All_Fields_On_Dedicated_Schemas.yaml index e2bbfdc6d8d..da02cb9cdf6 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_With_And_Without_Type_Refinements_All_Fields_On_Dedicated_Schemas.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_With_And_Without_Type_Refinements_All_Fields_On_Dedicated_Schemas.yaml @@ -120,9 +120,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_13354b96_2( - $__fusion_1_id: ID! - ) { + query Op_13354b96_2($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { upvotes ... on Discussion { @@ -190,9 +188,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_13354b96_3( - $__fusion_2_id: ID! - ) { + query Op_13354b96_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { upvotes ... on Author { @@ -249,9 +245,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_13354b96_2( - $__fusion_1_id: ID! - ) { + query Op_13354b96_2($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { upvotes ... on Discussion { @@ -271,9 +265,7 @@ operationPlan: type: Operation schema: C operation: | - query Op_13354b96_3( - $__fusion_2_id: ID! - ) { + query Op_13354b96_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { upvotes ... on Author { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_With_And_Without_Type_Refinements_Type_Refinements_Do_Not_Match.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_With_And_Without_Type_Refinements_Type_Refinements_Do_Not_Match.yaml index 3f86248f6f6..f2041553cd9 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_With_And_Without_Type_Refinements_Type_Refinements_Do_Not_Match.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_With_And_Without_Type_Refinements_Type_Refinements_Do_Not_Match.yaml @@ -115,9 +115,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_3902e3a1_2( - $__fusion_1_id: ID! - ) { + query Op_3902e3a1_2($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { upvotes ... on Discussion { @@ -183,9 +181,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_3902e3a1_3( - $__fusion_2_id: ID! - ) { + query Op_3902e3a1_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { upvotes } @@ -235,9 +231,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_3902e3a1_2( - $__fusion_1_id: ID! - ) { + query Op_3902e3a1_2($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { upvotes ... on Discussion { @@ -257,9 +251,7 @@ operationPlan: type: Operation schema: C operation: | - query Op_3902e3a1_3( - $__fusion_2_id: ID! - ) { + query Op_3902e3a1_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { upvotes } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_Without_Type_Refinements_With_Concrete_Lookups.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_Without_Type_Refinements_With_Concrete_Lookups.yaml index 54eb717e83b..23f0525bf78 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_Without_Type_Refinements_With_Concrete_Lookups.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_Without_Type_Refinements_With_Concrete_Lookups.yaml @@ -89,9 +89,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_fb4e28df_2( - $__fusion_1_id: ID! - ) { + query Op_fb4e28df_2($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { viewerCanVote } @@ -139,9 +137,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_fb4e28df_2( - $__fusion_1_id: ID! - ) { + query Op_fb4e28df_2($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { viewerCanVote } @@ -159,9 +155,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_fb4e28df_3( - $__fusion_2_id: ID! - ) { + query Op_fb4e28df_3($__fusion_2_id: ID!) { commentById(id: $__fusion_2_id) { viewerCanVote } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_Without_Type_Refinements_With_Concrete_Lookups_And_Field_From_Specific_Source.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_Without_Type_Refinements_With_Concrete_Lookups_And_Field_From_Specific_Source.yaml index 5092760954a..5a575c9c9ae 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_Without_Type_Refinements_With_Concrete_Lookups_And_Field_From_Specific_Source.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_Without_Type_Refinements_With_Concrete_Lookups_And_Field_From_Specific_Source.yaml @@ -114,9 +114,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_1bcbe788_2( - $__fusion_1_id: ID! - ) { + query Op_1bcbe788_2($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { totalVotes } @@ -164,9 +162,7 @@ operationPlan: type: Operation schema: C operation: | - query Op_1bcbe788_2( - $__fusion_1_id: ID! - ) { + query Op_1bcbe788_2($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { totalVotes } @@ -184,9 +180,7 @@ operationPlan: type: Operation schema: C operation: | - query Op_1bcbe788_3( - $__fusion_2_id: ID! - ) { + query Op_1bcbe788_3($__fusion_2_id: ID!) { commentById(id: $__fusion_2_id) { totalVotes } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_Without_Type_Refinements_With_Interface_Lookup.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_Without_Type_Refinements_With_Interface_Lookup.yaml index d4aef315a29..43be4252d9b 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_Without_Type_Refinements_With_Interface_Lookup.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_Without_Type_Refinements_With_Interface_Lookup.yaml @@ -79,9 +79,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_fb4e28df_2( - $__fusion_1_id: ID! - ) { + query Op_fb4e28df_2($__fusion_1_id: ID!) { votableById(id: $__fusion_1_id) { __typename ... on Discussion { @@ -133,9 +131,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_fb4e28df_2( - $__fusion_1_id: ID! - ) { + query Op_fb4e28df_2($__fusion_1_id: ID!) { votableById(id: $__fusion_1_id) { __typename ... on Discussion { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_Without_Type_Refinements_With_Interface_Lookup_And_Field_From_Specific_Source.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_Without_Type_Refinements_With_Interface_Lookup_And_Field_From_Specific_Source.yaml index 1257aa16799..27a3584eaf6 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_Without_Type_Refinements_With_Interface_Lookup_And_Field_From_Specific_Source.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Interface_Field_Without_Type_Refinements_With_Interface_Lookup_And_Field_From_Specific_Source.yaml @@ -98,9 +98,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_1bcbe788_2( - $__fusion_1_id: ID! - ) { + query Op_1bcbe788_2($__fusion_1_id: ID!) { votableById(id: $__fusion_1_id) { __typename ... on Discussion { @@ -152,9 +150,7 @@ operationPlan: type: Operation schema: C operation: | - query Op_1bcbe788_2( - $__fusion_1_id: ID! - ) { + query Op_1bcbe788_2($__fusion_1_id: ID!) { votableById(id: $__fusion_1_id) { __typename ... on Discussion { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.List_Of_Abstract_Types.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.List_Of_Abstract_Types.yaml index 6d4c8132943..352f2906cfc 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.List_Of_Abstract_Types.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.List_Of_Abstract_Types.yaml @@ -90,7 +90,16 @@ sourceSchemas: abstractType: SharedType! otherAbstractType: SharedType! abstractTypes: [SharedType!]! - interfaceConnection("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): InterfaceConnectionConnection + interfaceConnection( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): InterfaceConnectionConnection authorById(id: Int!): Author! @lookup } interactions: diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Union_Field_With_Type_Refinements_And_Concrete_Lookups.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Union_Field_With_Type_Refinements_And_Concrete_Lookups.yaml index a3028ed8164..6ea0f2b36b1 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Union_Field_With_Type_Refinements_And_Concrete_Lookups.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Union_Field_With_Type_Refinements_And_Concrete_Lookups.yaml @@ -90,9 +90,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_465e7f4e_3( - $__fusion_2_id: ID! - ) { + query Op_465e7f4e_3($__fusion_2_id: ID!) { userById(id: $__fusion_2_id) { reputation } @@ -150,9 +148,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_465e7f4e_2( - $__fusion_1_id: ID! - ) { + query Op_465e7f4e_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { price } @@ -170,9 +166,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_465e7f4e_3( - $__fusion_2_id: ID! - ) { + query Op_465e7f4e_3($__fusion_2_id: ID!) { userById(id: $__fusion_2_id) { reputation } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Union_Field_With_Type_Refinements_And_Concrete_Lookups_With_Additional_Concrete_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Union_Field_With_Type_Refinements_And_Concrete_Lookups_With_Additional_Concrete_Dependency.yaml index 68d66e40fa6..a24a9f62e5e 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Union_Field_With_Type_Refinements_And_Concrete_Lookups_With_Additional_Concrete_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Union_Field_With_Type_Refinements_And_Concrete_Lookups_With_Additional_Concrete_Dependency.yaml @@ -92,9 +92,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_e8751f64_3( - $__fusion_2_id: ID! - ) { + query Op_e8751f64_3($__fusion_2_id: ID!) { userById(id: $__fusion_2_id) { reputation } @@ -131,9 +129,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e8751f64_4( - $__fusion_3_id: ID! - ) { + query Op_e8751f64_4($__fusion_3_id: ID!) { userById(id: $__fusion_3_id) { profile } @@ -192,9 +188,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e8751f64_2( - $__fusion_1_id: ID! - ) { + query Op_e8751f64_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { price } @@ -212,9 +206,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e8751f64_3( - $__fusion_2_id: ID! - ) { + query Op_e8751f64_3($__fusion_2_id: ID!) { userById(id: $__fusion_2_id) { reputation } @@ -232,9 +224,7 @@ operationPlan: type: Operation schema: C operation: | - query Op_e8751f64_4( - $__fusion_3_id: ID! - ) { + query Op_e8751f64_4($__fusion_3_id: ID!) { userById(id: $__fusion_3_id) { profile } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Union_Field_With_Type_Refinements_And_Union_Lookup.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Union_Field_With_Type_Refinements_And_Union_Lookup.yaml index f947f62b259..54ef92e82e6 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Union_Field_With_Type_Refinements_And_Union_Lookup.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Union_Field_With_Type_Refinements_And_Union_Lookup.yaml @@ -91,9 +91,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_465e7f4e_3( - $__fusion_2_id: ID! - ) { + query Op_465e7f4e_3($__fusion_2_id: ID!) { searchResultById(id: $__fusion_2_id) { __typename ... on User { @@ -155,9 +153,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_465e7f4e_2( - $__fusion_1_id: ID! - ) { + query Op_465e7f4e_2($__fusion_1_id: ID!) { searchResultById(id: $__fusion_1_id) { __typename ... on Product { @@ -178,9 +174,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_465e7f4e_3( - $__fusion_2_id: ID! - ) { + query Op_465e7f4e_3($__fusion_2_id: ID!) { searchResultById(id: $__fusion_2_id) { __typename ... on User { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Union_Field_With_Type_Refinements_And_Union_Lookup_With_Additional_Concrete_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Union_Field_With_Type_Refinements_And_Union_Lookup_With_Additional_Concrete_Dependency.yaml index 757b5086cab..235359302cc 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Union_Field_With_Type_Refinements_And_Union_Lookup_With_Additional_Concrete_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Union_Field_With_Type_Refinements_And_Union_Lookup_With_Additional_Concrete_Dependency.yaml @@ -93,9 +93,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_e8751f64_3( - $__fusion_2_id: ID! - ) { + query Op_e8751f64_3($__fusion_2_id: ID!) { searchResultById(id: $__fusion_2_id) { __typename ... on User { @@ -136,9 +134,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e8751f64_4( - $__fusion_3_id: ID! - ) { + query Op_e8751f64_4($__fusion_3_id: ID!) { userById(id: $__fusion_3_id) { profile } @@ -197,9 +193,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e8751f64_2( - $__fusion_1_id: ID! - ) { + query Op_e8751f64_2($__fusion_1_id: ID!) { searchResultById(id: $__fusion_1_id) { __typename ... on Product { @@ -220,9 +214,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e8751f64_3( - $__fusion_2_id: ID! - ) { + query Op_e8751f64_3($__fusion_2_id: ID!) { searchResultById(id: $__fusion_2_id) { __typename ... on User { @@ -243,9 +235,7 @@ operationPlan: type: Operation schema: C operation: | - query Op_e8751f64_4( - $__fusion_3_id: ID! - ) { + query Op_e8751f64_4($__fusion_3_id: ID!) { userById(id: $__fusion_3_id) { profile } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_ComplexNested.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_ComplexNested.yaml index abcf1c9ecdb..cd668be7045 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_ComplexNested.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_ComplexNested.yaml @@ -70,13 +70,23 @@ sourceSchemas: LIST } - directive @serializeAs("The primitive type a scalar is serialized to." type: [ScalarSerializationType!]! "The ECMA-262 regex pattern that the serialized scalar value conforms to." pattern: String) on SCALAR + directive @serializeAs( + "The primitive type a scalar is serialized to." + type: [ScalarSerializationType!]! + "The ECMA-262 regex pattern that the serialized scalar value conforms to." + pattern: String + ) on SCALAR "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." - directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR + directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! + ) on SCALAR "The `Any` scalar type represents any valid GraphQL value." - scalar Any @serializeAs(type: [STRING, BOOLEAN, INT, FLOAT, OBJECT, LIST]) @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") + scalar Any + @serializeAs(type: [STRING, BOOLEAN, INT, FLOAT, OBJECT, LIST]) + @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") interactions: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_List.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_List.yaml index 85c908c5b3c..ba4417bdb42 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_List.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_List.yaml @@ -51,13 +51,23 @@ sourceSchemas: LIST } - directive @serializeAs("The primitive type a scalar is serialized to." type: [ScalarSerializationType!]! "The ECMA-262 regex pattern that the serialized scalar value conforms to." pattern: String) on SCALAR + directive @serializeAs( + "The primitive type a scalar is serialized to." + type: [ScalarSerializationType!]! + "The ECMA-262 regex pattern that the serialized scalar value conforms to." + pattern: String + ) on SCALAR "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." - directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR + directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! + ) on SCALAR "The `Any` scalar type represents any valid GraphQL value." - scalar Any @serializeAs(type: [STRING, BOOLEAN, INT, FLOAT, OBJECT, LIST]) @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") + scalar Any + @serializeAs(type: [STRING, BOOLEAN, INT, FLOAT, OBJECT, LIST]) + @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") interactions: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_ListOfObjects.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_ListOfObjects.yaml index 8bed01b7faf..4ad5fee1d52 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_ListOfObjects.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_ListOfObjects.yaml @@ -58,13 +58,23 @@ sourceSchemas: LIST } - directive @serializeAs("The primitive type a scalar is serialized to." type: [ScalarSerializationType!]! "The ECMA-262 regex pattern that the serialized scalar value conforms to." pattern: String) on SCALAR + directive @serializeAs( + "The primitive type a scalar is serialized to." + type: [ScalarSerializationType!]! + "The ECMA-262 regex pattern that the serialized scalar value conforms to." + pattern: String + ) on SCALAR "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." - directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR + directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! + ) on SCALAR "The `Any` scalar type represents any valid GraphQL value." - scalar Any @serializeAs(type: [STRING, BOOLEAN, INT, FLOAT, OBJECT, LIST]) @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") + scalar Any + @serializeAs(type: [STRING, BOOLEAN, INT, FLOAT, OBJECT, LIST]) + @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") interactions: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_NestedObject.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_NestedObject.yaml index 1870886a83a..84ee2661250 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_NestedObject.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_NestedObject.yaml @@ -52,13 +52,23 @@ sourceSchemas: LIST } - directive @serializeAs("The primitive type a scalar is serialized to." type: [ScalarSerializationType!]! "The ECMA-262 regex pattern that the serialized scalar value conforms to." pattern: String) on SCALAR + directive @serializeAs( + "The primitive type a scalar is serialized to." + type: [ScalarSerializationType!]! + "The ECMA-262 regex pattern that the serialized scalar value conforms to." + pattern: String + ) on SCALAR "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." - directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR + directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! + ) on SCALAR "The `Any` scalar type represents any valid GraphQL value." - scalar Any @serializeAs(type: [STRING, BOOLEAN, INT, FLOAT, OBJECT, LIST]) @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") + scalar Any + @serializeAs(type: [STRING, BOOLEAN, INT, FLOAT, OBJECT, LIST]) + @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") interactions: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_NullValue.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_NullValue.yaml index eb5568ecf6e..c40f9d66965 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_NullValue.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_NullValue.yaml @@ -45,13 +45,23 @@ sourceSchemas: LIST } - directive @serializeAs("The primitive type a scalar is serialized to." type: [ScalarSerializationType!]! "The ECMA-262 regex pattern that the serialized scalar value conforms to." pattern: String) on SCALAR + directive @serializeAs( + "The primitive type a scalar is serialized to." + type: [ScalarSerializationType!]! + "The ECMA-262 regex pattern that the serialized scalar value conforms to." + pattern: String + ) on SCALAR "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." - directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR + directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! + ) on SCALAR "The `Any` scalar type represents any valid GraphQL value." - scalar Any @serializeAs(type: [STRING, BOOLEAN, INT, FLOAT, OBJECT, LIST]) @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") + scalar Any + @serializeAs(type: [STRING, BOOLEAN, INT, FLOAT, OBJECT, LIST]) + @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") interactions: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_Object.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_Object.yaml index 770e05f99e4..0abda54e306 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_Object.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_Object.yaml @@ -47,13 +47,23 @@ sourceSchemas: LIST } - directive @serializeAs("The primitive type a scalar is serialized to." type: [ScalarSerializationType!]! "The ECMA-262 regex pattern that the serialized scalar value conforms to." pattern: String) on SCALAR + directive @serializeAs( + "The primitive type a scalar is serialized to." + type: [ScalarSerializationType!]! + "The ECMA-262 regex pattern that the serialized scalar value conforms to." + pattern: String + ) on SCALAR "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." - directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR + directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! + ) on SCALAR "The `Any` scalar type represents any valid GraphQL value." - scalar Any @serializeAs(type: [STRING, BOOLEAN, INT, FLOAT, OBJECT, LIST]) @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") + scalar Any + @serializeAs(type: [STRING, BOOLEAN, INT, FLOAT, OBJECT, LIST]) + @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") interactions: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_ObjectWithLists.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_ObjectWithLists.yaml index b133ef617d2..04117d5dedd 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_ObjectWithLists.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_ObjectWithLists.yaml @@ -57,13 +57,23 @@ sourceSchemas: LIST } - directive @serializeAs("The primitive type a scalar is serialized to." type: [ScalarSerializationType!]! "The ECMA-262 regex pattern that the serialized scalar value conforms to." pattern: String) on SCALAR + directive @serializeAs( + "The primitive type a scalar is serialized to." + type: [ScalarSerializationType!]! + "The ECMA-262 regex pattern that the serialized scalar value conforms to." + pattern: String + ) on SCALAR "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." - directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR + directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! + ) on SCALAR "The `Any` scalar type represents any valid GraphQL value." - scalar Any @serializeAs(type: [STRING, BOOLEAN, INT, FLOAT, OBJECT, LIST]) @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") + scalar Any + @serializeAs(type: [STRING, BOOLEAN, INT, FLOAT, OBJECT, LIST]) + @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") interactions: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_SimpleValues.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_SimpleValues.yaml index 792e3c49bf4..06b698c0613 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_SimpleValues.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AnyScalarTests.Handle_Any_Scalar_SimpleValues.yaml @@ -51,13 +51,23 @@ sourceSchemas: LIST } - directive @serializeAs("The primitive type a scalar is serialized to." type: [ScalarSerializationType!]! "The ECMA-262 regex pattern that the serialized scalar value conforms to." pattern: String) on SCALAR + directive @serializeAs( + "The primitive type a scalar is serialized to." + type: [ScalarSerializationType!]! + "The ECMA-262 regex pattern that the serialized scalar value conforms to." + pattern: String + ) on SCALAR "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." - directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR + directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! + ) on SCALAR "The `Any` scalar type represents any valid GraphQL value." - scalar Any @serializeAs(type: [STRING, BOOLEAN, INT, FLOAT, OBJECT, LIST]) @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") + scalar Any + @serializeAs(type: [STRING, BOOLEAN, INT, FLOAT, OBJECT, LIST]) + @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") interactions: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Ensure_String_Literals_Can_Be_Empty.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Ensure_String_Literals_Can_Be_Empty.yaml index dcf5ec54eb8..2de13be9218 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Ensure_String_Literals_Can_Be_Empty.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Ensure_String_Literals_Can_Be_Empty.yaml @@ -60,7 +60,16 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @lookup - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection formatTitle(title: String!): String! } interactions: @@ -129,7 +138,16 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @internal @lookup authorById(id: Int!): Author! @internal @lookup - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } operationPlan: operation: diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Ensure_String_Variables_Can_Be_Empty.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Ensure_String_Variables_Can_Be_Empty.yaml index 789041b32b4..9c85532167c 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Ensure_String_Variables_Can_Be_Empty.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Ensure_String_Variables_Can_Be_Empty.yaml @@ -1,9 +1,7 @@ title: Ensure_String_Variables_Can_Be_Empty request: document: | - query( - $s: String! - ) { + query($s: String!) { formatTitle(title: $s) } variables: | @@ -66,16 +64,23 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @lookup - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection formatTitle(title: String!): String! } interactions: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_577373a9_1( - $s: String! - ) { + query Op_577373a9_1($s: String!) { formatTitle(title: $s) } variables: | @@ -141,14 +146,21 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @internal @lookup authorById(id: Int!): Author! @internal @lookup - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } operationPlan: operation: - document: | - query( - $s: String! - ) { + query($s: String!) { formatTitle(title: $s) } hash: 577373a9b2c16f480ac5c2645f109b7b @@ -159,9 +171,7 @@ operationPlan: type: Operation schema: a operation: | - query Op_577373a9_1( - $s: String! - ) { + query Op_577373a9_1($s: String!) { formatTitle(title: $s) } forwardedVariables: diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Book_From_SourceSchema1.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Book_From_SourceSchema1.yaml index f804149d8e1..9adf01c7579 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Book_From_SourceSchema1.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Book_From_SourceSchema1.yaml @@ -66,7 +66,16 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @lookup - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection formatTitle(title: String!): String! } interactions: @@ -141,7 +150,16 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @internal @lookup authorById(id: Int!): Author! @internal @lookup - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } operationPlan: operation: diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Book_From_SourceSchema1_And_Author_From_SourceSchema2.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Book_From_SourceSchema1_And_Author_From_SourceSchema2.yaml index ba26223aaf7..d3b2be368e9 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Book_From_SourceSchema1_And_Author_From_SourceSchema2.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Book_From_SourceSchema1_And_Author_From_SourceSchema2.yaml @@ -70,7 +70,16 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @lookup - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection formatTitle(title: String!): String! } interactions: @@ -149,15 +158,22 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @internal @lookup authorById(id: Int!): Author! @internal @lookup - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } interactions: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_b15d3abc_2( - $__fusion_1_id: Int! - ) { + query Op_b15d3abc_2($__fusion_1_id: Int!) { authorById(id: $__fusion_1_id) { name } @@ -208,9 +224,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_b15d3abc_2( - $__fusion_1_id: Int! - ) { + query Op_b15d3abc_2($__fusion_1_id: Int!) { authorById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Book_From_SourceSchema1_Two_Requests.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Book_From_SourceSchema1_Two_Requests.yaml index c2cd6206963..098cb7574dd 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Book_From_SourceSchema1_Two_Requests.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Book_From_SourceSchema1_Two_Requests.yaml @@ -66,7 +66,16 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @lookup - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection formatTitle(title: String!): String! } interactions: @@ -141,7 +150,16 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @internal @lookup authorById(id: Int!): Author! @internal @lookup - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } operationPlan: operation: diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Book_From_SourceSchema1_With_Settings.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Book_From_SourceSchema1_With_Settings.yaml index a6bbe08f032..ea272ebbbac 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Book_From_SourceSchema1_With_Settings.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Book_From_SourceSchema1_With_Settings.yaml @@ -66,7 +66,16 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @lookup - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection formatTitle(title: String!): String! } - name: b @@ -120,7 +129,16 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @internal @lookup authorById(id: Int!): Author! @internal @lookup - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } operationPlan: operation: diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_From_SourceSchema1_And_Authors_From_SourceSchema2.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_From_SourceSchema1_And_Authors_From_SourceSchema2.yaml index 010b0862b58..54879577b31 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_From_SourceSchema1_And_Authors_From_SourceSchema2.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_From_SourceSchema1_And_Authors_From_SourceSchema2.yaml @@ -99,7 +99,16 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @lookup - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection formatTitle(title: String!): String! } interactions: @@ -207,15 +216,22 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @internal @lookup authorById(id: Int!): Author! @internal @lookup - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } interactions: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_e1aceb9e_2( - $__fusion_1_id: Int! - ) { + query Op_e1aceb9e_2($__fusion_1_id: Int!) { authorById(id: $__fusion_1_id) { name } @@ -286,9 +302,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e1aceb9e_2( - $__fusion_1_id: Int! - ) { + query Op_e1aceb9e_2($__fusion_1_id: Int!) { authorById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Requirements_To_SourceSchema1.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Requirements_To_SourceSchema1.yaml index 96ad99ba6cc..d259ada945e 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Requirements_To_SourceSchema1.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Requirements_To_SourceSchema1.yaml @@ -79,7 +79,16 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @lookup - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection formatTitle(title: String!): String! } interactions: @@ -172,16 +181,22 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @internal @lookup authorById(id: Int!): Author! @internal @lookup - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } interactions: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_6721fc4f_2( - $__fusion_1_id: Int! - $__fusion_2_title: String! - ) { + query Op_6721fc4f_2($__fusion_1_id: Int!, $__fusion_2_title: String!) { bookById(id: $__fusion_1_id) { idAndTitle(title: $__fusion_2_title) } @@ -272,10 +287,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_6721fc4f_2( - $__fusion_1_id: Int! - $__fusion_2_title: String! - ) { + query Op_6721fc4f_2($__fusion_1_id: Int!, $__fusion_2_title: String!) { bookById(id: $__fusion_1_id) { idAndTitle(title: $__fusion_2_title) } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Requirements_To_SourceSchema1_Three_Times.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Requirements_To_SourceSchema1_Three_Times.yaml index 17f74e1df91..9980c1ca3ee 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Requirements_To_SourceSchema1_Three_Times.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Requirements_To_SourceSchema1_Three_Times.yaml @@ -79,7 +79,16 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @lookup - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection formatTitle(title: String!): String! } interactions: @@ -172,16 +181,22 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @internal @lookup authorById(id: Int!): Author! @internal @lookup - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } interactions: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_6721fc4f_2( - $__fusion_1_id: Int! - $__fusion_2_title: String! - ) { + query Op_6721fc4f_2($__fusion_1_id: Int!, $__fusion_2_title: String!) { bookById(id: $__fusion_1_id) { idAndTitle(title: $__fusion_2_title) } @@ -272,10 +287,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_6721fc4f_2( - $__fusion_1_id: Int! - $__fusion_2_title: String! - ) { + query Op_6721fc4f_2($__fusion_1_id: Int!, $__fusion_2_title: String!) { bookById(id: $__fusion_1_id) { idAndTitle(title: $__fusion_2_title) } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Requirements_To_SourceSchema1_X_Times.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Requirements_To_SourceSchema1_X_Times.yaml index 7c5930ffd37..b40a2e84aea 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Requirements_To_SourceSchema1_X_Times.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Requirements_To_SourceSchema1_X_Times.yaml @@ -79,7 +79,16 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @lookup - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection formatTitle(title: String!): String! } interactions: @@ -172,16 +181,22 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @internal @lookup authorById(id: Int!): Author! @internal @lookup - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } interactions: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_6721fc4f_2( - $__fusion_1_id: Int! - $__fusion_2_title: String! - ) { + query Op_6721fc4f_2($__fusion_1_id: Int!, $__fusion_2_title: String!) { bookById(id: $__fusion_1_id) { idAndTitle(title: $__fusion_2_title) } @@ -272,10 +287,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_6721fc4f_2( - $__fusion_1_id: Int! - $__fusion_2_title: String! - ) { + query Op_6721fc4f_2($__fusion_1_id: Int!, $__fusion_2_title: String!) { bookById(id: $__fusion_1_id) { idAndTitle(title: $__fusion_2_title) } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Variable_First_And_First_Is_1.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Variable_First_And_First_Is_1.yaml index 64979f1c64d..dd9461b8b96 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Variable_First_And_First_Is_1.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Variable_First_And_First_Is_1.yaml @@ -1,9 +1,7 @@ title: Fetch_Books_With_Variable_First_And_First_Is_1 request: document: | - query GetBooks( - $first: Int - ) { + query GetBooks($first: Int) { books(first: $first) { nodes { id @@ -84,16 +82,23 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @lookup - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection formatTitle(title: String!): String! } interactions: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query GetBooks_f1bed549_1( - $first: Int - ) { + query GetBooks_f1bed549_1($first: Int) { books(first: $first) { nodes { id @@ -177,15 +182,22 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @internal @lookup authorById(id: Int!): Author! @internal @lookup - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } interactions: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query GetBooks_f1bed549_2( - $__fusion_1_id: Int! - ) { + query GetBooks_f1bed549_2($__fusion_1_id: Int!) { authorById(id: $__fusion_1_id) { name } @@ -207,9 +219,7 @@ sourceSchemas: operationPlan: operation: - document: | - query GetBooks( - $first: Int - ) { + query GetBooks($first: Int) { books(first: $first) { nodes { id @@ -230,9 +240,7 @@ operationPlan: type: Operation schema: A operation: | - query GetBooks_f1bed549_1( - $first: Int - ) { + query GetBooks_f1bed549_1($first: Int) { books(first: $first) { nodes { id @@ -249,9 +257,7 @@ operationPlan: type: Operation schema: B operation: | - query GetBooks_f1bed549_2( - $__fusion_1_id: Int! - ) { + query GetBooks_f1bed549_2($__fusion_1_id: Int!) { authorById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Variable_First_And_First_Omitted.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Variable_First_And_First_Omitted.yaml index 8bb98209b00..c7155b608f9 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Variable_First_And_First_Omitted.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Variable_First_And_First_Omitted.yaml @@ -1,9 +1,7 @@ title: Fetch_Books_With_Variable_First_And_First_Omitted request: document: | - query GetBooks( - $first: Int - ) { + query GetBooks($first: Int) { books(first: $first) { nodes { id @@ -103,16 +101,23 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @lookup - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection formatTitle(title: String!): String! } interactions: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query GetBooks_f1bed549_1( - $first: Int - ) { + query GetBooks_f1bed549_1($first: Int) { books(first: $first) { nodes { id @@ -215,15 +220,22 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @internal @lookup authorById(id: Int!): Author! @internal @lookup - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } interactions: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query GetBooks_f1bed549_2( - $__fusion_1_id: Int! - ) { + query GetBooks_f1bed549_2($__fusion_1_id: Int!) { authorById(id: $__fusion_1_id) { name } @@ -259,9 +271,7 @@ sourceSchemas: operationPlan: operation: - document: | - query GetBooks( - $first: Int - ) { + query GetBooks($first: Int) { books(first: $first) { nodes { id @@ -282,9 +292,7 @@ operationPlan: type: Operation schema: A operation: | - query GetBooks_f1bed549_1( - $first: Int - ) { + query GetBooks_f1bed549_1($first: Int) { books(first: $first) { nodes { id @@ -301,9 +309,7 @@ operationPlan: type: Operation schema: B operation: | - query GetBooks_f1bed549_2( - $__fusion_1_id: Int! - ) { + query GetBooks_f1bed549_2($__fusion_1_id: Int!) { authorById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Variable_First_Last_And_First_1_And_Last_Omitted.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Variable_First_Last_And_First_1_And_Last_Omitted.yaml index 3ed6eda8699..c7e2c9f4d91 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Variable_First_Last_And_First_1_And_Last_Omitted.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/BookStoreTests.Fetch_Books_With_Variable_First_Last_And_First_1_And_Last_Omitted.yaml @@ -1,10 +1,7 @@ title: Fetch_Books_With_Variable_First_Last_And_First_1_And_Last_Omitted request: document: | - query GetBooks( - $first: Int - $last: Int - ) { + query GetBooks($first: Int, $last: Int) { books(first: $first, last: $last) { nodes { id @@ -85,17 +82,23 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @lookup - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection formatTitle(title: String!): String! } interactions: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query GetBooks_938ff9c0_1( - $first: Int - $last: Int - ) { + query GetBooks_938ff9c0_1($first: Int, $last: Int) { books(first: $first, last: $last) { nodes { id @@ -179,15 +182,22 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @internal @lookup authorById(id: Int!): Author! @internal @lookup - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } interactions: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query GetBooks_938ff9c0_2( - $__fusion_1_id: Int! - ) { + query GetBooks_938ff9c0_2($__fusion_1_id: Int!) { authorById(id: $__fusion_1_id) { name } @@ -209,10 +219,7 @@ sourceSchemas: operationPlan: operation: - document: | - query GetBooks( - $first: Int - $last: Int - ) { + query GetBooks($first: Int, $last: Int) { books(first: $first, last: $last) { nodes { id @@ -233,10 +240,7 @@ operationPlan: type: Operation schema: A operation: | - query GetBooks_938ff9c0_1( - $first: Int - $last: Int - ) { + query GetBooks_938ff9c0_1($first: Int, $last: Int) { books(first: $first, last: $last) { nodes { id @@ -254,9 +258,7 @@ operationPlan: type: Operation schema: B operation: | - query GetBooks_938ff9c0_2( - $__fusion_1_id: Int! - ) { + query GetBooks_938ff9c0_2($__fusion_1_id: Int!) { authorById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Interface_Field_With_Type_Refinement_Under_Nested_Skip.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Interface_Field_With_Type_Refinement_Under_Nested_Skip.yaml index d71c70cfd3f..4c33a6aa7ed 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Interface_Field_With_Type_Refinement_Under_Nested_Skip.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Interface_Field_With_Type_Refinement_Under_Nested_Skip.yaml @@ -1,10 +1,7 @@ title: Interface_Field_With_Type_Refinement_Under_Nested_Skip request: document: | - query( - $skip1: Boolean! - $skip2: Boolean! - ) { + query($skip1: Boolean!, $skip2: Boolean!) { abstractTypes { ... on Discussion { score @@ -72,10 +69,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_0731cc53_1( - $skip1: Boolean! - $skip2: Boolean! - ) { + query Op_0731cc53_1($skip1: Boolean!, $skip2: Boolean!) { abstractTypes { __typename ... on Discussion { @@ -148,9 +142,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query Op_0731cc53_2( - $__fusion_1_id: ID! - ) { + query Op_0731cc53_2($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { upvotes } @@ -165,9 +157,7 @@ sourceSchemas: } ] - document: | - query Op_0731cc53_4( - $__fusion_3_id: ID! - ) { + query Op_0731cc53_4($__fusion_3_id: ID!) { discussionById(id: $__fusion_3_id) { score } @@ -246,10 +236,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_0731cc53_3( - $skip2: Boolean! - $__fusion_2_id: ID! - ) { + query Op_0731cc53_3($skip2: Boolean!, $__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { upvotes ... on Author { @@ -277,10 +264,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $skip1: Boolean! - $skip2: Boolean! - ) { + query($skip1: Boolean!, $skip2: Boolean!) { abstractTypes { __typename @fusion__requirement ... on Discussion { @@ -304,10 +288,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_0731cc53_1( - $skip1: Boolean! - $skip2: Boolean! - ) { + query Op_0731cc53_1($skip1: Boolean!, $skip2: Boolean!) { abstractTypes { __typename ... on Discussion { @@ -329,9 +310,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_0731cc53_2( - $__fusion_1_id: ID! - ) { + query Op_0731cc53_2($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { upvotes } @@ -352,9 +331,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_0731cc53_4( - $__fusion_3_id: ID! - ) { + query Op_0731cc53_4($__fusion_3_id: ID!) { discussionById(id: $__fusion_3_id) { score } @@ -372,10 +349,7 @@ operationPlan: type: Operation schema: C operation: | - query Op_0731cc53_3( - $skip2: Boolean! - $__fusion_2_id: ID! - ) { + query Op_0731cc53_3($skip2: Boolean!, $__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { upvotes ... on Author { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Interface_Field_With_Type_Refinement_Under_Skip.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Interface_Field_With_Type_Refinement_Under_Skip.yaml index 0b2a326fd75..80a52c4f71a 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Interface_Field_With_Type_Refinement_Under_Skip.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Interface_Field_With_Type_Refinement_Under_Skip.yaml @@ -1,10 +1,7 @@ title: Interface_Field_With_Type_Refinement_Under_Skip request: document: | - query( - $skip1: Boolean! - $skip2: Boolean! - ) { + query($skip1: Boolean!, $skip2: Boolean!) { abstractTypes { upvotes ... on Discussion { @@ -74,10 +71,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_2c04e967_1( - $skip1: Boolean! - $skip2: Boolean! - ) { + query Op_2c04e967_1($skip1: Boolean!, $skip2: Boolean!) { abstractTypes { __typename ... @skip(if: $skip1) { @@ -145,9 +139,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_2c04e967_2( - $__fusion_1_id: ID! - ) { + query Op_2c04e967_2($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { upvotes ... on Discussion { @@ -215,11 +207,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_2c04e967_3( - $skip1: Boolean! - $skip2: Boolean! - $__fusion_2_id: ID! - ) { + query Op_2c04e967_3($skip1: Boolean!, $skip2: Boolean!, $__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { upvotes ... on Author { @@ -250,10 +238,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $skip1: Boolean! - $skip2: Boolean! - ) { + query($skip1: Boolean!, $skip2: Boolean!) { abstractTypes { __typename @fusion__requirement upvotes @@ -276,10 +261,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_2c04e967_1( - $skip1: Boolean! - $skip2: Boolean! - ) { + query Op_2c04e967_1($skip1: Boolean!, $skip2: Boolean!) { abstractTypes { __typename ... @skip(if: $skip1) { @@ -298,9 +280,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_2c04e967_2( - $__fusion_1_id: ID! - ) { + query Op_2c04e967_2($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { upvotes ... on Discussion { @@ -320,11 +300,7 @@ operationPlan: type: Operation schema: C operation: | - query Op_2c04e967_3( - $skip1: Boolean! - $skip2: Boolean! - $__fusion_2_id: ID! - ) { + query Op_2c04e967_3($skip1: Boolean!, $skip2: Boolean!, $__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { upvotes ... on Author { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Introspection_Skip_Around_Field.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Introspection_Skip_Around_Field.yaml index 60c45623be3..0a7b2705f3e 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Introspection_Skip_Around_Field.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Introspection_Skip_Around_Field.yaml @@ -1,9 +1,7 @@ title: Introspection_Skip_Around_Field request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { ... @skip(if: $skip) { __typename __type(name: "Query") { @@ -33,9 +31,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { ... @skip(if: $skip) { __typename __type(name: "Query") { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Introspection_Skip_On_Field.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Introspection_Skip_On_Field.yaml index aaa784554c4..0b4a9d168ec 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Introspection_Skip_On_Field.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Introspection_Skip_On_Field.yaml @@ -1,9 +1,7 @@ title: Introspection_Skip_On_Field request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { __typename @skip(if: $skip) } variables: | @@ -28,9 +26,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { __typename @skip(if: $skip) } name: testQuery diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Multiple_Skip_Levels_Around_Fields_Fetched_Through_Lookup.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Multiple_Skip_Levels_Around_Fields_Fetched_Through_Lookup.yaml index 7e7a009dbd5..bc75e808033 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Multiple_Skip_Levels_Around_Fields_Fetched_Through_Lookup.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Multiple_Skip_Levels_Around_Fields_Fetched_Through_Lookup.yaml @@ -1,10 +1,7 @@ title: Lookup_Multiple_Skip_Levels_Around_Fields_Fetched_Through_Lookup request: document: | - query testQuery( - $skip1: Boolean! - $skip2: Boolean! - ) { + query testQuery($skip1: Boolean!, $skip2: Boolean!) { productBySlug(slug: "product") { name review { @@ -56,10 +53,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_321bae46_1( - $skip1: Boolean! - $skip2: Boolean! - ) { + query testQuery_321bae46_1($skip1: Boolean!, $skip2: Boolean!) { productBySlug(slug: "product") { name review { @@ -105,10 +99,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip1: Boolean! - $skip2: Boolean! - ) { + query testQuery($skip1: Boolean!, $skip2: Boolean!) { productBySlug(slug: "product") { name review { @@ -131,10 +122,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_321bae46_1( - $skip1: Boolean! - $skip2: Boolean! - ) { + query testQuery_321bae46_1($skip1: Boolean!, $skip2: Boolean!) { productBySlug(slug: "product") { name review { @@ -153,9 +141,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_321bae46_2( - $__fusion_1_id: ID! - ) { + query testQuery_321bae46_2($__fusion_1_id: ID!) { reviewById(id: $__fusion_1_id) { title rating diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Multiple_Skip_Levels_Around_Fields_Fetched_Through_Lookup_And_On_Same_Source_Schema.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Multiple_Skip_Levels_Around_Fields_Fetched_Through_Lookup_And_On_Same_Source_Schema.yaml index a34155a7c3c..9e8f40c6e3d 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Multiple_Skip_Levels_Around_Fields_Fetched_Through_Lookup_And_On_Same_Source_Schema.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Multiple_Skip_Levels_Around_Fields_Fetched_Through_Lookup_And_On_Same_Source_Schema.yaml @@ -1,10 +1,7 @@ title: Lookup_Multiple_Skip_Levels_Around_Fields_Fetched_Through_Lookup_And_On_Same_Source_Schema request: document: | - query testQuery( - $skip1: Boolean! - $skip2: Boolean! - ) { + query testQuery($skip1: Boolean!, $skip2: Boolean!) { productBySlug(slug: "product") { name review { @@ -59,10 +56,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_28ca75a0_1( - $skip1: Boolean! - $skip2: Boolean! - ) { + query testQuery_28ca75a0_1($skip1: Boolean!, $skip2: Boolean!) { productBySlug(slug: "product") { name review { @@ -109,10 +103,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip1: Boolean! - $skip2: Boolean! - ) { + query testQuery($skip1: Boolean!, $skip2: Boolean!) { productBySlug(slug: "product") { name review { @@ -136,10 +127,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_28ca75a0_1( - $skip1: Boolean! - $skip2: Boolean! - ) { + query testQuery_28ca75a0_1($skip1: Boolean!, $skip2: Boolean!) { productBySlug(slug: "product") { name review { @@ -159,9 +147,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_28ca75a0_2( - $__fusion_1_id: ID! - ) { + query testQuery_28ca75a0_2($__fusion_1_id: ID!) { reviewById(id: $__fusion_1_id) { title rating diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_Around_Field_With_Requirement_With_Other_Field.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_Around_Field_With_Requirement_With_Other_Field.yaml index 3cb788049a3..6020e879356 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_Around_Field_With_Requirement_With_Other_Field.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_Around_Field_With_Requirement_With_Other_Field.yaml @@ -1,9 +1,7 @@ title: Lookup_Skip_Around_Field_With_Requirement_With_Other_Field request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { productBySlug(slug: "product") { ... @skip(if: $skip) { dimension @@ -40,9 +38,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_c97c6b3f_1( - $skip: Boolean! - ) { + query testQuery_c97c6b3f_1($skip: Boolean!) { productBySlug(slug: "product") { ... @skip(if: $skip) { id @@ -93,9 +89,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { productBySlug(slug: "product") { ... @skip(if: $skip) { dimension @@ -114,9 +108,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_c97c6b3f_1( - $skip: Boolean! - ) { + query testQuery_c97c6b3f_1($skip: Boolean!) { productBySlug(slug: "product") { ... @skip(if: $skip) { id @@ -129,9 +121,7 @@ operationPlan: type: Operation schema: C operation: | - query testQuery_c97c6b3f_2( - $__fusion_1_id: ID! - ) { + query testQuery_c97c6b3f_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { price } @@ -151,10 +141,7 @@ operationPlan: type: Operation schema: C operation: | - query testQuery_c97c6b3f_3( - $__fusion_2_size: Int! - $__fusion_3_id: ID! - ) { + query testQuery_c97c6b3f_3($__fusion_2_size: Int!, $__fusion_3_id: ID!) { productById(id: $__fusion_3_id) { dimension(size: $__fusion_2_size) } @@ -175,9 +162,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_c97c6b3f_4( - $__fusion_4_id: ID! - ) { + query testQuery_c97c6b3f_4($__fusion_4_id: ID!) { productById(id: $__fusion_4_id) { size } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_Around_Fields_Fetched_Through_Lookup.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_Around_Fields_Fetched_Through_Lookup.yaml index 849889fbced..234f9bd8736 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_Around_Fields_Fetched_Through_Lookup.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_Around_Fields_Fetched_Through_Lookup.yaml @@ -1,9 +1,7 @@ title: Lookup_Skip_Around_Fields_Fetched_Through_Lookup request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { productBySlug(slug: "product") { name review { @@ -52,9 +50,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_3ac8a246_1( - $skip: Boolean! - ) { + query testQuery_3ac8a246_1($skip: Boolean!) { productBySlug(slug: "product") { name review { @@ -97,9 +93,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { productBySlug(slug: "product") { name review { @@ -120,9 +114,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_3ac8a246_1( - $skip: Boolean! - ) { + query testQuery_3ac8a246_1($skip: Boolean!) { productBySlug(slug: "product") { name review { @@ -138,9 +130,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_3ac8a246_2( - $__fusion_1_id: ID! - ) { + query testQuery_3ac8a246_2($__fusion_1_id: ID!) { reviewById(id: $__fusion_1_id) { title rating diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_Not_Only_On_Field_With_Requirement.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_Not_Only_On_Field_With_Requirement.yaml index ae680144b83..84ca8d82df3 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_Not_Only_On_Field_With_Requirement.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_Not_Only_On_Field_With_Requirement.yaml @@ -1,9 +1,7 @@ title: Lookup_Skip_Not_Only_On_Field_With_Requirement request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { productBySlug(slug: "product") { dimension @skip(if: $skip) price @@ -88,9 +86,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_3197e72d_2( - $__fusion_1_id: ID! - ) { + query testQuery_3197e72d_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { price } @@ -112,9 +108,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { productBySlug(slug: "product") { price id @fusion__requirement @@ -140,9 +134,7 @@ operationPlan: type: Operation schema: C operation: | - query testQuery_3197e72d_2( - $__fusion_1_id: ID! - ) { + query testQuery_3197e72d_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { price } @@ -159,10 +151,7 @@ operationPlan: type: Operation schema: C operation: | - query testQuery_3197e72d_3( - $__fusion_2_size: Int! - $__fusion_3_id: ID! - ) { + query testQuery_3197e72d_3($__fusion_2_size: Int!, $__fusion_3_id: ID!) { productById(id: $__fusion_3_id) { dimension(size: $__fusion_2_size) } @@ -186,9 +175,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_3197e72d_4( - $__fusion_4_id: ID! - ) { + query testQuery_3197e72d_4($__fusion_4_id: ID!) { productById(id: $__fusion_4_id) { size } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_On_Field_Fetched_Through_Lookup.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_On_Field_Fetched_Through_Lookup.yaml index 8ed60e6dda2..b5147dbc8f6 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_On_Field_Fetched_Through_Lookup.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_On_Field_Fetched_Through_Lookup.yaml @@ -1,9 +1,7 @@ title: Lookup_Skip_On_Field_Fetched_Through_Lookup request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { productBySlug(slug: "product") { name review { @@ -87,9 +85,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { productBySlug(slug: "product") { name review { @@ -119,9 +115,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_c8d03103_2( - $__fusion_1_id: ID! - ) { + query testQuery_c8d03103_2($__fusion_1_id: ID!) { reviewById(id: $__fusion_1_id) { title } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_On_Field_With_Requirement.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_On_Field_With_Requirement.yaml index 8fdd2fb1079..cdb89687779 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_On_Field_With_Requirement.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_On_Field_With_Requirement.yaml @@ -1,9 +1,7 @@ title: Lookup_Skip_On_Field_With_Requirement request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { productBySlug(slug: "product") { dimension @skip(if: $skip) } @@ -83,9 +81,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { productBySlug(slug: "product") { id @fusion__requirement size @fusion__requirement @@ -110,10 +106,7 @@ operationPlan: type: Operation schema: C operation: | - query testQuery_1a5d8806_3( - $__fusion_2_size: Int! - $__fusion_3_id: ID! - ) { + query testQuery_1a5d8806_3($__fusion_2_size: Int!, $__fusion_3_id: ID!) { productById(id: $__fusion_3_id) { dimension(size: $__fusion_2_size) } @@ -137,9 +130,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_1a5d8806_4( - $__fusion_4_id: ID! - ) { + query testQuery_1a5d8806_4($__fusion_4_id: ID!) { productById(id: $__fusion_4_id) { size } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_On_Parent_Field_Of_Field_Fetched_Through_Lookup.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_On_Parent_Field_Of_Field_Fetched_Through_Lookup.yaml index 18bba3d98b7..fa3d331b537 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_On_Parent_Field_Of_Field_Fetched_Through_Lookup.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_On_Parent_Field_Of_Field_Fetched_Through_Lookup.yaml @@ -1,9 +1,7 @@ title: Lookup_Skip_On_Parent_Field_Of_Field_Fetched_Through_Lookup request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { productBySlug(slug: "product") { name review @skip(if: $skip) { @@ -48,9 +46,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_dcf2affd_1( - $skip: Boolean! - ) { + query testQuery_dcf2affd_1($skip: Boolean!) { productBySlug(slug: "product") { name review @skip(if: $skip) { @@ -89,9 +85,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { productBySlug(slug: "product") { name review @skip(if: $skip) { @@ -109,9 +103,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_dcf2affd_1( - $skip: Boolean! - ) { + query testQuery_dcf2affd_1($skip: Boolean!) { productBySlug(slug: "product") { name review @skip(if: $skip) { @@ -125,9 +117,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_dcf2affd_2( - $__fusion_1_id: ID! - ) { + query testQuery_dcf2affd_2($__fusion_1_id: ID!) { reviewById(id: $__fusion_1_id) { title } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_Only_On_Some_Fields_Fetched_Through_Lookup.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_Only_On_Some_Fields_Fetched_Through_Lookup.yaml index 1ebfac864d4..870866eef1a 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_Only_On_Some_Fields_Fetched_Through_Lookup.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Lookup_Skip_Only_On_Some_Fields_Fetched_Through_Lookup.yaml @@ -1,9 +1,7 @@ title: Lookup_Skip_Only_On_Some_Fields_Fetched_Through_Lookup request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { productBySlug(slug: "product") { name review { @@ -92,10 +90,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_8a7e6c10_2( - $skip: Boolean! - $__fusion_1_id: ID! - ) { + query testQuery_8a7e6c10_2($skip: Boolean!, $__fusion_1_id: ID!) { reviewById(id: $__fusion_1_id) { rating title @skip(if: $skip) @@ -119,9 +114,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { productBySlug(slug: "product") { name review { @@ -152,10 +145,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_8a7e6c10_2( - $skip: Boolean! - $__fusion_1_id: ID! - ) { + query testQuery_8a7e6c10_2($skip: Boolean!, $__fusion_1_id: ID!) { reviewById(id: $__fusion_1_id) { rating title @skip(if: $skip) diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Multiple_Skip_Levels_Around_NodeField.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Multiple_Skip_Levels_Around_NodeField.yaml index eebf53efa06..e22ce475181 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Multiple_Skip_Levels_Around_NodeField.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Multiple_Skip_Levels_Around_NodeField.yaml @@ -1,10 +1,7 @@ title: NodeField_Multiple_Skip_Levels_Around_NodeField request: document: | - query testQuery( - $skip1: Boolean! - $skip2: Boolean! - ) { + query testQuery($skip1: Boolean!, $skip2: Boolean!) { ... @skip(if: $skip1) { ... @skip(if: $skip2) { __typename @@ -46,10 +43,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip1: Boolean! - $skip2: Boolean! - ) { + query testQuery($skip1: Boolean!, $skip2: Boolean!) { ... @skip(if: $skip1) { ... @skip(if: $skip2) { __typename diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_Around_Interface_Type_Refinement.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_Around_Interface_Type_Refinement.yaml index 730b6d61091..50427e44ad3 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_Around_Interface_Type_Refinement.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_Around_Interface_Type_Refinement.yaml @@ -1,9 +1,7 @@ title: NodeField_Skip_Around_Interface_Type_Refinement request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { ... @skip(if: $skip) { ... on Votable { @@ -63,9 +61,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_f0a0d960_3( - $skip: Boolean! - ) { + query testQuery_f0a0d960_3($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion { @@ -98,9 +94,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename @fusion__requirement ... on Discussion { @@ -130,9 +124,7 @@ operationPlan: - id: 2 type: Operation operation: | - query testQuery_f0a0d960_2( - $skip: Boolean! - ) { + query testQuery_f0a0d960_2($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... @skip(if: $skip) { @@ -148,9 +140,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_f0a0d960_3( - $skip: Boolean! - ) { + query testQuery_f0a0d960_3($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion { @@ -173,9 +163,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_f0a0d960_4( - $skip: Boolean! - ) { + query testQuery_f0a0d960_4($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Author { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_Around_Multiple_Type_Refinements.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_Around_Multiple_Type_Refinements.yaml index 6762ab5107a..c76ac1d2ca1 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_Around_Multiple_Type_Refinements.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_Around_Multiple_Type_Refinements.yaml @@ -1,9 +1,7 @@ title: NodeField_Skip_Around_Multiple_Type_Refinements request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { ... @skip(if: $skip) { ... on Discussion { @@ -49,9 +47,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_235aa91a_3( - $skip: Boolean! - ) { + query testQuery_235aa91a_3($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion { @@ -97,9 +93,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename @fusion__requirement ... @skip(if: $skip) { @@ -139,9 +133,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_235aa91a_3( - $skip: Boolean! - ) { + query testQuery_235aa91a_3($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion { @@ -160,9 +152,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_235aa91a_4( - $skip: Boolean! - ) { + query testQuery_235aa91a_4($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Author { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_Around_NodeField.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_Around_NodeField.yaml index 0f58e2cb52e..31702ac8b78 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_Around_NodeField.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_Around_NodeField.yaml @@ -1,9 +1,7 @@ title: NodeField_Skip_Around_NodeField request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { ... @skip(if: $skip) { __typename node(id: "RGlzY3Vzc2lvbjox") { @@ -42,9 +40,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { ... @skip(if: $skip) { __typename node(id: "RGlzY3Vzc2lvbjox") { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_Around_Shared_Selections.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_Around_Shared_Selections.yaml index f635ee9a88e..9e0fb392e45 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_Around_Shared_Selections.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_Around_Shared_Selections.yaml @@ -1,9 +1,7 @@ title: NodeField_Skip_Around_Shared_Selections request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { ... @skip(if: $skip) { id @@ -49,9 +47,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_61fcbd49_3( - $skip: Boolean! - ) { + query testQuery_61fcbd49_3($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion { @@ -97,9 +93,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename @fusion__requirement ... on Discussion { @@ -123,9 +117,7 @@ operationPlan: - id: 2 type: Operation operation: | - query testQuery_61fcbd49_2( - $skip: Boolean! - ) { + query testQuery_61fcbd49_2($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename id @skip(if: $skip) @@ -139,9 +131,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_61fcbd49_3( - $skip: Boolean! - ) { + query testQuery_61fcbd49_3($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Interface_Selection.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Interface_Selection.yaml index b9cd556af89..be0c0cfe814 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Interface_Selection.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Interface_Selection.yaml @@ -1,9 +1,7 @@ title: NodeField_Skip_On_Interface_Selection request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { ... on Authorable { author @skip(if: $skip) { @@ -60,9 +58,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_7ae73f43_3( - $skip: Boolean! - ) { + query testQuery_7ae73f43_3($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion { @@ -107,9 +103,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename @fusion__requirement ... on Authorable { @@ -149,9 +143,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_7ae73f43_3( - $skip: Boolean! - ) { + query testQuery_7ae73f43_3($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion { @@ -171,9 +163,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_7ae73f43_4( - $__fusion_1_id: ID! - ) { + query testQuery_7ae73f43_4($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { username } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Interface_Selection_Type_Refinement_With_Same_Unskipped_Selection.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Interface_Selection_Type_Refinement_With_Same_Unskipped_Selection.yaml index cfb1da85703..9e719702193 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Interface_Selection_Type_Refinement_With_Same_Unskipped_Selection.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Interface_Selection_Type_Refinement_With_Same_Unskipped_Selection.yaml @@ -1,9 +1,7 @@ title: NodeField_Skip_On_Interface_Selection_Type_Refinement_With_Same_Unskipped_Selection request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { ... on Authorable { author @skip(if: $skip) { @@ -59,9 +57,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_ff22954e_3( - $skip: Boolean! - ) { + query testQuery_ff22954e_3($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion { @@ -111,9 +107,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_ff22954e_4( - $__fusion_1_id: ID! - ) { + query testQuery_ff22954e_4($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { rating } @@ -135,9 +129,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename @fusion__requirement ... on Authorable { @@ -180,9 +172,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_ff22954e_3( - $skip: Boolean! - ) { + query testQuery_ff22954e_3($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion { @@ -204,9 +194,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_ff22954e_4( - $__fusion_1_id: ID! - ) { + query testQuery_ff22954e_4($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { rating } @@ -223,9 +211,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_ff22954e_5( - $__fusion_2_id: ID! - ) { + query testQuery_ff22954e_5($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { username } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Interface_Type_Refinement.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Interface_Type_Refinement.yaml index dbb0e6bc8a6..47b99b1cc66 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Interface_Type_Refinement.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Interface_Type_Refinement.yaml @@ -1,9 +1,7 @@ title: NodeField_Skip_On_Interface_Type_Refinement request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { ... on Votable @skip(if: $skip) { viewerCanVote @@ -54,9 +52,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_eaa5be75_3( - $skip: Boolean! - ) { + query testQuery_eaa5be75_3($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion { @@ -84,9 +80,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename @fusion__requirement ... on Votable @skip(if: $skip) { @@ -121,9 +115,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_eaa5be75_3( - $skip: Boolean! - ) { + query testQuery_eaa5be75_3($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion { @@ -142,9 +134,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_eaa5be75_4( - $skip: Boolean! - ) { + query testQuery_eaa5be75_4($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Author { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_NodeField.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_NodeField.yaml index 4ae7e091404..d23f453de7b 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_NodeField.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_NodeField.yaml @@ -1,9 +1,7 @@ title: NodeField_Skip_On_NodeField request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") @skip(if: $skip) { __typename } @@ -39,9 +37,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") @skip(if: $skip) { __typename } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Selection_In_Type_Refinement.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Selection_In_Type_Refinement.yaml index c7fff1e3ebf..273839df89b 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Selection_In_Type_Refinement.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Selection_In_Type_Refinement.yaml @@ -1,9 +1,7 @@ title: NodeField_Skip_On_Selection_In_Type_Refinement request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion { @@ -47,9 +45,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_56cd9653_3( - $skip: Boolean! - ) { + query testQuery_56cd9653_3($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion { @@ -75,9 +71,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion { @@ -111,9 +105,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_56cd9653_3( - $skip: Boolean! - ) { + query testQuery_56cd9653_3($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Shared_Selection.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Shared_Selection.yaml index 3f30992df97..8e78ba90570 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Shared_Selection.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Shared_Selection.yaml @@ -1,9 +1,7 @@ title: NodeField_Skip_On_Shared_Selection request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { id @skip(if: $skip) ... on Discussion { @@ -47,9 +45,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_4a9f6178_3( - $skip: Boolean! - ) { + query testQuery_4a9f6178_3($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion { @@ -95,9 +91,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename @fusion__requirement ... on Discussion { @@ -121,9 +115,7 @@ operationPlan: - id: 2 type: Operation operation: | - query testQuery_4a9f6178_2( - $skip: Boolean! - ) { + query testQuery_4a9f6178_2($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename id @skip(if: $skip) @@ -137,9 +129,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_4a9f6178_3( - $skip: Boolean! - ) { + query testQuery_4a9f6178_3($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Type_Refinement.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Type_Refinement.yaml index 38e47856701..d55e79eaaad 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Type_Refinement.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.NodeField_Skip_On_Type_Refinement.yaml @@ -1,9 +1,7 @@ title: NodeField_Skip_On_Type_Refinement request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion @skip(if: $skip) { @@ -47,9 +45,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_fbcbdaf4_3( - $skip: Boolean! - ) { + query testQuery_fbcbdaf4_3($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion { @@ -77,9 +73,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion @skip(if: $skip) { @@ -113,9 +107,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_fbcbdaf4_3( - $skip: Boolean! - ) { + query testQuery_fbcbdaf4_3($skip: Boolean!) { node(id: "RGlzY3Vzc2lvbjox") { __typename ... on Discussion { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Multiple_Skip_Levels_Around_Fields_From_Different_Source_Schemas.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Multiple_Skip_Levels_Around_Fields_From_Different_Source_Schemas.yaml index 520b810c528..916b3a346e1 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Multiple_Skip_Levels_Around_Fields_From_Different_Source_Schemas.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Multiple_Skip_Levels_Around_Fields_From_Different_Source_Schemas.yaml @@ -1,10 +1,7 @@ title: Root_Multiple_Skip_Levels_Around_Fields_From_Different_Source_Schemas request: document: | - query testQuery( - $skip1: Boolean! - $skip2: Boolean! - ) { + query testQuery($skip1: Boolean!, $skip2: Boolean!) { ... @skip(if: $skip1) { ... @skip(if: $skip2) { productBySlug(slug: "product") { @@ -57,10 +54,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip1: Boolean! - $skip2: Boolean! - ) { + query testQuery($skip1: Boolean!, $skip2: Boolean!) { ... @skip(if: $skip1) { ... @skip(if: $skip2) { productBySlug(slug: "product") { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Skip_Around_Fields_From_Different_Source_Schemas.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Skip_Around_Fields_From_Different_Source_Schemas.yaml index a18ef66b070..602ca179062 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Skip_Around_Fields_From_Different_Source_Schemas.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Skip_Around_Fields_From_Different_Source_Schemas.yaml @@ -1,9 +1,7 @@ title: Root_Skip_Around_Fields_From_Different_Source_Schemas request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { ... @skip(if: $skip) { productBySlug(slug: "product") { name @@ -53,9 +51,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { ... @skip(if: $skip) { productBySlug(slug: "product") { name diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Skip_Around_Fields_Of_Same_Source_Schema.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Skip_Around_Fields_Of_Same_Source_Schema.yaml index ab46e556239..c6f14d61578 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Skip_Around_Fields_Of_Same_Source_Schema.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Skip_Around_Fields_Of_Same_Source_Schema.yaml @@ -1,9 +1,7 @@ title: Root_Skip_Around_Fields_Of_Same_Source_Schema request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { ... @skip(if: $skip) { productBySlug(slug: "product") { name @@ -45,9 +43,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { ... @skip(if: $skip) { productBySlug(slug: "product") { name diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Skip_On_Field.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Skip_On_Field.yaml index 398bc1633d2..b40ee1ad8a3 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Skip_On_Field.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Skip_On_Field.yaml @@ -1,9 +1,7 @@ title: Root_Skip_On_Field request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { productBySlug(slug: "product") @skip(if: $skip) { name } @@ -35,9 +33,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { productBySlug(slug: "product") @skip(if: $skip) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Skip_Only_On_Some_Fields_From_Different_Source_Schemas.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Skip_Only_On_Some_Fields_From_Different_Source_Schemas.yaml index 6afea1995fc..81d8b6ff945 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Skip_Only_On_Some_Fields_From_Different_Source_Schemas.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Skip_Only_On_Some_Fields_From_Different_Source_Schemas.yaml @@ -1,9 +1,7 @@ title: Root_Skip_Only_On_Some_Fields_From_Different_Source_Schemas request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { productBySlug(slug: "product") @skip(if: $skip) { name } @@ -74,9 +72,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { viewer { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Skip_Only_On_Some_Fields_Of_Same_Source_Schema.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Skip_Only_On_Some_Fields_Of_Same_Source_Schema.yaml index 885dd1ec51f..bc0df1bdb93 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Skip_Only_On_Some_Fields_Of_Same_Source_Schema.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.Root_Skip_Only_On_Some_Fields_Of_Same_Source_Schema.yaml @@ -1,9 +1,7 @@ title: Root_Skip_Only_On_Some_Fields_Of_Same_Source_Schema request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { productBySlug(slug: "product") @skip(if: $skip) { name } @@ -48,9 +46,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_d58c3d50_1( - $skip: Boolean! - ) { + query testQuery_d58c3d50_1($skip: Boolean!) { viewer { name } @@ -75,9 +71,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { viewer { name } @@ -94,9 +88,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_d58c3d50_1( - $skip: Boolean! - ) { + query testQuery_d58c3d50_1($skip: Boolean!) { viewer { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.SharedPath_Multiple_Skip_Levels_Around_Entry_Field.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.SharedPath_Multiple_Skip_Levels_Around_Entry_Field.yaml index fa731c8a111..41ff378ae2b 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.SharedPath_Multiple_Skip_Levels_Around_Entry_Field.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.SharedPath_Multiple_Skip_Levels_Around_Entry_Field.yaml @@ -1,10 +1,7 @@ title: SharedPath_Multiple_Skip_Levels_Around_Entry_Field request: document: | - query testQuery( - $skip1: Boolean! - $skip2: Boolean! - ) { + query testQuery($skip1: Boolean!, $skip2: Boolean!) { ... @skip(if: $skip1) { ... @skip(if: $skip2) { viewer { @@ -54,10 +51,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip1: Boolean! - $skip2: Boolean! - ) { + query testQuery($skip1: Boolean!, $skip2: Boolean!) { ... @skip(if: $skip1) { viewer @skip(if: $skip2) { fieldA diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.SharedPath_Multiple_Skip_Levels_Around_Fields_Below_Entry_Field.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.SharedPath_Multiple_Skip_Levels_Around_Fields_Below_Entry_Field.yaml index 62ce68e78cf..642360ff893 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.SharedPath_Multiple_Skip_Levels_Around_Fields_Below_Entry_Field.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.SharedPath_Multiple_Skip_Levels_Around_Fields_Below_Entry_Field.yaml @@ -1,10 +1,7 @@ title: SharedPath_Multiple_Skip_Levels_Around_Fields_Below_Entry_Field request: document: | - query testQuery( - $skip1: Boolean! - $skip2: Boolean! - ) { + query testQuery($skip1: Boolean!, $skip2: Boolean!) { viewer { ... @skip(if: $skip1) { ... @skip(if: $skip2) { @@ -44,10 +41,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_c099bff0_1( - $skip1: Boolean! - $skip2: Boolean! - ) { + query testQuery_c099bff0_1($skip1: Boolean!, $skip2: Boolean!) { viewer { ... @skip(if: $skip1) { ... @skip(if: $skip2) { @@ -85,10 +79,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip1: Boolean! - $skip2: Boolean! - ) { + query testQuery($skip1: Boolean!, $skip2: Boolean!) { viewer { ... @skip(if: $skip1) { ... @skip(if: $skip2) { @@ -107,10 +98,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_c099bff0_1( - $skip1: Boolean! - $skip2: Boolean! - ) { + query testQuery_c099bff0_1($skip1: Boolean!, $skip2: Boolean!) { viewer { ... @skip(if: $skip1) { ... @skip(if: $skip2) { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.SharedPath_Skip_On_Entry_Field.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.SharedPath_Skip_On_Entry_Field.yaml index bdf3b92580e..abe31d33941 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.SharedPath_Skip_On_Entry_Field.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.SharedPath_Skip_On_Entry_Field.yaml @@ -1,9 +1,7 @@ title: SharedPath_Skip_On_Entry_Field request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { viewer @skip(if: $skip) { fieldA fieldB @@ -48,9 +46,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { viewer @skip(if: $skip) { fieldA fieldB diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.SharedPath_Skip_On_Field_Below_Entry_Field.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.SharedPath_Skip_On_Field_Below_Entry_Field.yaml index e743e96a718..50c23e2232b 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.SharedPath_Skip_On_Field_Below_Entry_Field.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/ConditionalTests.SharedPath_Skip_On_Field_Below_Entry_Field.yaml @@ -1,9 +1,7 @@ title: SharedPath_Skip_On_Field_Below_Entry_Field request: document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { viewer { fieldA fieldB @skip(if: $skip) @@ -72,9 +70,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_c549857e_2( - $skip: Boolean! - ) { + query testQuery_c549857e_2($skip: Boolean!) { viewer { fieldB @skip(if: $skip) } @@ -94,9 +90,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $skip: Boolean! - ) { + query testQuery($skip: Boolean!) { viewer { fieldA fieldB @skip(if: $skip) @@ -120,9 +114,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_c549857e_2( - $skip: Boolean! - ) { + query testQuery_c549857e_2($skip: Boolean!) { viewer { fieldB @skip(if: $skip) } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_List_Of_Files.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_List_Of_Files.yaml index a56d122b272..df31e12c1f6 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_List_Of_Files.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_List_Of_Files.yaml @@ -86,7 +86,12 @@ sourceSchemas: LIST } - directive @serializeAs("The primitive type a scalar is serialized to." type: [ScalarSerializationType!]! "The ECMA-262 regex pattern that the serialized scalar value conforms to." pattern: String) on SCALAR + directive @serializeAs( + "The primitive type a scalar is serialized to." + type: [ScalarSerializationType!]! + "The ECMA-262 regex pattern that the serialized scalar value conforms to." + pattern: String + ) on SCALAR "The `Upload` scalar type represents a file upload." scalar Upload @serializeAs(type: STRING) @@ -99,7 +104,7 @@ sourceSchemas: Content-Type: application/json; charset=utf-8 Content-Disposition: form-data; name=operations - {"query":"query Op_c3581bf2_1(\n $files: [Upload!]!\n) {\n multiUpload(files: $files) {\n fileName\n contentType\n content\n }\n}","variables":{"files":[null,null]}} + {"query":"query Op_c3581bf2_1($files: [Upload!]!) {\n multiUpload(files: $files) {\n fileName\n contentType\n content\n }\n}","variables":{"files":[null,null]}} --f56524ab-5626-4955-b296-234a097b44f6 Content-Type: application/json; charset=utf-8 Content-Disposition: form-data; name=map @@ -138,9 +143,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $files: [Upload!]! - ) { + query($files: [Upload!]!) { multiUpload(files: $files) { fileName contentType @@ -155,9 +158,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_c3581bf2_1( - $files: [Upload!]! - ) { + query Op_c3581bf2_1($files: [Upload!]!) { multiUpload(files: $files) { fileName contentType diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_List_Of_Files_In_Input_Object.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_List_Of_Files_In_Input_Object.yaml index b7db32b7cea..b793343ad84 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_List_Of_Files_In_Input_Object.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_List_Of_Files_In_Input_Object.yaml @@ -86,7 +86,12 @@ sourceSchemas: LIST } - directive @serializeAs("The primitive type a scalar is serialized to." type: [ScalarSerializationType!]! "The ECMA-262 regex pattern that the serialized scalar value conforms to." pattern: String) on SCALAR + directive @serializeAs( + "The primitive type a scalar is serialized to." + type: [ScalarSerializationType!]! + "The ECMA-262 regex pattern that the serialized scalar value conforms to." + pattern: String + ) on SCALAR "The `Upload` scalar type represents a file upload." scalar Upload @serializeAs(type: STRING) @@ -99,7 +104,7 @@ sourceSchemas: Content-Type: application/json; charset=utf-8 Content-Disposition: form-data; name=operations - {"query":"query Op_35bf24ea_1(\n $input: FilesInput!\n) {\n multiUploadWithInput(input: $input) {\n fileName\n contentType\n content\n }\n}","variables":{"input":{"files":[null,null]}}} + {"query":"query Op_35bf24ea_1($input: FilesInput!) {\n multiUploadWithInput(input: $input) {\n fileName\n contentType\n content\n }\n}","variables":{"input":{"files":[null,null]}}} --f56524ab-5626-4955-b296-234a097b44f6 Content-Type: application/json; charset=utf-8 Content-Disposition: form-data; name=map @@ -138,9 +143,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $input: FilesInput! - ) { + query($input: FilesInput!) { multiUploadWithInput(input: $input) { fileName contentType @@ -155,9 +158,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_35bf24ea_1( - $input: FilesInput! - ) { + query Op_35bf24ea_1($input: FilesInput!) { multiUploadWithInput(input: $input) { fileName contentType diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_List_Of_Files_In_Input_Object_Inline.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_List_Of_Files_In_Input_Object_Inline.yaml index 81a0f908b87..edde7d5cafb 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_List_Of_Files_In_Input_Object_Inline.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_List_Of_Files_In_Input_Object_Inline.yaml @@ -86,7 +86,12 @@ sourceSchemas: LIST } - directive @serializeAs("The primitive type a scalar is serialized to." type: [ScalarSerializationType!]! "The ECMA-262 regex pattern that the serialized scalar value conforms to." pattern: String) on SCALAR + directive @serializeAs( + "The primitive type a scalar is serialized to." + type: [ScalarSerializationType!]! + "The ECMA-262 regex pattern that the serialized scalar value conforms to." + pattern: String + ) on SCALAR "The `Upload` scalar type represents a file upload." scalar Upload @serializeAs(type: STRING) @@ -99,7 +104,7 @@ sourceSchemas: Content-Type: application/json; charset=utf-8 Content-Disposition: form-data; name=operations - {"query":"query Op_8c427040_1(\n $files: [Upload!]!\n) {\n multiUploadWithInput(input: { files: $files }) {\n fileName\n contentType\n content\n }\n}","variables":{"files":[null,null]}} + {"query":"query Op_8c427040_1($files: [Upload!]!) {\n multiUploadWithInput(input: { files: $files }) {\n fileName\n contentType\n content\n }\n}","variables":{"files":[null,null]}} --f56524ab-5626-4955-b296-234a097b44f6 Content-Type: application/json; charset=utf-8 Content-Disposition: form-data; name=map @@ -138,9 +143,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $files: [Upload!]! - ) { + query($files: [Upload!]!) { multiUploadWithInput(input: { files: $files }) { fileName contentType @@ -155,9 +158,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_8c427040_1( - $files: [Upload!]! - ) { + query Op_8c427040_1($files: [Upload!]!) { multiUploadWithInput(input: { files: $files }) { fileName contentType diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_Nullable_File.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_Nullable_File.yaml index 1a56f3c5b27..7bc3e98e668 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_Nullable_File.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_Nullable_File.yaml @@ -74,7 +74,12 @@ sourceSchemas: LIST } - directive @serializeAs("The primitive type a scalar is serialized to." type: [ScalarSerializationType!]! "The ECMA-262 regex pattern that the serialized scalar value conforms to." pattern: String) on SCALAR + directive @serializeAs( + "The primitive type a scalar is serialized to." + type: [ScalarSerializationType!]! + "The ECMA-262 regex pattern that the serialized scalar value conforms to." + pattern: String + ) on SCALAR "The `Upload` scalar type represents a file upload." scalar Upload @serializeAs(type: STRING) @@ -87,7 +92,7 @@ sourceSchemas: Content-Type: application/json; charset=utf-8 Content-Disposition: form-data; name=operations - {"query":"query Op_86d793bb_1(\n $file: Upload\n) {\n nullableUpload(file: $file) {\n fileName\n contentType\n content\n }\n}","variables":{"file":null}} + {"query":"query Op_86d793bb_1($file: Upload) {\n nullableUpload(file: $file) {\n fileName\n contentType\n content\n }\n}","variables":{"file":null}} --f56524ab-5626-4955-b296-234a097b44f6 Content-Type: application/json; charset=utf-8 Content-Disposition: form-data; name=map @@ -114,9 +119,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $file: Upload - ) { + query($file: Upload) { nullableUpload(file: $file) { fileName contentType @@ -131,9 +134,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_86d793bb_1( - $file: Upload - ) { + query Op_86d793bb_1($file: Upload) { nullableUpload(file: $file) { fileName contentType diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_Nullable_File_Not_Provided.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_Nullable_File_Not_Provided.yaml index a2c23cb1b29..48706059cbd 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_Nullable_File_Not_Provided.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_Nullable_File_Not_Provided.yaml @@ -1,9 +1,7 @@ title: Upload_Nullable_File_Not_Provided request: document: | - query( - $file: Upload - ) { + query($file: Upload) { nullableUpload(file: $file) { fileName contentType @@ -66,7 +64,12 @@ sourceSchemas: LIST } - directive @serializeAs("The primitive type a scalar is serialized to." type: [ScalarSerializationType!]! "The ECMA-262 regex pattern that the serialized scalar value conforms to." pattern: String) on SCALAR + directive @serializeAs( + "The primitive type a scalar is serialized to." + type: [ScalarSerializationType!]! + "The ECMA-262 regex pattern that the serialized scalar value conforms to." + pattern: String + ) on SCALAR "The `Upload` scalar type represents a file upload." scalar Upload @serializeAs(type: STRING) @@ -74,9 +77,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_86d793bb_1( - $file: Upload - ) { + query Op_86d793bb_1($file: Upload) { nullableUpload(file: $file) { fileName contentType @@ -98,9 +99,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $file: Upload - ) { + query($file: Upload) { nullableUpload(file: $file) { fileName contentType @@ -115,9 +114,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_86d793bb_1( - $file: Upload - ) { + query Op_86d793bb_1($file: Upload) { nullableUpload(file: $file) { fileName contentType diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_Single_File.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_Single_File.yaml index 1df3d1137b1..7ee04942441 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_Single_File.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_Single_File.yaml @@ -74,7 +74,12 @@ sourceSchemas: LIST } - directive @serializeAs("The primitive type a scalar is serialized to." type: [ScalarSerializationType!]! "The ECMA-262 regex pattern that the serialized scalar value conforms to." pattern: String) on SCALAR + directive @serializeAs( + "The primitive type a scalar is serialized to." + type: [ScalarSerializationType!]! + "The ECMA-262 regex pattern that the serialized scalar value conforms to." + pattern: String + ) on SCALAR "The `Upload` scalar type represents a file upload." scalar Upload @serializeAs(type: STRING) @@ -87,7 +92,7 @@ sourceSchemas: Content-Type: application/json; charset=utf-8 Content-Disposition: form-data; name=operations - {"query":"query Op_6e1beb14_1(\n $file: Upload!\n) {\n singleUpload(file: $file) {\n fileName\n contentType\n content\n }\n}","variables":{"file":null}} + {"query":"query Op_6e1beb14_1($file: Upload!) {\n singleUpload(file: $file) {\n fileName\n contentType\n content\n }\n}","variables":{"file":null}} --f56524ab-5626-4955-b296-234a097b44f6 Content-Type: application/json; charset=utf-8 Content-Disposition: form-data; name=map @@ -114,9 +119,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $file: Upload! - ) { + query($file: Upload!) { singleUpload(file: $file) { fileName contentType @@ -131,9 +134,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_6e1beb14_1( - $file: Upload! - ) { + query Op_6e1beb14_1($file: Upload!) { singleUpload(file: $file) { fileName contentType diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_Single_File_In_Input_Object.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_Single_File_In_Input_Object.yaml index 46cf1a7f5d8..1580b62dc78 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_Single_File_In_Input_Object.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_Single_File_In_Input_Object.yaml @@ -74,7 +74,12 @@ sourceSchemas: LIST } - directive @serializeAs("The primitive type a scalar is serialized to." type: [ScalarSerializationType!]! "The ECMA-262 regex pattern that the serialized scalar value conforms to." pattern: String) on SCALAR + directive @serializeAs( + "The primitive type a scalar is serialized to." + type: [ScalarSerializationType!]! + "The ECMA-262 regex pattern that the serialized scalar value conforms to." + pattern: String + ) on SCALAR "The `Upload` scalar type represents a file upload." scalar Upload @serializeAs(type: STRING) @@ -87,7 +92,7 @@ sourceSchemas: Content-Type: application/json; charset=utf-8 Content-Disposition: form-data; name=operations - {"query":"query Op_6888e670_1(\n $input: FileInput!\n) {\n singleUploadWithInput(input: $input) {\n fileName\n contentType\n content\n }\n}","variables":{"input":{"file":null}}} + {"query":"query Op_6888e670_1($input: FileInput!) {\n singleUploadWithInput(input: $input) {\n fileName\n contentType\n content\n }\n}","variables":{"input":{"file":null}}} --f56524ab-5626-4955-b296-234a097b44f6 Content-Type: application/json; charset=utf-8 Content-Disposition: form-data; name=map @@ -114,9 +119,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $input: FileInput! - ) { + query($input: FileInput!) { singleUploadWithInput(input: $input) { fileName contentType @@ -131,9 +134,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_6888e670_1( - $input: FileInput! - ) { + query Op_6888e670_1($input: FileInput!) { singleUploadWithInput(input: $input) { fileName contentType diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_Single_File_In_Input_Object_Inline.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_Single_File_In_Input_Object_Inline.yaml index ba3d09bf49f..38d9b654d29 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_Single_File_In_Input_Object_Inline.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_Single_File_In_Input_Object_Inline.yaml @@ -74,7 +74,12 @@ sourceSchemas: LIST } - directive @serializeAs("The primitive type a scalar is serialized to." type: [ScalarSerializationType!]! "The ECMA-262 regex pattern that the serialized scalar value conforms to." pattern: String) on SCALAR + directive @serializeAs( + "The primitive type a scalar is serialized to." + type: [ScalarSerializationType!]! + "The ECMA-262 regex pattern that the serialized scalar value conforms to." + pattern: String + ) on SCALAR "The `Upload` scalar type represents a file upload." scalar Upload @serializeAs(type: STRING) @@ -87,7 +92,7 @@ sourceSchemas: Content-Type: application/json; charset=utf-8 Content-Disposition: form-data; name=operations - {"query":"query Op_d4f37e75_1(\n $file: Upload!\n) {\n singleUploadWithInput(input: { file: $file }) {\n fileName\n contentType\n content\n }\n}","variables":{"file":null}} + {"query":"query Op_d4f37e75_1($file: Upload!) {\n singleUploadWithInput(input: { file: $file }) {\n fileName\n contentType\n content\n }\n}","variables":{"file":null}} --f56524ab-5626-4955-b296-234a097b44f6 Content-Type: application/json; charset=utf-8 Content-Disposition: form-data; name=map @@ -114,9 +119,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $file: Upload! - ) { + query($file: Upload!) { singleUploadWithInput(input: { file: $file }) { fileName contentType @@ -131,9 +134,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_d4f37e75_1( - $file: Upload! - ) { + query Op_d4f37e75_1($file: Upload!) { singleUploadWithInput(input: { file: $file }) { fileName contentType diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Concrete_Type_Branch_Requested.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Concrete_Type_Branch_Requested.yaml index 35c326d1fba..999c1e48956 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Concrete_Type_Branch_Requested.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Concrete_Type_Branch_Requested.yaml @@ -90,9 +90,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e567807e_4( - $__fusion_1_id: ID! - ) { + query Op_e567807e_4($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { commentCount } @@ -162,9 +160,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e567807e_4( - $__fusion_1_id: ID! - ) { + query Op_e567807e_4($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { commentCount } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Alongside_Regular_Root_Selections.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Alongside_Regular_Root_Selections.yaml index 5c23a77a65f..13f2821eb17 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Alongside_Regular_Root_Selections.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Alongside_Regular_Root_Selections.yaml @@ -1,9 +1,7 @@ title: Node_Field_Alongside_Regular_Root_Selections request: document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { viewer { username } @@ -59,9 +57,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_a938b4c5_3( - $id: ID! - ) { + query testQuery_a938b4c5_3($id: ID!) { node(id: $id) { __typename ... on Discussion { @@ -106,9 +102,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { viewer { username } @@ -134,9 +128,7 @@ operationPlan: - id: 2 type: Operation operation: | - query testQuery_a938b4c5_2( - $id: ID! - ) { + query testQuery_a938b4c5_2($id: ID!) { node(id: $id) { __typename } @@ -149,9 +141,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_a938b4c5_3( - $id: ID! - ) { + query testQuery_a938b4c5_3($id: ID!) { node(id: $id) { __typename ... on Discussion { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Concrete_Type_Has_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Concrete_Type_Has_Dependency.yaml index 3bd35ce7a51..28666ef5863 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Concrete_Type_Has_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Concrete_Type_Has_Dependency.yaml @@ -1,9 +1,7 @@ title: Node_Field_Concrete_Type_Has_Dependency request: document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { node(id: $id) { ... on Discussion { name @@ -48,9 +46,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_6945dbce_3( - $id: ID! - ) { + query testQuery_6945dbce_3($id: ID!) { node(id: $id) { __typename ... on Discussion { @@ -98,9 +94,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_6945dbce_4( - $__fusion_1_discussionId: ID! - ) { + query testQuery_6945dbce_4($__fusion_1_discussionId: ID!) { discussionById(discussionId: $__fusion_1_discussionId) { commentCount } @@ -122,9 +116,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { node(id: $id) { __typename @fusion__requirement id @fusion__requirement @@ -149,9 +141,7 @@ operationPlan: - id: 2 type: Operation operation: | - query testQuery_6945dbce_2( - $id: ID! - ) { + query testQuery_6945dbce_2($id: ID!) { node(id: $id) { __typename } @@ -164,9 +154,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_6945dbce_3( - $id: ID! - ) { + query testQuery_6945dbce_3($id: ID!) { node(id: $id) { __typename ... on Discussion { @@ -184,9 +172,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_6945dbce_4( - $__fusion_1_discussionId: ID! - ) { + query testQuery_6945dbce_4($__fusion_1_discussionId: ID!) { discussionById(discussionId: $__fusion_1_discussionId) { commentCount } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Concrete_Type_Selection_Has_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Concrete_Type_Selection_Has_Dependency.yaml index c8a7ee25d52..6ec4416e143 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Concrete_Type_Selection_Has_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Concrete_Type_Selection_Has_Dependency.yaml @@ -1,9 +1,7 @@ title: Node_Field_Concrete_Type_Selection_Has_Dependency request: document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { node(id: $id) { ... on Discussion { id @@ -60,9 +58,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_163be4ff_3( - $id: ID! - ) { + query testQuery_163be4ff_3($id: ID!) { node: discussionById(id: $id) { __typename id @@ -113,9 +109,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_163be4ff_4( - $__fusion_1_id: ID! - ) { + query testQuery_163be4ff_4($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { @@ -141,9 +135,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { node(id: $id) { __typename @fusion__requirement ... on Discussion { @@ -171,9 +163,7 @@ operationPlan: - id: 2 type: Operation operation: | - query testQuery_163be4ff_2( - $id: ID! - ) { + query testQuery_163be4ff_2($id: ID!) { node(id: $id) { __typename } @@ -186,9 +176,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_163be4ff_3( - $id: ID! - ) { + query testQuery_163be4ff_3($id: ID!) { node: discussionById(id: $id) { __typename id @@ -206,9 +194,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_163be4ff_4( - $__fusion_1_id: ID! - ) { + query testQuery_163be4ff_4($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Selections_On_Interface.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Selections_On_Interface.yaml index fb15acec001..f0114bbcf0a 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Selections_On_Interface.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Selections_On_Interface.yaml @@ -1,9 +1,7 @@ title: Node_Field_Selections_On_Interface request: document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { node(id: $id) { ... on Votable { viewerCanVote @@ -56,9 +54,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_63ca3aaf_3( - $id: ID! - ) { + query testQuery_63ca3aaf_3($id: ID!) { node(id: $id) { __typename ... on Discussion { @@ -85,9 +81,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { node(id: $id) { __typename @fusion__requirement ... on Votable { @@ -111,9 +105,7 @@ operationPlan: - id: 2 type: Operation operation: | - query testQuery_63ca3aaf_2( - $id: ID! - ) { + query testQuery_63ca3aaf_2($id: ID!) { node(id: $id) { __typename } @@ -126,9 +118,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_63ca3aaf_3( - $id: ID! - ) { + query testQuery_63ca3aaf_3($id: ID!) { node(id: $id) { __typename ... on Discussion { @@ -145,9 +135,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_63ca3aaf_4( - $id: ID! - ) { + query testQuery_63ca3aaf_4($id: ID!) { node(id: $id) { __typename ... on Comment { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Selections_On_Interface_And_Concrete_Type.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Selections_On_Interface_And_Concrete_Type.yaml index 6774898fc9b..c005038daa3 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Selections_On_Interface_And_Concrete_Type.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Selections_On_Interface_And_Concrete_Type.yaml @@ -1,9 +1,7 @@ title: Node_Field_Selections_On_Interface_And_Concrete_Type request: document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { node(id: $id) { ... on Votable { viewerCanVote @@ -60,9 +58,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_ef8b97ff_3( - $id: ID! - ) { + query testQuery_ef8b97ff_3($id: ID!) { node(id: $id) { __typename ... on Discussion { @@ -91,9 +87,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { node(id: $id) { __typename @fusion__requirement ... on Votable { @@ -120,9 +114,7 @@ operationPlan: - id: 2 type: Operation operation: | - query testQuery_ef8b97ff_2( - $id: ID! - ) { + query testQuery_ef8b97ff_2($id: ID!) { node(id: $id) { __typename } @@ -135,9 +127,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_ef8b97ff_3( - $id: ID! - ) { + query testQuery_ef8b97ff_3($id: ID!) { node(id: $id) { __typename ... on Discussion { @@ -155,9 +145,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_ef8b97ff_4( - $id: ID! - ) { + query testQuery_ef8b97ff_4($id: ID!) { node(id: $id) { __typename ... on Comment { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Selections_On_Interface_And_Concrete_Type_Both_Have_Different_Dependencies.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Selections_On_Interface_And_Concrete_Type_Both_Have_Different_Dependencies.yaml index 9b62d3067d0..798e1679b8c 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Selections_On_Interface_And_Concrete_Type_Both_Have_Different_Dependencies.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Selections_On_Interface_And_Concrete_Type_Both_Have_Different_Dependencies.yaml @@ -1,9 +1,7 @@ title: Node_Field_Selections_On_Interface_And_Concrete_Type_Both_Have_Different_Dependencies request: document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { node(id: $id) { __typename id @@ -88,9 +86,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_f7a0a31d_3( - $id: ID! - ) { + query testQuery_f7a0a31d_3($id: ID!) { node(id: $id) { __typename ... on Item2 { @@ -156,9 +152,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_f7a0a31d_4( - $__fusion_1_id: ID! - ) { + query testQuery_f7a0a31d_4($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { @@ -184,9 +178,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_f7a0a31d_5( - $__fusion_2_id: ID! - ) { + query testQuery_f7a0a31d_5($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on Product { @@ -239,9 +231,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { node(id: $id) { __typename id @@ -276,9 +266,7 @@ operationPlan: - id: 2 type: Operation operation: | - query testQuery_f7a0a31d_2( - $id: ID! - ) { + query testQuery_f7a0a31d_2($id: ID!) { node(id: $id) { __typename id @@ -292,9 +280,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_f7a0a31d_3( - $id: ID! - ) { + query testQuery_f7a0a31d_3($id: ID!) { node(id: $id) { __typename ... on Item2 { @@ -317,9 +303,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_f7a0a31d_4( - $__fusion_1_id: ID! - ) { + query testQuery_f7a0a31d_4($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { @@ -339,9 +323,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_f7a0a31d_5( - $__fusion_2_id: ID! - ) { + query testQuery_f7a0a31d_5($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on Product { @@ -361,9 +343,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_f7a0a31d_6( - $id: ID! - ) { + query testQuery_f7a0a31d_6($id: ID!) { node(id: $id) { __typename ... on Item1 { @@ -383,9 +363,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_f7a0a31d_7( - $__fusion_3_id: ID! - ) { + query testQuery_f7a0a31d_7($__fusion_3_id: ID!) { node(id: $__fusion_3_id) { __typename ... on Product { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Selections_On_Interface_And_Concrete_Type_Both_Have_Same_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Selections_On_Interface_And_Concrete_Type_Both_Have_Same_Dependency.yaml index 93c1c21ed67..f114b09b7d7 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Selections_On_Interface_And_Concrete_Type_Both_Have_Same_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Selections_On_Interface_And_Concrete_Type_Both_Have_Same_Dependency.yaml @@ -1,9 +1,7 @@ title: Node_Field_Selections_On_Interface_And_Concrete_Type_Both_Have_Same_Dependency request: document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { node(id: $id) { __typename id @@ -69,9 +67,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_648537b2_3( - $id: ID! - ) { + query testQuery_648537b2_3($id: ID!) { node(id: $id) { __typename ... on Discussion { @@ -123,9 +119,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_648537b2_4( - $__fusion_1_id: ID! - ) { + query testQuery_648537b2_4($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { rating } @@ -147,9 +141,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_648537b2_5( - $__fusion_2_id: ID! - ) { + query testQuery_648537b2_5($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { username } @@ -171,9 +163,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { node(id: $id) { __typename id @@ -206,9 +196,7 @@ operationPlan: - id: 2 type: Operation operation: | - query testQuery_648537b2_2( - $id: ID! - ) { + query testQuery_648537b2_2($id: ID!) { node(id: $id) { __typename id @@ -222,9 +210,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_648537b2_3( - $id: ID! - ) { + query testQuery_648537b2_3($id: ID!) { node(id: $id) { __typename ... on Discussion { @@ -247,9 +233,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_648537b2_4( - $__fusion_1_id: ID! - ) { + query testQuery_648537b2_4($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { rating } @@ -266,9 +250,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_648537b2_5( - $__fusion_2_id: ID! - ) { + query testQuery_648537b2_5($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { username } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Selections_On_Interface_Selection_Has_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Selections_On_Interface_Selection_Has_Dependency.yaml index 661f7149839..409a45ae4cc 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Selections_On_Interface_Selection_Has_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Selections_On_Interface_Selection_Has_Dependency.yaml @@ -1,9 +1,7 @@ title: Node_Field_Selections_On_Interface_Selection_Has_Dependency request: document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { node(id: $id) { __typename id @@ -75,9 +73,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_70eb1308_5( - $id: ID! - ) { + query testQuery_70eb1308_5($id: ID!) { node(id: $id) { __typename ... on Item1 { @@ -137,9 +133,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_70eb1308_6( - $__fusion_2_id: ID! - ) { + query testQuery_70eb1308_6($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on Product { @@ -192,9 +186,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { node(id: $id) { __typename id @@ -222,9 +214,7 @@ operationPlan: - id: 2 type: Operation operation: | - query testQuery_70eb1308_2( - $id: ID! - ) { + query testQuery_70eb1308_2($id: ID!) { node(id: $id) { __typename id @@ -238,9 +228,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_70eb1308_3( - $id: ID! - ) { + query testQuery_70eb1308_3($id: ID!) { node(id: $id) { __typename ... on Item2 { @@ -260,9 +248,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_70eb1308_4( - $__fusion_1_id: ID! - ) { + query testQuery_70eb1308_4($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { @@ -282,9 +268,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_70eb1308_5( - $id: ID! - ) { + query testQuery_70eb1308_5($id: ID!) { node(id: $id) { __typename ... on Item1 { @@ -304,9 +288,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_70eb1308_6( - $__fusion_2_id: ID! - ) { + query testQuery_70eb1308_6($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on Product { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Two_Concrete_Types_Selections_Have_Different_Dependencies.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Two_Concrete_Types_Selections_Have_Different_Dependencies.yaml index 9cc53d96d32..7678de4f6c3 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Two_Concrete_Types_Selections_Have_Different_Dependencies.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Two_Concrete_Types_Selections_Have_Different_Dependencies.yaml @@ -1,9 +1,7 @@ title: Node_Field_Two_Concrete_Types_Selections_Have_Different_Dependencies request: document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { node(id: $id) { ... on Discussion { product { @@ -61,9 +59,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_c0cdf5d7_5( - $id: ID! - ) { + query testQuery_c0cdf5d7_5($id: ID!) { node(id: $id) { __typename ... on Discussion { @@ -135,9 +131,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_c0cdf5d7_6( - $__fusion_2_id: ID! - ) { + query testQuery_c0cdf5d7_6($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on Product { @@ -163,9 +157,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { node(id: $id) { __typename @fusion__requirement ... on Discussion { @@ -199,9 +191,7 @@ operationPlan: - id: 2 type: Operation operation: | - query testQuery_c0cdf5d7_2( - $id: ID! - ) { + query testQuery_c0cdf5d7_2($id: ID!) { node(id: $id) { __typename } @@ -214,9 +204,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_c0cdf5d7_3( - $id: ID! - ) { + query testQuery_c0cdf5d7_3($id: ID!) { node(id: $id) { __typename ... on Review { @@ -235,9 +223,7 @@ operationPlan: type: Operation schema: C operation: | - query testQuery_c0cdf5d7_4( - $__fusion_1_id: ID! - ) { + query testQuery_c0cdf5d7_4($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { @@ -257,9 +243,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_c0cdf5d7_5( - $id: ID! - ) { + query testQuery_c0cdf5d7_5($id: ID!) { node(id: $id) { __typename ... on Discussion { @@ -278,9 +262,7 @@ operationPlan: type: Operation schema: C operation: | - query testQuery_c0cdf5d7_6( - $__fusion_2_id: ID! - ) { + query testQuery_c0cdf5d7_6($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on Product { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Two_Concrete_Types_Selections_Have_Same_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Two_Concrete_Types_Selections_Have_Same_Dependency.yaml index 888a9082a90..29ba60721ef 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Two_Concrete_Types_Selections_Have_Same_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Node_Field_Two_Concrete_Types_Selections_Have_Same_Dependency.yaml @@ -1,9 +1,7 @@ title: Node_Field_Two_Concrete_Types_Selections_Have_Same_Dependency request: document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { node(id: $id) { ... on Discussion { product { @@ -59,9 +57,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_7a72a6b2_5( - $id: ID! - ) { + query testQuery_7a72a6b2_5($id: ID!) { node(id: $id) { __typename ... on Discussion { @@ -133,9 +129,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_7a72a6b2_6( - $__fusion_2_id: ID! - ) { + query testQuery_7a72a6b2_6($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on Product { @@ -161,9 +155,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { node(id: $id) { __typename @fusion__requirement ... on Discussion { @@ -196,9 +188,7 @@ operationPlan: - id: 2 type: Operation operation: | - query testQuery_7a72a6b2_2( - $id: ID! - ) { + query testQuery_7a72a6b2_2($id: ID!) { node(id: $id) { __typename } @@ -211,9 +201,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_7a72a6b2_3( - $id: ID! - ) { + query testQuery_7a72a6b2_3($id: ID!) { node(id: $id) { __typename ... on Review { @@ -232,9 +220,7 @@ operationPlan: type: Operation schema: C operation: | - query testQuery_7a72a6b2_4( - $__fusion_1_id: ID! - ) { + query testQuery_7a72a6b2_4($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { @@ -254,9 +240,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_7a72a6b2_5( - $id: ID! - ) { + query testQuery_7a72a6b2_5($id: ID!) { node(id: $id) { __typename ... on Discussion { @@ -275,9 +259,7 @@ operationPlan: type: Operation schema: C operation: | - query testQuery_7a72a6b2_6( - $__fusion_2_id: ID! - ) { + query testQuery_7a72a6b2_6($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on Product { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Only_Typename_Selected.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Only_Typename_Selected.yaml index 08896cca6a6..6640b3930f9 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Only_Typename_Selected.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Only_Typename_Selected.yaml @@ -1,9 +1,7 @@ title: Only_Typename_Selected request: document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { node(id: $id) { __typename } @@ -44,9 +42,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_539ebaa0_2( - $id: ID! - ) { + query testQuery_539ebaa0_2($id: ID!) { node(id: $id) { __typename } @@ -87,9 +83,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $id: ID! - ) { + query testQuery($id: ID!) { node(id: $id) { __typename } @@ -107,9 +101,7 @@ operationPlan: - id: 2 type: Operation operation: | - query testQuery_539ebaa0_2( - $id: ID! - ) { + query testQuery_539ebaa0_2($id: ID!) { node(id: $id) { __typename } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Two_Node_Fields_With_Alias.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Two_Node_Fields_With_Alias.yaml index c85676ebb02..d23df7c31ba 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Two_Node_Fields_With_Alias.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/GlobalObjectIdentificationTests.Two_Node_Fields_With_Alias.yaml @@ -113,9 +113,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_a361113f_4( - $__fusion_1_id: ID! - ) { + query Op_a361113f_4($__fusion_1_id: ID!) { discussion(id: $__fusion_1_id) { commentCount } @@ -191,9 +189,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_a361113f_4( - $__fusion_1_id: ID! - ) { + query Op_a361113f_4($__fusion_1_id: ID!) { discussion(id: $__fusion_1_id) { commentCount } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InaccessibleTests.Inaccessible_Fields_Can_Be_Used_As_Requirements.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InaccessibleTests.Inaccessible_Fields_Can_Be_Used_As_Requirements.yaml index 02871c5c254..5a1235c853c 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InaccessibleTests.Inaccessible_Fields_Can_Be_Used_As_Requirements.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InaccessibleTests.Inaccessible_Fields_Can_Be_Used_As_Requirements.yaml @@ -94,9 +94,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_2f49c6c6_2( - $__fusion_1_id: Int! - ) { + query Op_2f49c6c6_2($__fusion_1_id: Int!) { authorById(id: $__fusion_1_id) { name } @@ -145,9 +143,7 @@ operationPlan: type: Operation schema: b operation: | - query Op_2f49c6c6_2( - $__fusion_1_id: Int! - ) { + query Op_2f49c6c6_2($__fusion_1_id: Int!) { authorById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntegrationTests.Recursive_Input_Object_Type.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntegrationTests.Recursive_Input_Object_Type.yaml index fe7b1a09a69..a34f5ecc263 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntegrationTests.Recursive_Input_Object_Type.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntegrationTests.Recursive_Input_Object_Type.yaml @@ -1,9 +1,7 @@ title: Recursive_Input_Object_Type request: document: | - query testQuery( - $input: RecursiveInput! - ) { + query testQuery($input: RecursiveInput!) { field(input: $input) } variables: | @@ -37,9 +35,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_4b201a4f_1( - $input: RecursiveInput! - ) { + query testQuery_4b201a4f_1($input: RecursiveInput!) { field(input: $input) } variables: | @@ -59,9 +55,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $input: RecursiveInput! - ) { + query testQuery($input: RecursiveInput!) { field(input: $input) } name: testQuery @@ -73,9 +67,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_4b201a4f_1( - $input: RecursiveInput! - ) { + query testQuery_4b201a4f_1($input: RecursiveInput!) { field(input: $input) } forwardedVariables: diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_Field_Concrete_Type_Linked_Field_With_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_Field_Concrete_Type_Linked_Field_With_Dependency.yaml index 01be4b49151..815e0744d70 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_Field_Concrete_Type_Linked_Field_With_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_Field_Concrete_Type_Linked_Field_With_Dependency.yaml @@ -99,9 +99,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_b4cd91a7_2( - $__fusion_1_id: ID! - ) { + query testQuery_b4cd91a7_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { displayName } @@ -159,9 +157,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_b4cd91a7_2( - $__fusion_1_id: ID! - ) { + query testQuery_b4cd91a7_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { displayName } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_Field_Concrete_Type_With_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_Field_Concrete_Type_With_Dependency.yaml index 612648bedf0..7e002c23584 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_Field_Concrete_Type_With_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_Field_Concrete_Type_With_Dependency.yaml @@ -87,9 +87,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_4a61c641_2( - $__fusion_1_id: ID! - ) { + query testQuery_4a61c641_2($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { viewerRating } @@ -143,9 +141,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_4a61c641_2( - $__fusion_1_id: ID! - ) { + query testQuery_4a61c641_2($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { viewerRating } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_Field_Linked_Field_With_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_Field_Linked_Field_With_Dependency.yaml index aae3082bb80..6eeecaecfd4 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_Field_Linked_Field_With_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_Field_Linked_Field_With_Dependency.yaml @@ -90,9 +90,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_d44063d8_2( - $__fusion_1_id: ID! - ) { + query testQuery_d44063d8_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { displayName } @@ -145,9 +143,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_d44063d8_2( - $__fusion_1_id: ID! - ) { + query testQuery_d44063d8_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { displayName } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_Field_Linked_Field_With_Dependency_Different_Selection_In_Concrete_Type.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_Field_Linked_Field_With_Dependency_Different_Selection_In_Concrete_Type.yaml index 3caff0e2c3f..a1496f6a1f3 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_Field_Linked_Field_With_Dependency_Different_Selection_In_Concrete_Type.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_Field_Linked_Field_With_Dependency_Different_Selection_In_Concrete_Type.yaml @@ -104,9 +104,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query testQuery_1703e95b_2( - $__fusion_1_id: ID! - ) { + query testQuery_1703e95b_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { email } @@ -116,9 +114,7 @@ sourceSchemas: "__fusion_1_id": "QXV0aG9yOjI=" } - document: | - query testQuery_1703e95b_3( - $__fusion_2_id: ID! - ) { + query testQuery_1703e95b_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { displayName } @@ -191,9 +187,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_1703e95b_2( - $__fusion_1_id: ID! - ) { + query testQuery_1703e95b_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { email } @@ -211,9 +205,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_1703e95b_3( - $__fusion_2_id: ID! - ) { + query testQuery_1703e95b_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { displayName } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_Field_Linked_Field_With_Dependency_Same_Selection_In_Concrete_Type.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_Field_Linked_Field_With_Dependency_Same_Selection_In_Concrete_Type.yaml index 07a61839a37..7a1e6b6bc0b 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_Field_Linked_Field_With_Dependency_Same_Selection_In_Concrete_Type.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_Field_Linked_Field_With_Dependency_Same_Selection_In_Concrete_Type.yaml @@ -101,9 +101,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_77a61d25_2( - $__fusion_1_id: ID! - ) { + query testQuery_77a61d25_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { displayName } @@ -168,9 +166,7 @@ operationPlan: type: OperationBatch schema: B operation: | - query testQuery_77a61d25_2( - $__fusion_1_id: ID! - ) { + query testQuery_77a61d25_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { displayName } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_List_Field_Concrete_Type_Linked_Field_With_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_List_Field_Concrete_Type_Linked_Field_With_Dependency.yaml index 7f3101aab06..af8df133ea0 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_List_Field_Concrete_Type_Linked_Field_With_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_List_Field_Concrete_Type_Linked_Field_With_Dependency.yaml @@ -123,9 +123,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_e3932333_2( - $__fusion_1_id: ID! - ) { + query testQuery_e3932333_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { displayName } @@ -197,9 +195,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_e3932333_2( - $__fusion_1_id: ID! - ) { + query testQuery_e3932333_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { displayName } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_List_Field_Concrete_Type_With_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_List_Field_Concrete_Type_With_Dependency.yaml index 7d90d441a05..db224a06751 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_List_Field_Concrete_Type_With_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_List_Field_Concrete_Type_With_Dependency.yaml @@ -107,9 +107,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_c8aa487a_2( - $__fusion_1_id: ID! - ) { + query testQuery_c8aa487a_2($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { viewerRating } @@ -177,9 +175,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_c8aa487a_2( - $__fusion_1_id: ID! - ) { + query testQuery_c8aa487a_2($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { viewerRating } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_List_Field_Linked_Field_With_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_List_Field_Linked_Field_With_Dependency.yaml index 41a99c4c175..cd65dfb6b8c 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_List_Field_Linked_Field_With_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_List_Field_Linked_Field_With_Dependency.yaml @@ -118,9 +118,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_171db7a7_2( - $__fusion_1_id: ID! - ) { + query testQuery_171db7a7_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { displayName } @@ -198,9 +196,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_171db7a7_2( - $__fusion_1_id: ID! - ) { + query testQuery_171db7a7_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { displayName } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_List_Field_Linked_Field_With_Dependency_Different_Selection_In_Concrete_Type.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_List_Field_Linked_Field_With_Dependency_Different_Selection_In_Concrete_Type.yaml index 580230c01e2..74210e05f02 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_List_Field_Linked_Field_With_Dependency_Different_Selection_In_Concrete_Type.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_List_Field_Linked_Field_With_Dependency_Different_Selection_In_Concrete_Type.yaml @@ -133,9 +133,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query testQuery_e4ba4706_2( - $__fusion_1_id: ID! - ) { + query testQuery_e4ba4706_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { email } @@ -150,9 +148,7 @@ sourceSchemas: } ] - document: | - query testQuery_e4ba4706_3( - $__fusion_2_id: ID! - ) { + query testQuery_e4ba4706_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { displayName } @@ -257,9 +253,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_e4ba4706_2( - $__fusion_1_id: ID! - ) { + query testQuery_e4ba4706_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { email } @@ -277,9 +271,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_e4ba4706_3( - $__fusion_2_id: ID! - ) { + query testQuery_e4ba4706_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { displayName } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_List_Field_Linked_Field_With_Dependency_Same_Selection_In_Concrete_Type.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_List_Field_Linked_Field_With_Dependency_Same_Selection_In_Concrete_Type.yaml index 3aae448eef4..6fef0c3a945 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_List_Field_Linked_Field_With_Dependency_Same_Selection_In_Concrete_Type.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.Interface_List_Field_Linked_Field_With_Dependency_Same_Selection_In_Concrete_Type.yaml @@ -129,9 +129,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_61febe16_2( - $__fusion_1_id: ID! - ) { + query testQuery_61febe16_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { displayName } @@ -221,9 +219,7 @@ operationPlan: type: OperationBatch schema: B operation: | - query testQuery_61febe16_2( - $__fusion_1_id: ID! - ) { + query testQuery_61febe16_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { displayName } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.List_Field_Interface_Object_Property_Concrete_Type_Linked_Field_With_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.List_Field_Interface_Object_Property_Concrete_Type_Linked_Field_With_Dependency.yaml index 64c9b7e4e35..99fccf6f299 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.List_Field_Interface_Object_Property_Concrete_Type_Linked_Field_With_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.List_Field_Interface_Object_Property_Concrete_Type_Linked_Field_With_Dependency.yaml @@ -149,9 +149,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_8c4ceb7d_2( - $__fusion_1_id: ID! - ) { + query testQuery_8c4ceb7d_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { displayName } @@ -238,9 +236,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_8c4ceb7d_2( - $__fusion_1_id: ID! - ) { + query testQuery_8c4ceb7d_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { displayName } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.List_Field_Interface_Object_Property_Concrete_Type_With_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.List_Field_Interface_Object_Property_Concrete_Type_With_Dependency.yaml index d17ea256f64..87c94e8eda4 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.List_Field_Interface_Object_Property_Concrete_Type_With_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.List_Field_Interface_Object_Property_Concrete_Type_With_Dependency.yaml @@ -129,9 +129,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_7a8e1f91_2( - $__fusion_1_id: ID! - ) { + query testQuery_7a8e1f91_2($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { viewerRating } @@ -214,9 +212,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_7a8e1f91_2( - $__fusion_1_id: ID! - ) { + query testQuery_7a8e1f91_2($__fusion_1_id: ID!) { discussionById(id: $__fusion_1_id) { viewerRating } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.List_Field_Interface_Object_Property_Linked_Field_With_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.List_Field_Interface_Object_Property_Linked_Field_With_Dependency.yaml index 2e9c2ed4d9e..4486b161aee 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.List_Field_Interface_Object_Property_Linked_Field_With_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.List_Field_Interface_Object_Property_Linked_Field_With_Dependency.yaml @@ -134,9 +134,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_bdd3c6f6_2( - $__fusion_1_id: ID! - ) { + query testQuery_bdd3c6f6_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { displayName } @@ -217,9 +215,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_bdd3c6f6_2( - $__fusion_1_id: ID! - ) { + query testQuery_bdd3c6f6_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { displayName } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.List_Field_Interface_Object_Property_Linked_Field_With_Dependency_Different_Selection_In_Concrete_Type.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.List_Field_Interface_Object_Property_Linked_Field_With_Dependency_Different_Selection_In_Concrete_Type.yaml index 6a94042d049..2e27e458940 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.List_Field_Interface_Object_Property_Linked_Field_With_Dependency_Different_Selection_In_Concrete_Type.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.List_Field_Interface_Object_Property_Linked_Field_With_Dependency_Different_Selection_In_Concrete_Type.yaml @@ -150,9 +150,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query testQuery_a7ffad65_2( - $__fusion_1_id: ID! - ) { + query testQuery_a7ffad65_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { email } @@ -170,9 +168,7 @@ sourceSchemas: } ] - document: | - query testQuery_a7ffad65_3( - $__fusion_2_id: ID! - ) { + query testQuery_a7ffad65_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { displayName } @@ -288,9 +284,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_a7ffad65_2( - $__fusion_1_id: ID! - ) { + query testQuery_a7ffad65_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { email } @@ -308,9 +302,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_a7ffad65_3( - $__fusion_2_id: ID! - ) { + query testQuery_a7ffad65_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { displayName } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.List_Field_Interface_Object_Property_Linked_Field_With_Dependency_Same_Selection_In_Concrete_Type.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.List_Field_Interface_Object_Property_Linked_Field_With_Dependency_Same_Selection_In_Concrete_Type.yaml index a0577293b60..b57a3c0ef2c 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.List_Field_Interface_Object_Property_Linked_Field_With_Dependency_Same_Selection_In_Concrete_Type.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/InterfaceTests.List_Field_Interface_Object_Property_Linked_Field_With_Dependency_Same_Selection_In_Concrete_Type.yaml @@ -144,9 +144,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_4bfbec17_2( - $__fusion_1_id: ID! - ) { + query testQuery_4bfbec17_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { displayName } @@ -238,9 +236,7 @@ operationPlan: type: OperationBatch schema: B operation: | - query testQuery_4bfbec17_2( - $__fusion_1_id: ID! - ) { + query testQuery_4bfbec17_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { displayName } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Download_Schema.graphql b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Download_Schema.graphql index 4fff6c45daa..ecb694a4793 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Download_Schema.graphql +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Download_Schema.graphql @@ -3,9 +3,27 @@ schema { } type Query { - authors("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): AuthorsConnection + authors( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): AuthorsConnection bookById(id: Int!): Book! - books("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): BooksConnection + books( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): BooksConnection } type Author { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Fetch_Schema_Types_Name.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Fetch_Schema_Types_Name.yaml index 0d9e500c91b..0c8283f742f 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Fetch_Schema_Types_Name.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Fetch_Schema_Types_Name.yaml @@ -124,7 +124,16 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @lookup - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection } - name: B schema: | @@ -175,7 +184,16 @@ sourceSchemas: type Query { authorById(id: Int!): Author! @internal @lookup - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } operationPlan: operation: diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Fetch_Specific_Type.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Fetch_Specific_Type.yaml index 92ab7eb37b8..5a266e80d84 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Fetch_Specific_Type.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Fetch_Specific_Type.yaml @@ -64,7 +64,16 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @lookup - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection } - name: B schema: | @@ -115,7 +124,16 @@ sourceSchemas: type Query { authorById(id: Int!): Author! @internal @lookup - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } operationPlan: operation: diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.IntrospectionQueries_DirectiveCapabilitiesQuery.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.IntrospectionQueries_DirectiveCapabilitiesQuery.yaml index 5a3e164ea43..1b8aa308929 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.IntrospectionQueries_DirectiveCapabilitiesQuery.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.IntrospectionQueries_DirectiveCapabilitiesQuery.yaml @@ -68,7 +68,12 @@ sourceSchemas: "Object type description" type Query @test(arg: "value") { "Object field description" - posts("Argument description" filter: PostsFilter first: Int! = 5 @test(arg: "value") hidden: Boolean @deprecated(reason: "No longer supported")): [Post] + posts( + "Argument description" + filter: PostsFilter + first: Int! = 5 @test(arg: "value") + hidden: Boolean @deprecated(reason: "No longer supported") + ): [Post] userCreation: UserCreation votables: [Votable]! @deprecated(reason: "No longer supported") postById(postId: ID! @is(field: "id")): Post @lookup diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.IntrospectionQueries_InputValueCapabilitiesQuery.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.IntrospectionQueries_InputValueCapabilitiesQuery.yaml index fcd52f7bbe5..3b6ae722b87 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.IntrospectionQueries_InputValueCapabilitiesQuery.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.IntrospectionQueries_InputValueCapabilitiesQuery.yaml @@ -69,7 +69,12 @@ sourceSchemas: "Object type description" type Query @test(arg: "value") { "Object field description" - posts("Argument description" filter: PostsFilter first: Int! = 5 @test(arg: "value") hidden: Boolean @deprecated(reason: "No longer supported")): [Post] + posts( + "Argument description" + filter: PostsFilter + first: Int! = 5 @test(arg: "value") + hidden: Boolean @deprecated(reason: "No longer supported") + ): [Post] userCreation: UserCreation votables: [Votable]! @deprecated(reason: "No longer supported") postById(postId: ID! @is(field: "id")): Post @lookup diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.IntrospectionQueries_IntrospectionQuery.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.IntrospectionQueries_IntrospectionQuery.yaml index 45cc34c0f5a..bb0aac8d1d0 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.IntrospectionQueries_IntrospectionQuery.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.IntrospectionQueries_IntrospectionQuery.yaml @@ -1754,7 +1754,12 @@ sourceSchemas: "Object type description" type Query @test(arg: "value") { "Object field description" - posts("Argument description" filter: PostsFilter first: Int! = 5 @test(arg: "value") hidden: Boolean @deprecated(reason: "No longer supported")): [Post] + posts( + "Argument description" + filter: PostsFilter + first: Int! = 5 @test(arg: "value") + hidden: Boolean @deprecated(reason: "No longer supported") + ): [Post] userCreation: UserCreation votables: [Votable]! @deprecated(reason: "No longer supported") postById(postId: ID! @is(field: "id")): Post @lookup diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.IntrospectionQueries_SchemaCapabilitiesQuery.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.IntrospectionQueries_SchemaCapabilitiesQuery.yaml index 368f50b02c8..f0d5b4d6de8 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.IntrospectionQueries_SchemaCapabilitiesQuery.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.IntrospectionQueries_SchemaCapabilitiesQuery.yaml @@ -71,7 +71,12 @@ sourceSchemas: "Object type description" type Query @test(arg: "value") { "Object field description" - posts("Argument description" filter: PostsFilter first: Int! = 5 @test(arg: "value") hidden: Boolean @deprecated(reason: "No longer supported")): [Post] + posts( + "Argument description" + filter: PostsFilter + first: Int! = 5 @test(arg: "value") + hidden: Boolean @deprecated(reason: "No longer supported") + ): [Post] userCreation: UserCreation votables: [Votable]! @deprecated(reason: "No longer supported") postById(postId: ID! @is(field: "id")): Post @lookup diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.IntrospectionQueries_TypeCapabilitiesQuery.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.IntrospectionQueries_TypeCapabilitiesQuery.yaml index 809edc4366c..a1d03a63de4 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.IntrospectionQueries_TypeCapabilitiesQuery.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.IntrospectionQueries_TypeCapabilitiesQuery.yaml @@ -83,7 +83,12 @@ sourceSchemas: "Object type description" type Query @test(arg: "value") { "Object field description" - posts("Argument description" filter: PostsFilter first: Int! = 5 @test(arg: "value") hidden: Boolean @deprecated(reason: "No longer supported")): [Post] + posts( + "Argument description" + filter: PostsFilter + first: Int! = 5 @test(arg: "value") + hidden: Boolean @deprecated(reason: "No longer supported") + ): [Post] userCreation: UserCreation votables: [Votable]! @deprecated(reason: "No longer supported") postById(postId: ID! @is(field: "id")): Post @lookup diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Introspection_Types.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Introspection_Types.yaml index 5ee02473138..99e2624bf5a 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Introspection_Types.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Introspection_Types.yaml @@ -479,7 +479,12 @@ sourceSchemas: "Object type description" type Query @test(arg: "value") { "Object field description" - posts("Argument description" filter: PostsFilter first: Int! = 5 @test(arg: "value") hidden: Boolean @deprecated(reason: "No longer supported")): [Post] + posts( + "Argument description" + filter: PostsFilter + first: Int! = 5 @test(arg: "value") + hidden: Boolean @deprecated(reason: "No longer supported") + ): [Post] userCreation: UserCreation votables: [Votable]! @deprecated(reason: "No longer supported") postById(postId: ID! @is(field: "id")): Post @lookup diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Object.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Object.yaml index 69ac21f4122..5ff1703bf62 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Object.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Object.yaml @@ -79,7 +79,16 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @lookup - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection } interactions: - request: @@ -164,7 +173,16 @@ sourceSchemas: type Query { authorById(id: Int!): Author! @internal @lookup - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } operationPlan: operation: diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Object_With_Alias.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Object_With_Alias.yaml index 575711ab1d1..1ccdcaaddca 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Object_With_Alias.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Object_With_Alias.yaml @@ -79,7 +79,16 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @lookup - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection } interactions: - request: @@ -164,7 +173,16 @@ sourceSchemas: type Query { authorById(id: Int!): Author! @internal @lookup - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } operationPlan: operation: diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Query.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Query.yaml index b4a21fa679d..cc6405dde42 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Query.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Query.yaml @@ -60,7 +60,16 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @lookup - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection } - name: B schema: | @@ -111,7 +120,16 @@ sourceSchemas: type Query { authorById(id: Int!): Author! @internal @lookup - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } operationPlan: operation: diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Query_Skip_False.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Query_Skip_False.yaml index 9b27ab395f3..ac7fcfa44e3 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Query_Skip_False.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Query_Skip_False.yaml @@ -1,9 +1,7 @@ title: Typename_On_Query_Skip_False request: document: | - query( - $s: Boolean! = false - ) { + query($s: Boolean! = false) { __typename @skip(if: $s) } response: @@ -62,7 +60,16 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @lookup - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection } - name: B schema: | @@ -113,14 +120,21 @@ sourceSchemas: type Query { authorById(id: Int!): Author! @internal @lookup - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } operationPlan: operation: - document: | - query( - $s: Boolean! = false - ) { + query($s: Boolean! = false) { __typename @skip(if: $s) } hash: 7000d58c5a91379479dee99795ff88dd diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Query_Skip_True.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Query_Skip_True.yaml index fc0315565c4..82f432b7d54 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Query_Skip_True.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Query_Skip_True.yaml @@ -1,9 +1,7 @@ title: Typename_On_Query_Skip_True request: document: | - query( - $s: Boolean! = true - ) { + query($s: Boolean! = true) { __typename @skip(if: $s) } response: @@ -60,7 +58,16 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @lookup - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection } - name: B schema: | @@ -111,14 +118,21 @@ sourceSchemas: type Query { authorById(id: Int!): Author! @internal @lookup - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } operationPlan: operation: - document: | - query( - $s: Boolean! = true - ) { + query($s: Boolean! = true) { __typename @skip(if: $s) } hash: 6fe5ef6b2885d351015c1d64f6c1eda8 diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Query_With_Alias.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Query_With_Alias.yaml index ea843fb9f5f..f6985f2878d 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Query_With_Alias.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Typename_On_Query_With_Alias.yaml @@ -60,7 +60,16 @@ sourceSchemas: type Query { bookById(id: Int!): Book! @lookup - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection } - name: B schema: | @@ -111,7 +120,16 @@ sourceSchemas: type Query { authorById(id: Int!): Author! @internal @lookup - authors("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): AuthorsConnection + authors( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): AuthorsConnection } operationPlan: operation: diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/LookupTests.Fetch_From_Nested_Internal_Lookup.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/LookupTests.Fetch_From_Nested_Internal_Lookup.yaml index c31acea5f1f..0e82c54e4c8 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/LookupTests.Fetch_From_Nested_Internal_Lookup.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/LookupTests.Fetch_From_Nested_Internal_Lookup.yaml @@ -118,9 +118,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_76f18599_2( - $__fusion_1_id: ID! - ) { + query Op_76f18599_2($__fusion_1_id: ID!) { lookups { authorById(id: $__fusion_1_id) { name @@ -189,9 +187,7 @@ operationPlan: type: Operation schema: b operation: | - query Op_76f18599_2( - $__fusion_1_id: ID! - ) { + query Op_76f18599_2($__fusion_1_id: ID!) { lookups { authorById(id: $__fusion_1_id) { name diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/LookupTests.Fetch_OneOf_Lookup_With_Id.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/LookupTests.Fetch_OneOf_Lookup_With_Id.yaml index c45c82fe1b3..7f3207b1b58 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/LookupTests.Fetch_OneOf_Lookup_With_Id.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/LookupTests.Fetch_OneOf_Lookup_With_Id.yaml @@ -113,7 +113,9 @@ sourceSchemas: } type InternalLookups @internal { - author(by: AuthorByInput! @is(field: "{\n id\n} | {\n name\n}")): Author! @lookup @internal + author(by: AuthorByInput! @is(field: "{\n id\n} | {\n name\n}")): Author! + @lookup + @internal } type Query { @@ -131,9 +133,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_fb4f667e_2( - $__fusion_1_by: AuthorByInput! - ) { + query Op_fb4f667e_2($__fusion_1_by: AuthorByInput!) { lookups { author(by: $__fusion_1_by) { name @@ -220,9 +220,7 @@ operationPlan: type: Operation schema: b operation: | - query Op_fb4f667e_2( - $__fusion_1_by: AuthorByInput! - ) { + query Op_fb4f667e_2($__fusion_1_by: AuthorByInput!) { lookups { author(by: $__fusion_1_by) { name diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/LookupTests.Fetch_OneOf_Lookup_With_Name.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/LookupTests.Fetch_OneOf_Lookup_With_Name.yaml index c06d9d7be36..665a576f8c9 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/LookupTests.Fetch_OneOf_Lookup_With_Name.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/LookupTests.Fetch_OneOf_Lookup_With_Name.yaml @@ -49,7 +49,9 @@ sourceSchemas: } type InternalLookups @internal { - author(by: AuthorByInput! @is(field: "{\n id\n} | {\n name\n}")): Author! @lookup @internal + author(by: AuthorByInput! @is(field: "{\n id\n} | {\n name\n}")): Author! + @lookup + @internal } type Query { @@ -67,9 +69,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_54ef22d5_2( - $__fusion_1_by: AuthorByInput! - ) { + query Op_54ef22d5_2($__fusion_1_by: AuthorByInput!) { lookups { author(by: $__fusion_1_by) { id @@ -153,9 +153,7 @@ operationPlan: type: Operation schema: b operation: | - query Op_54ef22d5_2( - $__fusion_1_by: AuthorByInput! - ) { + query Op_54ef22d5_2($__fusion_1_by: AuthorByInput!) { lookups { author(by: $__fusion_1_by) { id diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/MutationTests.Multiple_Mutation.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/MutationTests.Multiple_Mutation.yaml index 5365d3e0ade..e8c0ede8697 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/MutationTests.Multiple_Mutation.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/MutationTests.Multiple_Mutation.yaml @@ -128,9 +128,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_192dc5f8_2( - $__fusion_1_id: Int! - ) { + query Op_192dc5f8_2($__fusion_1_id: Int!) { bookById(id: $__fusion_1_id) { author } @@ -202,9 +200,7 @@ operationPlan: type: OperationBatch schema: B operation: | - query Op_192dc5f8_2( - $__fusion_1_id: Int! - ) { + query Op_192dc5f8_2($__fusion_1_id: Int!) { bookById(id: $__fusion_1_id) { author } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/MutationTests.Single_Mutation.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/MutationTests.Single_Mutation.yaml index c78acb2bcae..1f9891621a2 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/MutationTests.Single_Mutation.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/MutationTests.Single_Mutation.yaml @@ -90,9 +90,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_8adeedac_2( - $__fusion_1_id: Int! - ) { + query Op_8adeedac_2($__fusion_1_id: Int!) { bookById(id: $__fusion_1_id) { author } @@ -142,9 +140,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_8adeedac_2( - $__fusion_1_id: Int! - ) { + query Op_8adeedac_2($__fusion_1_id: Int!) { bookById(id: $__fusion_1_id) { author } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Require_Enumerable_In_List.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Require_Enumerable_In_List.yaml index 831e4a4ffb3..85c7bdeaeae 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Require_Enumerable_In_List.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Require_Enumerable_In_List.yaml @@ -100,7 +100,16 @@ sourceSchemas: } type Query { - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection book(id: Int!): Book @lookup @shareable } interactions: @@ -176,7 +185,9 @@ sourceSchemas: } type Book { - estimatedDelivery(dimension: BookDimensionInput! @require(field: "{\n title\n width: dimension.width\n height: dimension.height\n}")): Int! + estimatedDelivery( + dimension: BookDimensionInput! @require(field: "{\n title\n width: dimension.width\n height: dimension.height\n}") + ): Int! id: Int! } @@ -212,10 +223,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_684e067a_2( - $__fusion_1_id: Int! - $__fusion_2_genreIds: [Int!]! - ) { + query Op_684e067a_2($__fusion_1_id: Int!, $__fusion_2_genreIds: [Int!]!) { book(id: $__fusion_1_id) { genres(genreIds: $__fusion_2_genreIds) { name @@ -326,10 +334,7 @@ operationPlan: type: Operation schema: d operation: | - query Op_684e067a_2( - $__fusion_1_id: Int! - $__fusion_2_genreIds: [Int!]! - ) { + query Op_684e067a_2($__fusion_1_id: Int!, $__fusion_2_genreIds: [Int!]!) { book(id: $__fusion_1_id) { genres(genreIds: $__fusion_2_genreIds) { name diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Require_Object_In_A_List.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Require_Object_In_A_List.yaml index 5f4037ffbb9..92622b76223 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Require_Object_In_A_List.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Require_Object_In_A_List.yaml @@ -80,7 +80,16 @@ sourceSchemas: } type Query { - books("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): BooksConnection + books( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): BooksConnection book(id: Int!): Book @lookup @shareable } interactions: @@ -141,9 +150,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_1f7d6449_4( - $__fusion_4_id: Int! - ) { + query Op_1f7d6449_4($__fusion_4_id: Int!) { book(id: $__fusion_4_id) { dimension { width @@ -206,7 +213,9 @@ sourceSchemas: } type Book { - estimatedDelivery(dimension: BookDimensionInput! @require(field: "{\n title\n width: dimension.width\n height: dimension.height\n}")): Int! + estimatedDelivery( + dimension: BookDimensionInput! @require(field: "{\n title\n width: dimension.width\n height: dimension.height\n}") + ): Int! id: Int! } @@ -225,7 +234,7 @@ sourceSchemas: document: | query Op_1f7d6449_3( $__fusion_2_dimension: BookDimensionInput! - $__fusion_3_id: Int! + $__fusion_3_id: Int! ) { book(id: $__fusion_3_id) { estimatedDelivery(dimension: $__fusion_2_dimension) @@ -343,7 +352,7 @@ operationPlan: operation: | query Op_1f7d6449_3( $__fusion_2_dimension: BookDimensionInput! - $__fusion_3_id: Int! + $__fusion_3_id: Int! ) { book(id: $__fusion_3_id) { estimatedDelivery(dimension: $__fusion_2_dimension) @@ -369,9 +378,7 @@ operationPlan: type: Operation schema: b operation: | - query Op_1f7d6449_4( - $__fusion_4_id: Int! - ) { + query Op_1f7d6449_4($__fusion_4_id: Int!) { book(id: $__fusion_4_id) { dimension { width diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Requirement_On_Leaf_Field.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Requirement_On_Leaf_Field.yaml index 457716bad47..b5e17ffbd20 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Requirement_On_Leaf_Field.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Requirement_On_Leaf_Field.yaml @@ -36,9 +36,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query Op_b05a9c48_3( - $__fusion_3_id: ID! - ) { + query Op_b05a9c48_3($__fusion_3_id: ID!) { productById(id: $__fusion_3_id) { nullableField } @@ -48,9 +46,7 @@ sourceSchemas: "__fusion_3_id": "1" } - document: | - query Op_b05a9c48_4( - $__fusion_4_id: ID! - ) { + query Op_b05a9c48_4($__fusion_4_id: ID!) { productById(id: $__fusion_4_id) { id } @@ -85,7 +81,9 @@ sourceSchemas: } type Product { - fieldWithNullableRequirement(nullableArgument: String @require(field: "nullableField")): String! + fieldWithNullableRequirement( + nullableArgument: String @require(field: "nullableField") + ): String! id: ID! } @@ -114,10 +112,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_b05a9c48_2( - $__fusion_1_nullableArgument: String - $__fusion_2_id: ID! - ) { + query Op_b05a9c48_2($__fusion_1_nullableArgument: String, $__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { fieldWithNullableRequirement(nullableArgument: $__fusion_1_nullableArgument) } @@ -164,10 +159,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_b05a9c48_2( - $__fusion_1_nullableArgument: String - $__fusion_2_id: ID! - ) { + query Op_b05a9c48_2($__fusion_1_nullableArgument: String, $__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { fieldWithNullableRequirement(nullableArgument: $__fusion_1_nullableArgument) } @@ -187,9 +179,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_b05a9c48_3( - $__fusion_3_id: ID! - ) { + query Op_b05a9c48_3($__fusion_3_id: ID!) { productById(id: $__fusion_3_id) { nullableField } @@ -207,9 +197,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_b05a9c48_4( - $__fusion_4_id: ID! - ) { + query Op_b05a9c48_4($__fusion_4_id: ID!) { productById(id: $__fusion_4_id) { id } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Requirement_On_Nullable_Leaf_Field_Returning_Null.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Requirement_On_Nullable_Leaf_Field_Returning_Null.yaml index 5fa6371cb43..557b572924d 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Requirement_On_Nullable_Leaf_Field_Returning_Null.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Requirement_On_Nullable_Leaf_Field_Returning_Null.yaml @@ -36,9 +36,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query Op_b05a9c48_3( - $__fusion_3_id: ID! - ) { + query Op_b05a9c48_3($__fusion_3_id: ID!) { productById(id: $__fusion_3_id) { nullableField } @@ -48,9 +46,7 @@ sourceSchemas: "__fusion_3_id": "1" } - document: | - query Op_b05a9c48_4( - $__fusion_4_id: ID! - ) { + query Op_b05a9c48_4($__fusion_4_id: ID!) { productById(id: $__fusion_4_id) { id } @@ -85,7 +81,9 @@ sourceSchemas: } type Product { - fieldWithNullableRequirement(nullableArgument: String @require(field: "nullableField")): String! + fieldWithNullableRequirement( + nullableArgument: String @require(field: "nullableField") + ): String! id: ID! } @@ -114,10 +112,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_b05a9c48_2( - $__fusion_1_nullableArgument: String - $__fusion_2_id: ID! - ) { + query Op_b05a9c48_2($__fusion_1_nullableArgument: String, $__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { fieldWithNullableRequirement(nullableArgument: $__fusion_1_nullableArgument) } @@ -164,10 +159,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_b05a9c48_2( - $__fusion_1_nullableArgument: String - $__fusion_2_id: ID! - ) { + query Op_b05a9c48_2($__fusion_1_nullableArgument: String, $__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { fieldWithNullableRequirement(nullableArgument: $__fusion_1_nullableArgument) } @@ -187,9 +179,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_b05a9c48_3( - $__fusion_3_id: ID! - ) { + query Op_b05a9c48_3($__fusion_3_id: ID!) { productById(id: $__fusion_3_id) { nullableField } @@ -207,9 +197,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_b05a9c48_4( - $__fusion_4_id: ID! - ) { + query Op_b05a9c48_4($__fusion_4_id: ID!) { productById(id: $__fusion_4_id) { id } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Requirement_On_Property_Within_Nullable_Object.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Requirement_On_Property_Within_Nullable_Object.yaml index 4390b11ec4a..fff573f195e 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Requirement_On_Property_Within_Nullable_Object.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Requirement_On_Property_Within_Nullable_Object.yaml @@ -40,9 +40,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query Op_b05a9c48_3( - $__fusion_3_id: ID! - ) { + query Op_b05a9c48_3($__fusion_3_id: ID!) { productById(id: $__fusion_3_id) { nullableObject { field @@ -54,9 +52,7 @@ sourceSchemas: "__fusion_3_id": "1" } - document: | - query Op_b05a9c48_4( - $__fusion_4_id: ID! - ) { + query Op_b05a9c48_4($__fusion_4_id: ID!) { productById(id: $__fusion_4_id) { id } @@ -93,7 +89,9 @@ sourceSchemas: } type Product { - fieldWithNullableRequirement(nullableArgument: String @require(field: "nullableObject.field")): String! + fieldWithNullableRequirement( + nullableArgument: String @require(field: "nullableObject.field") + ): String! id: ID! } @@ -122,10 +120,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_b05a9c48_2( - $__fusion_1_nullableArgument: String - $__fusion_2_id: ID! - ) { + query Op_b05a9c48_2($__fusion_1_nullableArgument: String, $__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { fieldWithNullableRequirement(nullableArgument: $__fusion_1_nullableArgument) } @@ -174,10 +169,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_b05a9c48_2( - $__fusion_1_nullableArgument: String - $__fusion_2_id: ID! - ) { + query Op_b05a9c48_2($__fusion_1_nullableArgument: String, $__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { fieldWithNullableRequirement(nullableArgument: $__fusion_1_nullableArgument) } @@ -197,9 +189,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_b05a9c48_3( - $__fusion_3_id: ID! - ) { + query Op_b05a9c48_3($__fusion_3_id: ID!) { productById(id: $__fusion_3_id) { nullableObject { field @@ -219,9 +209,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_b05a9c48_4( - $__fusion_4_id: ID! - ) { + query Op_b05a9c48_4($__fusion_4_id: ID!) { productById(id: $__fusion_4_id) { id } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Requirement_On_Property_Within_Nullable_Object_Returning_Null.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Requirement_On_Property_Within_Nullable_Object_Returning_Null.yaml index e31d2617b77..2147ddec512 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Requirement_On_Property_Within_Nullable_Object_Returning_Null.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/RequireTests.Requirement_On_Property_Within_Nullable_Object_Returning_Null.yaml @@ -40,9 +40,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query Op_b05a9c48_3( - $__fusion_3_id: ID! - ) { + query Op_b05a9c48_3($__fusion_3_id: ID!) { productById(id: $__fusion_3_id) { nullableObject { field @@ -54,9 +52,7 @@ sourceSchemas: "__fusion_3_id": "1" } - document: | - query Op_b05a9c48_4( - $__fusion_4_id: ID! - ) { + query Op_b05a9c48_4($__fusion_4_id: ID!) { productById(id: $__fusion_4_id) { id } @@ -91,7 +87,9 @@ sourceSchemas: } type Product { - fieldWithNullableRequirement(nullableArgument: String @require(field: "nullableObject.field")): String! + fieldWithNullableRequirement( + nullableArgument: String @require(field: "nullableObject.field") + ): String! id: ID! } @@ -120,10 +118,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_b05a9c48_2( - $__fusion_1_nullableArgument: String - $__fusion_2_id: ID! - ) { + query Op_b05a9c48_2($__fusion_1_nullableArgument: String, $__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { fieldWithNullableRequirement(nullableArgument: $__fusion_1_nullableArgument) } @@ -172,10 +167,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_b05a9c48_2( - $__fusion_1_nullableArgument: String - $__fusion_2_id: ID! - ) { + query Op_b05a9c48_2($__fusion_1_nullableArgument: String, $__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { fieldWithNullableRequirement(nullableArgument: $__fusion_1_nullableArgument) } @@ -195,9 +187,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_b05a9c48_3( - $__fusion_3_id: ID! - ) { + query Op_b05a9c48_3($__fusion_3_id: ID!) { productById(id: $__fusion_3_id) { nullableObject { field @@ -217,9 +207,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_b05a9c48_4( - $__fusion_4_id: ID! - ) { + query Op_b05a9c48_4($__fusion_4_id: ID!) { productById(id: $__fusion_4_id) { id } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Hierarchy_Of_Shared_Parent_Fields_Below_Type_With_Lookup.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Hierarchy_Of_Shared_Parent_Fields_Below_Type_With_Lookup.yaml index 26dce01534b..f0b9f1c80ca 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Hierarchy_Of_Shared_Parent_Fields_Below_Type_With_Lookup.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Hierarchy_Of_Shared_Parent_Fields_Below_Type_With_Lookup.yaml @@ -158,9 +158,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_43e07475_2( - $__fusion_1_id: Int! - ) { + query Op_43e07475_2($__fusion_1_id: Int!) { product(id: $__fusion_1_id) { shared { shared2 { @@ -223,9 +221,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_43e07475_2( - $__fusion_1_id: Int! - ) { + query Op_43e07475_2($__fusion_1_id: Int!) { product(id: $__fusion_1_id) { shared { shared2 { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Hierarchy_Of_Shared_Parent_Fields_Below_Type_With_Lookup_With_Extra_Fields_On_Shared_Level.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Hierarchy_Of_Shared_Parent_Fields_Below_Type_With_Lookup_With_Extra_Fields_On_Shared_Level.yaml index 80f8e14c5e1..3de7fb3a5c6 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Hierarchy_Of_Shared_Parent_Fields_Below_Type_With_Lookup_With_Extra_Fields_On_Shared_Level.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Hierarchy_Of_Shared_Parent_Fields_Below_Type_With_Lookup_With_Extra_Fields_On_Shared_Level.yaml @@ -166,9 +166,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query Op_c1c44a8c_2( - $__fusion_1_id: Int! - ) { + query Op_c1c44a8c_2($__fusion_1_id: Int!) { product(id: $__fusion_1_id) { shared { schema2 @@ -180,9 +178,7 @@ sourceSchemas: "__fusion_1_id": 1 } - document: | - query Op_c1c44a8c_3( - $__fusion_2_id: Int! - ) { + query Op_c1c44a8c_3($__fusion_2_id: Int!) { product(id: $__fusion_2_id) { shared { shared2 { @@ -259,9 +255,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_c1c44a8c_2( - $__fusion_1_id: Int! - ) { + query Op_c1c44a8c_2($__fusion_1_id: Int!) { product(id: $__fusion_1_id) { shared { schema2 @@ -281,9 +275,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_c1c44a8c_3( - $__fusion_2_id: Int! - ) { + query Op_c1c44a8c_3($__fusion_2_id: Int!) { product(id: $__fusion_2_id) { shared { shared2 { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Hierarchy_Of_Shared_Parent_Fields_Below_Type_With_Lookup_With_Extra_Fields_On_Shared_Levels.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Hierarchy_Of_Shared_Parent_Fields_Below_Type_With_Lookup_With_Extra_Fields_On_Shared_Levels.yaml index c6052b776d9..7d44ce1928a 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Hierarchy_Of_Shared_Parent_Fields_Below_Type_With_Lookup_With_Extra_Fields_On_Shared_Levels.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Hierarchy_Of_Shared_Parent_Fields_Below_Type_With_Lookup_With_Extra_Fields_On_Shared_Levels.yaml @@ -172,9 +172,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query Op_b3a5d887_2( - $__fusion_1_id: Int! - ) { + query Op_b3a5d887_2($__fusion_1_id: Int!) { product(id: $__fusion_1_id) { schema2 } @@ -184,9 +182,7 @@ sourceSchemas: "__fusion_1_id": 1 } - document: | - query Op_b3a5d887_3( - $__fusion_2_id: Int! - ) { + query Op_b3a5d887_3($__fusion_2_id: Int!) { product(id: $__fusion_2_id) { shared { schema2 @@ -198,9 +194,7 @@ sourceSchemas: "__fusion_2_id": 1 } - document: | - query Op_b3a5d887_4( - $__fusion_3_id: Int! - ) { + query Op_b3a5d887_4($__fusion_3_id: Int!) { product(id: $__fusion_3_id) { shared { shared2 { @@ -288,9 +282,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_b3a5d887_2( - $__fusion_1_id: Int! - ) { + query Op_b3a5d887_2($__fusion_1_id: Int!) { product(id: $__fusion_1_id) { schema2 } @@ -308,9 +300,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_b3a5d887_3( - $__fusion_2_id: Int! - ) { + query Op_b3a5d887_3($__fusion_2_id: Int!) { product(id: $__fusion_2_id) { shared { schema2 @@ -330,9 +320,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_b3a5d887_4( - $__fusion_3_id: Int! - ) { + query Op_b3a5d887_4($__fusion_3_id: Int!) { product(id: $__fusion_3_id) { shared { shared2 { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Shared_Parent_Field_Below_Type_With_Lookup.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Shared_Parent_Field_Below_Type_With_Lookup.yaml index b9940ee822a..89413b1f645 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Shared_Parent_Field_Below_Type_With_Lookup.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Shared_Parent_Field_Below_Type_With_Lookup.yaml @@ -150,9 +150,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_b5a406bd_2( - $__fusion_1_id: Int! - ) { + query Op_b5a406bd_2($__fusion_1_id: Int!) { product(id: $__fusion_1_id) { shared { schema2 @@ -207,9 +205,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_b5a406bd_2( - $__fusion_1_id: Int! - ) { + query Op_b5a406bd_2($__fusion_1_id: Int!) { product(id: $__fusion_1_id) { shared { schema2 diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Shared_Parent_Field_Below_Type_With_Lookup_With_Extra_Fields_On_Shared_Level.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Shared_Parent_Field_Below_Type_With_Lookup_With_Extra_Fields_On_Shared_Level.yaml index 4fc227d141a..a49c2b37acc 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Shared_Parent_Field_Below_Type_With_Lookup_With_Extra_Fields_On_Shared_Level.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Shared_Parent_Field_Below_Type_With_Lookup_With_Extra_Fields_On_Shared_Level.yaml @@ -158,9 +158,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query Op_49906eea_2( - $__fusion_1_id: Int! - ) { + query Op_49906eea_2($__fusion_1_id: Int!) { product(id: $__fusion_1_id) { schema2 } @@ -170,9 +168,7 @@ sourceSchemas: "__fusion_1_id": 1 } - document: | - query Op_49906eea_3( - $__fusion_2_id: Int! - ) { + query Op_49906eea_3($__fusion_2_id: Int!) { product(id: $__fusion_2_id) { shared { schema2 @@ -239,9 +235,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_49906eea_2( - $__fusion_1_id: Int! - ) { + query Op_49906eea_2($__fusion_1_id: Int!) { product(id: $__fusion_1_id) { schema2 } @@ -259,9 +253,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_49906eea_3( - $__fusion_2_id: Int! - ) { + query Op_49906eea_3($__fusion_2_id: Int!) { product(id: $__fusion_2_id) { shared { schema2 diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Shared_Parent_Field_Below_Type_With_Lookup_With_Type_Refinement.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Shared_Parent_Field_Below_Type_With_Lookup_With_Type_Refinement.yaml index 46d42d90a74..b37891258c2 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Shared_Parent_Field_Below_Type_With_Lookup_With_Type_Refinement.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Shared_Parent_Field_Below_Type_With_Lookup_With_Type_Refinement.yaml @@ -156,9 +156,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_c8e1a8bf_2( - $__fusion_1_id: Int! - ) { + query Op_c8e1a8bf_2($__fusion_1_id: Int!) { product(id: $__fusion_1_id) { shared { schema2 @@ -219,9 +217,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_c8e1a8bf_2( - $__fusion_1_id: Int! - ) { + query Op_c8e1a8bf_2($__fusion_1_id: Int!) { product(id: $__fusion_1_id) { shared { schema2 diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Single_Shared_Root_Field_With_Inline_Fragment_Without_TypeCondition.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Single_Shared_Root_Field_With_Inline_Fragment_Without_TypeCondition.yaml index 5f64545a8a0..9ee24cbcf01 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Single_Shared_Root_Field_With_Inline_Fragment_Without_TypeCondition.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SharedPathTests.Single_Shared_Root_Field_With_Inline_Fragment_Without_TypeCondition.yaml @@ -1,9 +1,7 @@ title: Single_Shared_Root_Field_With_Inline_Fragment_Without_TypeCondition request: document: | - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { viewer { ... @skip(if: $skip) { schema1 @@ -80,9 +78,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_88b508ac_1( - $skip: Boolean! - ) { + query Op_88b508ac_1($skip: Boolean!) { viewer { ... @skip(if: $skip) { schema1 @@ -174,9 +170,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { viewer { ... @skip(if: $skip) { schema1 @@ -192,9 +186,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_88b508ac_1( - $skip: Boolean! - ) { + query Op_88b508ac_1($skip: Boolean!) { viewer { ... @skip(if: $skip) { schema1 diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.BatchRequest_CustomAcceptHeader.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.BatchRequest_CustomAcceptHeader.yaml index 0af926aa732..f23d19798ad 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.BatchRequest_CustomAcceptHeader.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.BatchRequest_CustomAcceptHeader.yaml @@ -90,9 +90,7 @@ sourceSchemas: - request: accept: application/jsonl document: | - query Op_490e9345_2( - $__fusion_1_id: ID! - ) { + query Op_490e9345_2($__fusion_1_id: ID!) { bookById(id: $__fusion_1_id) { rating } @@ -151,9 +149,7 @@ operationPlan: type: Operation schema: b operation: | - query Op_490e9345_2( - $__fusion_1_id: ID! - ) { + query Op_490e9345_2($__fusion_1_id: ID!) { bookById(id: $__fusion_1_id) { rating } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.BatchRequest_OnlyRequestBatching.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.BatchRequest_OnlyRequestBatching.yaml index c9b35c15f48..a824d2bf0da 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.BatchRequest_OnlyRequestBatching.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.BatchRequest_OnlyRequestBatching.yaml @@ -92,9 +92,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query Op_490e9345_2( - $__fusion_1_id: ID! - ) { + query Op_490e9345_2($__fusion_1_id: ID!) { bookById(id: $__fusion_1_id) { rating } @@ -104,9 +102,7 @@ sourceSchemas: "__fusion_1_id": "1" } - document: | - query Op_490e9345_2( - $__fusion_1_id: ID! - ) { + query Op_490e9345_2($__fusion_1_id: ID!) { bookById(id: $__fusion_1_id) { rating } @@ -160,9 +156,7 @@ operationPlan: type: Operation schema: b operation: | - query Op_490e9345_2( - $__fusion_1_id: ID! - ) { + query Op_490e9345_2($__fusion_1_id: ID!) { bookById(id: $__fusion_1_id) { rating } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.BatchRequest_OnlyRequestBatching_ServerReturnsJsonArray.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.BatchRequest_OnlyRequestBatching_ServerReturnsJsonArray.yaml index 8c03ecb904f..1adc6e2f782 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.BatchRequest_OnlyRequestBatching_ServerReturnsJsonArray.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.BatchRequest_OnlyRequestBatching_ServerReturnsJsonArray.yaml @@ -9,16 +9,16 @@ request: response: body: | { - "data": { - "books": [ - { - "rating": "1" - }, - { - "rating": "2" - } - ] - } + "errors": [ + { + "message": "Unexpected Execution Error", + "path": [ + "books", + 0, + "rating" + ] + } + ] } sourceSchemas: - name: a @@ -92,9 +92,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query Op_490e9345_2( - $__fusion_1_id: ID! - ) { + query Op_490e9345_2($__fusion_1_id: ID!) { bookById(id: $__fusion_1_id) { rating } @@ -104,9 +102,7 @@ sourceSchemas: "__fusion_1_id": "1" } - document: | - query Op_490e9345_2( - $__fusion_1_id: ID! - ) { + query Op_490e9345_2($__fusion_1_id: ID!) { bookById(id: $__fusion_1_id) { rating } @@ -116,24 +112,8 @@ sourceSchemas: "__fusion_1_id": "2" } response: - contentType: application/json; charset=utf-8 - results: - - | - { - "data": { - "bookById": { - "rating": "1" - } - } - } - - | - { - "data": { - "bookById": { - "rating": "2" - } - } - } + statusCode: 500 + contentType: text/plain; charset=utf-8 operationPlan: operation: - document: | @@ -160,9 +140,7 @@ operationPlan: type: Operation schema: b operation: | - query Op_490e9345_2( - $__fusion_1_id: ID! - ) { + query Op_490e9345_2($__fusion_1_id: ID!) { bookById(id: $__fusion_1_id) { rating } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.BatchRequest_OnlyRequestBatching_ServerReturnsNoRequestIndices.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.BatchRequest_OnlyRequestBatching_ServerReturnsNoRequestIndices.yaml index d00dd7ba206..c3617f9c3d7 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.BatchRequest_OnlyRequestBatching_ServerReturnsNoRequestIndices.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.BatchRequest_OnlyRequestBatching_ServerReturnsNoRequestIndices.yaml @@ -9,16 +9,16 @@ request: response: body: | { - "data": { - "books": [ - { - "rating": "1" - }, - { - "rating": "2" - } - ] - } + "errors": [ + { + "message": "Unexpected Execution Error", + "path": [ + "books", + 0, + "rating" + ] + } + ] } sourceSchemas: - name: a @@ -92,9 +92,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query Op_490e9345_2( - $__fusion_1_id: ID! - ) { + query Op_490e9345_2($__fusion_1_id: ID!) { bookById(id: $__fusion_1_id) { rating } @@ -104,9 +102,7 @@ sourceSchemas: "__fusion_1_id": "1" } - document: | - query Op_490e9345_2( - $__fusion_1_id: ID! - ) { + query Op_490e9345_2($__fusion_1_id: ID!) { bookById(id: $__fusion_1_id) { rating } @@ -116,24 +112,8 @@ sourceSchemas: "__fusion_1_id": "2" } response: - contentType: text/event-stream; charset=utf-8 - results: - - | - { - "data": { - "bookById": { - "rating": "1" - } - } - } - - | - { - "data": { - "bookById": { - "rating": "2" - } - } - } + statusCode: 500 + contentType: text/plain; charset=utf-8 operationPlan: operation: - document: | @@ -160,9 +140,7 @@ operationPlan: type: Operation schema: b operation: | - query Op_490e9345_2( - $__fusion_1_id: ID! - ) { + query Op_490e9345_2($__fusion_1_id: ID!) { bookById(id: $__fusion_1_id) { rating } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.BatchRequest_OnlyVariableBatching.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.BatchRequest_OnlyVariableBatching.yaml index be3b959cee8..24dac7906cc 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.BatchRequest_OnlyVariableBatching.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.BatchRequest_OnlyVariableBatching.yaml @@ -90,9 +90,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_490e9345_2( - $__fusion_1_id: ID! - ) { + query Op_490e9345_2($__fusion_1_id: ID!) { bookById(id: $__fusion_1_id) { rating } @@ -151,9 +149,7 @@ operationPlan: type: Operation schema: b operation: | - query Op_490e9345_2( - $__fusion_1_id: ID! - ) { + query Op_490e9345_2($__fusion_1_id: ID!) { bookById(id: $__fusion_1_id) { rating } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.OperationBatch_BatchRequest_CustomAcceptHeader.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.OperationBatch_BatchRequest_CustomAcceptHeader.yaml index fb6c44db758..7ff30a3ec35 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.OperationBatch_BatchRequest_CustomAcceptHeader.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.OperationBatch_BatchRequest_CustomAcceptHeader.yaml @@ -122,9 +122,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query Op_1b3419da_2( - $__fusion_1_id: ID! - ) { + query Op_1b3419da_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { b: name(postFix: "2") } @@ -139,9 +137,7 @@ sourceSchemas: } ] - document: | - query Op_1b3419da_3( - $__fusion_2_id: ID! - ) { + query Op_1b3419da_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { a: name } @@ -227,9 +223,7 @@ operationPlan: type: Operation schema: b operation: | - query Op_1b3419da_2( - $__fusion_1_id: ID! - ) { + query Op_1b3419da_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { b: name(postFix: "2") } @@ -247,9 +241,7 @@ operationPlan: type: Operation schema: b operation: | - query Op_1b3419da_3( - $__fusion_2_id: ID! - ) { + query Op_1b3419da_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { a: name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.OperationBatch_BatchRequest_OnlyRequestBatching.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.OperationBatch_BatchRequest_OnlyRequestBatching.yaml index 756137a9977..ea8d90c6d2e 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.OperationBatch_BatchRequest_OnlyRequestBatching.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.OperationBatch_BatchRequest_OnlyRequestBatching.yaml @@ -122,9 +122,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query Op_1b3419da_2( - $__fusion_1_id: ID! - ) { + query Op_1b3419da_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { b: name(postFix: "2") } @@ -134,9 +132,7 @@ sourceSchemas: "__fusion_1_id": "1" } - document: | - query Op_1b3419da_2( - $__fusion_1_id: ID! - ) { + query Op_1b3419da_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { b: name(postFix: "2") } @@ -146,9 +142,7 @@ sourceSchemas: "__fusion_1_id": "2" } - document: | - query Op_1b3419da_3( - $__fusion_2_id: ID! - ) { + query Op_1b3419da_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { a: name } @@ -158,9 +152,7 @@ sourceSchemas: "__fusion_2_id": "1" } - document: | - query Op_1b3419da_3( - $__fusion_2_id: ID! - ) { + query Op_1b3419da_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { a: name } @@ -241,9 +233,7 @@ operationPlan: type: Operation schema: b operation: | - query Op_1b3419da_2( - $__fusion_1_id: ID! - ) { + query Op_1b3419da_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { b: name(postFix: "2") } @@ -261,9 +251,7 @@ operationPlan: type: Operation schema: b operation: | - query Op_1b3419da_3( - $__fusion_2_id: ID! - ) { + query Op_1b3419da_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { a: name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.OperationBatch_BatchRequest_OnlyRequestBatching_ServerReturnsJsonArray.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.OperationBatch_BatchRequest_OnlyRequestBatching_ServerReturnsJsonArray.yaml index 7fd6922eaa6..e82527b6a97 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.OperationBatch_BatchRequest_OnlyRequestBatching_ServerReturnsJsonArray.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.OperationBatch_BatchRequest_OnlyRequestBatching_ServerReturnsJsonArray.yaml @@ -17,23 +17,53 @@ response: "data": { "books": [ { - "a": { - "a": "Author 1" - }, - "b": { - "b": "Author 1 - 2" - } + "a": null, + "b": null }, { - "a": { - "a": "Author 2" - }, - "b": { - "b": "Author 2 - 2" - } + "a": null, + "b": null } ] - } + }, + "errors": [ + { + "message": "Unexpected Execution Error", + "path": [ + "books", + 0, + "a", + "a" + ] + }, + { + "message": "Unexpected Execution Error", + "path": [ + "books", + 0, + "b", + "b" + ] + }, + { + "message": "Unexpected Execution Error", + "path": [ + "books", + 1, + "a", + "a" + ] + }, + { + "message": "Unexpected Execution Error", + "path": [ + "books", + 1, + "b", + "b" + ] + } + ] } sourceSchemas: - name: a @@ -122,9 +152,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query Op_1b3419da_2( - $__fusion_1_id: ID! - ) { + query Op_1b3419da_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { b: name(postFix: "2") } @@ -134,9 +162,7 @@ sourceSchemas: "__fusion_1_id": "1" } - document: | - query Op_1b3419da_2( - $__fusion_1_id: ID! - ) { + query Op_1b3419da_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { b: name(postFix: "2") } @@ -146,9 +172,7 @@ sourceSchemas: "__fusion_1_id": "2" } - document: | - query Op_1b3419da_3( - $__fusion_2_id: ID! - ) { + query Op_1b3419da_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { a: name } @@ -158,9 +182,7 @@ sourceSchemas: "__fusion_2_id": "1" } - document: | - query Op_1b3419da_3( - $__fusion_2_id: ID! - ) { + query Op_1b3419da_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { a: name } @@ -170,40 +192,8 @@ sourceSchemas: "__fusion_2_id": "2" } response: - contentType: application/json; charset=utf-8 - results: - - | - { - "data": { - "authorById": { - "b": "Author 1 - 2" - } - } - } - - | - { - "data": { - "authorById": { - "b": "Author 2 - 2" - } - } - } - - | - { - "data": { - "authorById": { - "a": "Author 1" - } - } - } - - | - { - "data": { - "authorById": { - "a": "Author 2" - } - } - } + statusCode: 500 + contentType: text/plain; charset=utf-8 operationPlan: operation: - document: | @@ -241,9 +231,7 @@ operationPlan: type: Operation schema: b operation: | - query Op_1b3419da_2( - $__fusion_1_id: ID! - ) { + query Op_1b3419da_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { b: name(postFix: "2") } @@ -261,9 +249,7 @@ operationPlan: type: Operation schema: b operation: | - query Op_1b3419da_3( - $__fusion_2_id: ID! - ) { + query Op_1b3419da_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { a: name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.OperationBatch_BatchRequest_OnlyRequestBatching_ServerReturnsNoRequestIndices.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.OperationBatch_BatchRequest_OnlyRequestBatching_ServerReturnsNoRequestIndices.yaml index 48b8c8cd194..7a6e081167d 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.OperationBatch_BatchRequest_OnlyRequestBatching_ServerReturnsNoRequestIndices.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.OperationBatch_BatchRequest_OnlyRequestBatching_ServerReturnsNoRequestIndices.yaml @@ -17,23 +17,53 @@ response: "data": { "books": [ { - "a": { - "a": "Author 1" - }, - "b": { - "b": "Author 1 - 2" - } + "a": null, + "b": null }, { - "a": { - "a": "Author 2" - }, - "b": { - "b": "Author 2 - 2" - } + "a": null, + "b": null } ] - } + }, + "errors": [ + { + "message": "Unexpected Execution Error", + "path": [ + "books", + 0, + "a", + "a" + ] + }, + { + "message": "Unexpected Execution Error", + "path": [ + "books", + 0, + "b", + "b" + ] + }, + { + "message": "Unexpected Execution Error", + "path": [ + "books", + 1, + "a", + "a" + ] + }, + { + "message": "Unexpected Execution Error", + "path": [ + "books", + 1, + "b", + "b" + ] + } + ] } sourceSchemas: - name: a @@ -122,9 +152,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query Op_1b3419da_2( - $__fusion_1_id: ID! - ) { + query Op_1b3419da_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { b: name(postFix: "2") } @@ -134,9 +162,7 @@ sourceSchemas: "__fusion_1_id": "1" } - document: | - query Op_1b3419da_2( - $__fusion_1_id: ID! - ) { + query Op_1b3419da_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { b: name(postFix: "2") } @@ -146,9 +172,7 @@ sourceSchemas: "__fusion_1_id": "2" } - document: | - query Op_1b3419da_3( - $__fusion_2_id: ID! - ) { + query Op_1b3419da_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { a: name } @@ -158,9 +182,7 @@ sourceSchemas: "__fusion_2_id": "1" } - document: | - query Op_1b3419da_3( - $__fusion_2_id: ID! - ) { + query Op_1b3419da_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { a: name } @@ -170,40 +192,8 @@ sourceSchemas: "__fusion_2_id": "2" } response: - contentType: text/event-stream; charset=utf-8 - results: - - | - { - "data": { - "authorById": { - "b": "Author 1 - 2" - } - } - } - - | - { - "data": { - "authorById": { - "b": "Author 2 - 2" - } - } - } - - | - { - "data": { - "authorById": { - "a": "Author 1" - } - } - } - - | - { - "data": { - "authorById": { - "a": "Author 2" - } - } - } + statusCode: 500 + contentType: text/plain; charset=utf-8 operationPlan: operation: - document: | @@ -241,9 +231,7 @@ operationPlan: type: Operation schema: b operation: | - query Op_1b3419da_2( - $__fusion_1_id: ID! - ) { + query Op_1b3419da_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { b: name(postFix: "2") } @@ -261,9 +249,7 @@ operationPlan: type: Operation schema: b operation: | - query Op_1b3419da_3( - $__fusion_2_id: ID! - ) { + query Op_1b3419da_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { a: name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.OperationBatch_BatchRequest_OnlyVariableBatching.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.OperationBatch_BatchRequest_OnlyVariableBatching.yaml index 9d8e834daf2..0797275ee33 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.OperationBatch_BatchRequest_OnlyVariableBatching.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaClientCapabilitiesTests.OperationBatch_BatchRequest_OnlyVariableBatching.yaml @@ -122,9 +122,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query Op_1b3419da_2( - $__fusion_1_id: ID! - ) { + query Op_1b3419da_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { b: name(postFix: "2") } @@ -139,9 +137,7 @@ sourceSchemas: } ] - document: | - query Op_1b3419da_3( - $__fusion_2_id: ID! - ) { + query Op_1b3419da_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { a: name } @@ -227,9 +223,7 @@ operationPlan: type: Operation schema: b operation: | - query Op_1b3419da_2( - $__fusion_1_id: ID! - ) { + query Op_1b3419da_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { b: name(postFix: "2") } @@ -247,9 +241,7 @@ operationPlan: type: Operation schema: b operation: | - query Op_1b3419da_3( - $__fusion_2_id: ID! - ) { + query Op_1b3419da_3($__fusion_2_id: ID!) { authorById(id: $__fusion_2_id) { a: name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Field_In_List_OnError_Null.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Field_In_List_OnError_Null.yaml index d44dbcfd758..025ae0c13ae 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Field_In_List_OnError_Null.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Field_In_List_OnError_Null.yaml @@ -121,9 +121,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_67b3f75a_2( - $__fusion_1_id: Int! - ) { + query Op_67b3f75a_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -213,9 +211,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_67b3f75a_2( - $__fusion_1_id: Int! - ) { + query Op_67b3f75a_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Field_In_List_OnError_Propagate.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Field_In_List_OnError_Propagate.yaml index 8d9603cd9cd..2723e018429 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Field_In_List_OnError_Propagate.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Field_In_List_OnError_Propagate.yaml @@ -120,9 +120,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_67b3f75a_2( - $__fusion_1_id: Int! - ) { + query Op_67b3f75a_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -212,9 +210,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_67b3f75a_2( - $__fusion_1_id: Int! - ) { + query Op_67b3f75a_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Field_OnError_Null.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Field_OnError_Null.yaml index a081bc3e0e8..88f706c8204 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Field_OnError_Null.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Field_OnError_Null.yaml @@ -84,9 +84,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -139,9 +137,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Field_OnError_Propagate.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Field_OnError_Propagate.yaml index f9615d44480..8c9abf20be7 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Field_OnError_Propagate.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Field_OnError_Propagate.yaml @@ -83,9 +83,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -138,9 +136,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_In_List_NonNull_OnError_Null.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_In_List_NonNull_OnError_Null.yaml index 52336d41f8d..861be01e296 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_In_List_NonNull_OnError_Null.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_In_List_NonNull_OnError_Null.yaml @@ -121,9 +121,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_67b3f75a_2( - $__fusion_1_id: Int! - ) { + query Op_67b3f75a_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -213,9 +211,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_67b3f75a_2( - $__fusion_1_id: Int! - ) { + query Op_67b3f75a_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_In_List_NonNull_OnError_Propagate.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_In_List_NonNull_OnError_Propagate.yaml index 2239cd54afc..85614f2bc01 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_In_List_NonNull_OnError_Propagate.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_In_List_NonNull_OnError_Propagate.yaml @@ -88,9 +88,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_67b3f75a_2( - $__fusion_1_id: Int! - ) { + query Op_67b3f75a_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -180,9 +178,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_67b3f75a_2( - $__fusion_1_id: Int! - ) { + query Op_67b3f75a_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_In_List_OnError_Null.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_In_List_OnError_Null.yaml index 8ef1eb4ca88..f14ca7220cb 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_In_List_OnError_Null.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_In_List_OnError_Null.yaml @@ -121,9 +121,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_67b3f75a_2( - $__fusion_1_id: Int! - ) { + query Op_67b3f75a_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -222,9 +220,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_67b3f75a_2( - $__fusion_1_id: Int! - ) { + query Op_67b3f75a_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_In_List_OnError_Propagate.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_In_List_OnError_Propagate.yaml index d2bf3c1f0a6..d97be01ac5e 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_In_List_OnError_Propagate.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_In_List_OnError_Propagate.yaml @@ -120,9 +120,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_67b3f75a_2( - $__fusion_1_id: Int! - ) { + query Op_67b3f75a_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -221,9 +219,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_67b3f75a_2( - $__fusion_1_id: Int! - ) { + query Op_67b3f75a_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_NonNull_OnError_Null.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_NonNull_OnError_Null.yaml index 3eef6c93375..c2261024fff 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_NonNull_OnError_Null.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_NonNull_OnError_Null.yaml @@ -84,9 +84,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -139,9 +137,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_NonNull_OnError_Propagate.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_NonNull_OnError_Propagate.yaml index ec05fdf95cc..0db5c6b46dc 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_NonNull_OnError_Propagate.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_NonNull_OnError_Propagate.yaml @@ -77,9 +77,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -132,9 +130,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_OnError_Null.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_OnError_Null.yaml index 0b965cb66e6..f48a3f4468e 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_OnError_Null.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_OnError_Null.yaml @@ -84,9 +84,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -142,9 +140,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_OnError_Propagate.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_OnError_Propagate.yaml index fa2de670328..ca984e4abb2 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_OnError_Propagate.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.Error_On_Lookup_Leaf_OnError_Propagate.yaml @@ -83,9 +83,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -141,9 +139,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_With_Path_For_Lookup_Field_NonNull_OnError_Null.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_With_Path_For_Lookup_Field_NonNull_OnError_Null.yaml index 444526b99c1..f954ef8208d 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_With_Path_For_Lookup_Field_NonNull_OnError_Null.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_With_Path_For_Lookup_Field_NonNull_OnError_Null.yaml @@ -84,9 +84,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -137,9 +135,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_With_Path_For_Lookup_Field_NonNull_OnError_Propagate.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_With_Path_For_Lookup_Field_NonNull_OnError_Propagate.yaml index eda79b914f6..913551cd501 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_With_Path_For_Lookup_Field_NonNull_OnError_Propagate.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_With_Path_For_Lookup_Field_NonNull_OnError_Propagate.yaml @@ -77,9 +77,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -130,9 +128,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_With_Path_For_Lookup_Leaf_NonNull_OnError_Null.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_With_Path_For_Lookup_Leaf_NonNull_OnError_Null.yaml index 20c1461d195..4472df2dfcc 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_With_Path_For_Lookup_Leaf_NonNull_OnError_Null.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_With_Path_For_Lookup_Leaf_NonNull_OnError_Null.yaml @@ -84,9 +84,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -138,9 +136,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_With_Path_For_Lookup_Leaf_NonNull_OnError_Propagate.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_With_Path_For_Lookup_Leaf_NonNull_OnError_Propagate.yaml index 3fedb3fd239..daf45c66c77 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_With_Path_For_Lookup_Leaf_NonNull_OnError_Propagate.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_With_Path_For_Lookup_Leaf_NonNull_OnError_Propagate.yaml @@ -77,9 +77,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -131,9 +129,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_Without_Path_For_Lookup_Field_NonNull_OnError_Null.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_Without_Path_For_Lookup_Field_NonNull_OnError_Null.yaml index 3b77016838e..d80d0a78667 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_Without_Path_For_Lookup_Field_NonNull_OnError_Null.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_Without_Path_For_Lookup_Field_NonNull_OnError_Null.yaml @@ -87,9 +87,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -137,9 +135,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_Without_Path_For_Lookup_Field_NonNull_OnError_Propagate.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_Without_Path_For_Lookup_Field_NonNull_OnError_Propagate.yaml index 6486a8d90b8..0b0dfc755b7 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_Without_Path_For_Lookup_Field_NonNull_OnError_Propagate.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.No_Data_And_Error_Without_Path_For_Lookup_Field_NonNull_OnError_Propagate.yaml @@ -80,9 +80,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -130,9 +128,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_NonNull_OnError_Null.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_NonNull_OnError_Null.yaml index 05db37b9d4f..cbb41420ad7 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_NonNull_OnError_Null.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_NonNull_OnError_Null.yaml @@ -84,9 +84,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -125,9 +123,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_NonNull_OnError_Propagate.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_NonNull_OnError_Propagate.yaml index 01b68811ab5..0ca7441ec11 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_NonNull_OnError_Propagate.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_NonNull_OnError_Propagate.yaml @@ -77,9 +77,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -118,9 +116,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e24d93b6_2( - $__fusion_1_id: Int! - ) { + query Op_e24d93b6_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_OnError_Null.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_OnError_Null.yaml index 56038892b3d..f7cdfa6e650 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_OnError_Null.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_OnError_Null.yaml @@ -84,9 +84,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_12015865_2( - $__fusion_1_id: Int! - ) { + query Op_12015865_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -125,9 +123,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_12015865_2( - $__fusion_1_id: Int! - ) { + query Op_12015865_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_OnError_Propagate.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_OnError_Propagate.yaml index 0980734f8a4..a2666a05d26 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_OnError_Propagate.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_OnError_Propagate.yaml @@ -83,9 +83,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_12015865_2( - $__fusion_1_id: Int! - ) { + query Op_12015865_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -124,9 +122,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_12015865_2( - $__fusion_1_id: Int! - ) { + query Op_12015865_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_On_List_NonNull_OnError_Null.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_On_List_NonNull_OnError_Null.yaml index 29888b4a937..667e6f795c9 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_On_List_NonNull_OnError_Null.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_On_List_NonNull_OnError_Null.yaml @@ -121,9 +121,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_67b3f75a_2( - $__fusion_1_id: Int! - ) { + query Op_67b3f75a_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -170,9 +168,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_67b3f75a_2( - $__fusion_1_id: Int! - ) { + query Op_67b3f75a_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_On_List_NonNull_OnError_Propagate.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_On_List_NonNull_OnError_Propagate.yaml index de89a672974..ea6afa897b1 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_On_List_NonNull_OnError_Propagate.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_On_List_NonNull_OnError_Propagate.yaml @@ -88,9 +88,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_67b3f75a_2( - $__fusion_1_id: Int! - ) { + query Op_67b3f75a_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -137,9 +135,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_67b3f75a_2( - $__fusion_1_id: Int! - ) { + query Op_67b3f75a_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_On_List_OnError_Null.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_On_List_OnError_Null.yaml index 9f32a2d9f25..a3326b7583f 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_On_List_OnError_Null.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_On_List_OnError_Null.yaml @@ -121,9 +121,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_67b3f75a_2( - $__fusion_1_id: Int! - ) { + query Op_67b3f75a_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -170,9 +168,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_67b3f75a_2( - $__fusion_1_id: Int! - ) { + query Op_67b3f75a_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_On_List_OnError_Propagate.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_On_List_OnError_Propagate.yaml index f289247c0e0..fd90b621e31 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_On_List_OnError_Propagate.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SourceSchemaErrorTests.SourceSchema_Request_Fails_For_Lookup_On_List_OnError_Propagate.yaml @@ -120,9 +120,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_67b3f75a_2( - $__fusion_1_id: Int! - ) { + query Op_67b3f75a_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } @@ -169,9 +167,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_67b3f75a_2( - $__fusion_1_id: Int! - ) { + query Op_67b3f75a_2($__fusion_1_id: Int!) { productById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SubscriptionsOverHttpStoreTests.Subscribe_Simple.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SubscriptionsOverHttpStoreTests.Subscribe_Simple.yaml index 91352401755..7b54deb2887 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SubscriptionsOverHttpStoreTests.Subscribe_Simple.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/SubscriptionsOverHttpStoreTests.Subscribe_Simple.yaml @@ -108,9 +108,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_a6fc02fc_2( - $__fusion_1_id: Int! - ) { + query Op_a6fc02fc_2($__fusion_1_id: Int!) { bookById(id: $__fusion_1_id) { title } @@ -172,9 +170,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_a6fc02fc_2( - $__fusion_1_id: Int! - ) { + query Op_a6fc02fc_2($__fusion_1_id: Int!) { bookById(id: $__fusion_1_id) { title } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_Field_Concrete_Type_Has_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_Field_Concrete_Type_Has_Dependency.yaml index f5f4e62eb6f..8e495c6e936 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_Field_Concrete_Type_Has_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_Field_Concrete_Type_Has_Dependency.yaml @@ -123,9 +123,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_30e5fe2d_2( - $__fusion_1_id: ID! - ) { + query testQuery_30e5fe2d_2($__fusion_1_id: ID!) { photoById(id: $__fusion_1_id) { subgraph2 } @@ -212,9 +210,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_30e5fe2d_2( - $__fusion_1_id: ID! - ) { + query testQuery_30e5fe2d_2($__fusion_1_id: ID!) { photoById(id: $__fusion_1_id) { subgraph2 } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_Field_Concrete_Type_Selection_Has_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_Field_Concrete_Type_Selection_Has_Dependency.yaml index 2a6b188b0d5..3a73458bf72 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_Field_Concrete_Type_Selection_Has_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_Field_Concrete_Type_Selection_Has_Dependency.yaml @@ -152,9 +152,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_1bceaa5d_3( - $__fusion_2_id: ID! - ) { + query testQuery_1bceaa5d_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { subgraph2 } @@ -264,9 +262,7 @@ operationPlan: type: Operation schema: C operation: | - query testQuery_1bceaa5d_2( - $__fusion_1_id: ID! - ) { + query testQuery_1bceaa5d_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { subgraph3 } @@ -283,9 +279,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_1bceaa5d_3( - $__fusion_2_id: ID! - ) { + query testQuery_1bceaa5d_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { subgraph2 } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_Field_Concrete_Type_Selections_Have_Dependency_To_Same_Subgraph.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_Field_Concrete_Type_Selections_Have_Dependency_To_Same_Subgraph.yaml index 52aa1e96004..58941f407e1 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_Field_Concrete_Type_Selections_Have_Dependency_To_Same_Subgraph.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_Field_Concrete_Type_Selections_Have_Dependency_To_Same_Subgraph.yaml @@ -158,9 +158,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_4ba127ab_3( - $__fusion_2_id: ID! - ) { + query testQuery_4ba127ab_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { subgraph2 } @@ -256,9 +254,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_4ba127ab_2( - $__fusion_1_id: ID! - ) { + query testQuery_4ba127ab_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { subgraph2 } @@ -276,9 +272,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_4ba127ab_3( - $__fusion_2_id: ID! - ) { + query testQuery_4ba127ab_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { subgraph2 } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_Field_Concrete_Type_Selections_Have_Same_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_Field_Concrete_Type_Selections_Have_Same_Dependency.yaml index 218c1d79288..a48503817b6 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_Field_Concrete_Type_Selections_Have_Same_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_Field_Concrete_Type_Selections_Have_Same_Dependency.yaml @@ -148,9 +148,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_ec963286_2( - $__fusion_1_id: ID! - ) { + query testQuery_ec963286_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { subgraph2 } @@ -246,9 +244,7 @@ operationPlan: type: OperationBatch schema: B operation: | - query testQuery_ec963286_2( - $__fusion_1_id: ID! - ) { + query testQuery_ec963286_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { subgraph2 } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_List_Concrete_Type_Has_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_List_Concrete_Type_Has_Dependency.yaml index fe60ba58fe4..ed02ee3a665 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_List_Concrete_Type_Has_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_List_Concrete_Type_Has_Dependency.yaml @@ -177,9 +177,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_e46e034a_2( - $__fusion_1_id: ID! - ) { + query testQuery_e46e034a_2($__fusion_1_id: ID!) { photoById(id: $__fusion_1_id) { subgraph2 } @@ -299,9 +297,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_e46e034a_2( - $__fusion_1_id: ID! - ) { + query testQuery_e46e034a_2($__fusion_1_id: ID!) { photoById(id: $__fusion_1_id) { subgraph2 } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_List_Concrete_Type_Selection_Has_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_List_Concrete_Type_Selection_Has_Dependency.yaml index da6acbb4c38..2c7ec24f195 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_List_Concrete_Type_Selection_Has_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_List_Concrete_Type_Selection_Has_Dependency.yaml @@ -230,9 +230,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_eb2214e5_3( - $__fusion_2_id: ID! - ) { + query testQuery_eb2214e5_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { subgraph2 } @@ -327,9 +325,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_eb2214e5_2( - $__fusion_1_id: ID! - ) { + query testQuery_eb2214e5_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { subgraph3 } @@ -425,9 +421,7 @@ operationPlan: type: Operation schema: C operation: | - query testQuery_eb2214e5_2( - $__fusion_1_id: ID! - ) { + query testQuery_eb2214e5_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { subgraph3 } @@ -444,9 +438,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_eb2214e5_3( - $__fusion_2_id: ID! - ) { + query testQuery_eb2214e5_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { subgraph2 } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_List_Concrete_Type_Selections_Have_Dependency_To_Same_Subgraph.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_List_Concrete_Type_Selections_Have_Dependency_To_Same_Subgraph.yaml index bf2c827b22e..296403a2a51 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_List_Concrete_Type_Selections_Have_Dependency_To_Same_Subgraph.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_List_Concrete_Type_Selections_Have_Dependency_To_Same_Subgraph.yaml @@ -238,9 +238,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query testQuery_42ede545_2( - $__fusion_1_id: ID! - ) { + query testQuery_42ede545_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { subgraph2 } @@ -258,9 +256,7 @@ sourceSchemas: } ] - document: | - query testQuery_42ede545_3( - $__fusion_2_id: ID! - ) { + query testQuery_42ede545_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { subgraph2 } @@ -413,9 +409,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_42ede545_2( - $__fusion_1_id: ID! - ) { + query testQuery_42ede545_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { subgraph2 } @@ -433,9 +427,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_42ede545_3( - $__fusion_2_id: ID! - ) { + query testQuery_42ede545_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { subgraph2 } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_List_Concrete_Type_Selections_Have_Same_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_List_Concrete_Type_Selections_Have_Same_Dependency.yaml index 87fcdfa09b0..ff392e1d7b0 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_List_Concrete_Type_Selections_Have_Same_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Object_List_Union_List_Concrete_Type_Selections_Have_Same_Dependency.yaml @@ -226,9 +226,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_3579b174_2( - $__fusion_1_id: ID! - ) { + query testQuery_3579b174_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { subgraph2 } @@ -390,9 +388,7 @@ operationPlan: type: OperationBatch schema: B operation: | - query testQuery_3579b174_2( - $__fusion_1_id: ID! - ) { + query testQuery_3579b174_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { subgraph2 } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_Field_Concrete_Type_Has_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_Field_Concrete_Type_Has_Dependency.yaml index 6a9eb92c5ed..e2a1b7c6c95 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_Field_Concrete_Type_Has_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_Field_Concrete_Type_Has_Dependency.yaml @@ -85,9 +85,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_3d3597da_2( - $__fusion_1_id: ID! - ) { + query testQuery_3d3597da_2($__fusion_1_id: ID!) { photoById(id: $__fusion_1_id) { subgraph2 } @@ -145,9 +143,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_3d3597da_2( - $__fusion_1_id: ID! - ) { + query testQuery_3d3597da_2($__fusion_1_id: ID!) { photoById(id: $__fusion_1_id) { subgraph2 } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_Field_Concrete_Type_Selection_Has_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_Field_Concrete_Type_Selection_Has_Dependency.yaml index 7029793245d..45c22644aee 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_Field_Concrete_Type_Selection_Has_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_Field_Concrete_Type_Selection_Has_Dependency.yaml @@ -106,9 +106,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_9f626641_3( - $__fusion_2_id: ID! - ) { + query testQuery_9f626641_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { subgraph2 } @@ -189,9 +187,7 @@ operationPlan: type: Operation schema: C operation: | - query testQuery_9f626641_2( - $__fusion_1_id: ID! - ) { + query testQuery_9f626641_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { subgraph3 } @@ -208,9 +204,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_9f626641_3( - $__fusion_2_id: ID! - ) { + query testQuery_9f626641_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { subgraph2 } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_Field_Concrete_Type_Selections_Have_Dependency_To_Same_Subgraph.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_Field_Concrete_Type_Selections_Have_Dependency_To_Same_Subgraph.yaml index f35649a5e5c..2846410af26 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_Field_Concrete_Type_Selections_Have_Dependency_To_Same_Subgraph.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_Field_Concrete_Type_Selections_Have_Dependency_To_Same_Subgraph.yaml @@ -112,9 +112,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_8891193d_3( - $__fusion_2_id: ID! - ) { + query testQuery_8891193d_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { subgraph2 } @@ -181,9 +179,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_8891193d_2( - $__fusion_1_id: ID! - ) { + query testQuery_8891193d_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { subgraph2 } @@ -201,9 +197,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_8891193d_3( - $__fusion_2_id: ID! - ) { + query testQuery_8891193d_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { subgraph2 } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_Field_Concrete_Type_Selections_Have_Same_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_Field_Concrete_Type_Selections_Have_Same_Dependency.yaml index 08aaa247dc3..983e0c34393 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_Field_Concrete_Type_Selections_Have_Same_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_Field_Concrete_Type_Selections_Have_Same_Dependency.yaml @@ -102,9 +102,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_7d12de3b_2( - $__fusion_1_id: ID! - ) { + query testQuery_7d12de3b_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { subgraph2 } @@ -171,9 +169,7 @@ operationPlan: type: OperationBatch schema: B operation: | - query testQuery_7d12de3b_2( - $__fusion_1_id: ID! - ) { + query testQuery_7d12de3b_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { subgraph2 } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_List_Concrete_Type_Has_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_List_Concrete_Type_Has_Dependency.yaml index 5496f458c3f..4bcf7441efa 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_List_Concrete_Type_Has_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_List_Concrete_Type_Has_Dependency.yaml @@ -103,9 +103,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_7e81ce9e_2( - $__fusion_1_id: ID! - ) { + query testQuery_7e81ce9e_2($__fusion_1_id: ID!) { photoById(id: $__fusion_1_id) { subgraph2 } @@ -177,9 +175,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_7e81ce9e_2( - $__fusion_1_id: ID! - ) { + query testQuery_7e81ce9e_2($__fusion_1_id: ID!) { photoById(id: $__fusion_1_id) { subgraph2 } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_List_Concrete_Type_Selection_Has_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_List_Concrete_Type_Selection_Has_Dependency.yaml index 3eb93be7b54..69cfd705ec7 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_List_Concrete_Type_Selection_Has_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_List_Concrete_Type_Selection_Has_Dependency.yaml @@ -132,9 +132,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_c164a236_3( - $__fusion_2_id: ID! - ) { + query testQuery_c164a236_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { subgraph2 } @@ -185,9 +183,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_c164a236_2( - $__fusion_1_id: ID! - ) { + query testQuery_c164a236_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { subgraph3 } @@ -254,9 +250,7 @@ operationPlan: type: Operation schema: C operation: | - query testQuery_c164a236_2( - $__fusion_1_id: ID! - ) { + query testQuery_c164a236_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { subgraph3 } @@ -273,9 +267,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_c164a236_3( - $__fusion_2_id: ID! - ) { + query testQuery_c164a236_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { subgraph2 } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_List_Concrete_Type_Selections_Have_Dependency_To_Same_Subgraph.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_List_Concrete_Type_Selections_Have_Dependency_To_Same_Subgraph.yaml index e3c65c51f94..5bffda6ed38 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_List_Concrete_Type_Selections_Have_Dependency_To_Same_Subgraph.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_List_Concrete_Type_Selections_Have_Dependency_To_Same_Subgraph.yaml @@ -140,9 +140,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query testQuery_5f4670e8_2( - $__fusion_1_id: ID! - ) { + query testQuery_5f4670e8_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { subgraph2 } @@ -152,9 +150,7 @@ sourceSchemas: "__fusion_1_id": "QXV0aG9yOjU=" } - document: | - query testQuery_5f4670e8_3( - $__fusion_2_id: ID! - ) { + query testQuery_5f4670e8_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { subgraph2 } @@ -243,9 +239,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_5f4670e8_2( - $__fusion_1_id: ID! - ) { + query testQuery_5f4670e8_2($__fusion_1_id: ID!) { authorById(id: $__fusion_1_id) { subgraph2 } @@ -263,9 +257,7 @@ operationPlan: type: Operation schema: B operation: | - query testQuery_5f4670e8_3( - $__fusion_2_id: ID! - ) { + query testQuery_5f4670e8_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { subgraph2 } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_List_Concrete_Type_Selections_Have_Same_Dependency.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_List_Concrete_Type_Selections_Have_Same_Dependency.yaml index 4281bed9261..a647e2f1bbc 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_List_Concrete_Type_Selections_Have_Same_Dependency.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/UnionTests.Union_List_Concrete_Type_Selections_Have_Same_Dependency.yaml @@ -128,9 +128,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query testQuery_9b3b2942_2( - $__fusion_1_id: ID! - ) { + query testQuery_9b3b2942_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { subgraph2 } @@ -222,9 +220,7 @@ operationPlan: type: OperationBatch schema: B operation: | - query testQuery_9b3b2942_2( - $__fusion_1_id: ID! - ) { + query testQuery_9b3b2942_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { subgraph2 } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.InputObject_Invalid_Field.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.InputObject_Invalid_Field.yaml index ad5a138da57..148d721ab24 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.InputObject_Invalid_Field.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.InputObject_Invalid_Field.yaml @@ -1,9 +1,7 @@ title: InputObject_Invalid_Field request: document: | - query testQuery( - $cat: Cat! - ) { + query testQuery($cat: Cat!) { catName(input: $cat) } variables: | diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.InputObject_Missing_NonNull_Field.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.InputObject_Missing_NonNull_Field.yaml index 51c688eed6c..f9cdc9d4178 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.InputObject_Missing_NonNull_Field.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.InputObject_Missing_NonNull_Field.yaml @@ -1,9 +1,7 @@ title: InputObject_Missing_NonNull_Field request: document: | - query testQuery( - $cat: Cat! - ) { + query testQuery($cat: Cat!) { catName(input: $cat) } variables: | diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.InputObject_Missing_NonNull_Field_With_Default_Value.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.InputObject_Missing_NonNull_Field_With_Default_Value.yaml index 8eca7ec6dc1..95250cb8a51 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.InputObject_Missing_NonNull_Field_With_Default_Value.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.InputObject_Missing_NonNull_Field_With_Default_Value.yaml @@ -1,9 +1,7 @@ title: InputObject_Missing_NonNull_Field_With_Default_Value request: document: | - query testQuery( - $cat: Cat! - ) { + query testQuery($cat: Cat!) { catName(input: $cat) } variables: | @@ -38,9 +36,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_d0958502_1( - $cat: Cat! - ) { + query testQuery_d0958502_1($cat: Cat!) { catName(input: $cat) } variables: | @@ -60,9 +56,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $cat: Cat! - ) { + query testQuery($cat: Cat!) { catName(input: $cat) } name: testQuery @@ -74,9 +68,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_d0958502_1( - $cat: Cat! - ) { + query testQuery_d0958502_1($cat: Cat!) { catName(input: $cat) } forwardedVariables: diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.InputObject_Missing_Nullable_Field.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.InputObject_Missing_Nullable_Field.yaml index 9dfec91e373..480a0b5c402 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.InputObject_Missing_Nullable_Field.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.InputObject_Missing_Nullable_Field.yaml @@ -1,9 +1,7 @@ title: InputObject_Missing_Nullable_Field request: document: | - query testQuery( - $cat: Cat! - ) { + query testQuery($cat: Cat!) { catName(input: $cat) } variables: | @@ -38,9 +36,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_d0958502_1( - $cat: Cat! - ) { + query testQuery_d0958502_1($cat: Cat!) { catName(input: $cat) } variables: | @@ -60,9 +56,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $cat: Cat! - ) { + query testQuery($cat: Cat!) { catName(input: $cat) } name: testQuery @@ -74,9 +68,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_d0958502_1( - $cat: Cat! - ) { + query testQuery_d0958502_1($cat: Cat!) { catName(input: $cat) } forwardedVariables: diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.OneOf_Multiple_Options_Provided.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.OneOf_Multiple_Options_Provided.yaml index c9e3f83b25f..114fc548086 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.OneOf_Multiple_Options_Provided.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.OneOf_Multiple_Options_Provided.yaml @@ -1,9 +1,7 @@ title: OneOf_Multiple_Options_Provided request: document: | - query testQuery( - $pet: Pet! - ) { + query testQuery($pet: Pet!) { petName(input: $pet) } variables: | diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.OneOf_No_Option_Provided.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.OneOf_No_Option_Provided.yaml index a3447bab665..e65e9d499a2 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.OneOf_No_Option_Provided.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.OneOf_No_Option_Provided.yaml @@ -1,9 +1,7 @@ title: OneOf_No_Option_Provided request: document: | - query testQuery( - $pet: Pet! - ) { + query testQuery($pet: Pet!) { petName(input: $pet) } variables: | diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.OneOf_Only_One_Option_Provided.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.OneOf_Only_One_Option_Provided.yaml index afe00059526..ff0e54bf281 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.OneOf_Only_One_Option_Provided.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.OneOf_Only_One_Option_Provided.yaml @@ -1,9 +1,7 @@ title: OneOf_Only_One_Option_Provided request: document: | - query testQuery( - $pet: Pet! - ) { + query testQuery($pet: Pet!) { petName(input: $pet) } variables: | @@ -51,9 +49,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_6ad33e0e_1( - $pet: Pet! - ) { + query testQuery_6ad33e0e_1($pet: Pet!) { petName(input: $pet) } variables: | @@ -75,9 +71,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $pet: Pet! - ) { + query testQuery($pet: Pet!) { petName(input: $pet) } name: testQuery @@ -89,9 +83,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_6ad33e0e_1( - $pet: Pet! - ) { + query testQuery_6ad33e0e_1($pet: Pet!) { petName(input: $pet) } forwardedVariables: diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.OneOf_Only_One_Option_Provided_But_Value_Is_Null.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.OneOf_Only_One_Option_Provided_But_Value_Is_Null.yaml index 1ac9afa6bb5..c8bc977f54c 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.OneOf_Only_One_Option_Provided_But_Value_Is_Null.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.OneOf_Only_One_Option_Provided_But_Value_Is_Null.yaml @@ -1,9 +1,7 @@ title: OneOf_Only_One_Option_Provided_But_Value_Is_Null request: document: | - query testQuery( - $pet: Pet! - ) { + query testQuery($pet: Pet!) { petName(input: $pet) } variables: | diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.String_With_Quotes.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.String_With_Quotes.yaml index db9991c06d4..e6cadf30566 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.String_With_Quotes.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/VariableCoercionTests.String_With_Quotes.yaml @@ -1,9 +1,7 @@ title: String_With_Quotes request: document: | - query testQuery( - $input: String! - ) { + query testQuery($input: String!) { field(input: $input) } variables: | @@ -31,9 +29,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query testQuery_9dd2f586_1( - $input: String! - ) { + query testQuery_9dd2f586_1($input: String!) { field(input: $input) } variables: | @@ -51,9 +47,7 @@ sourceSchemas: operationPlan: operation: - document: | - query testQuery( - $input: String! - ) { + query testQuery($input: String!) { field(input: $input) } name: testQuery @@ -65,9 +59,7 @@ operationPlan: type: Operation schema: A operation: | - query testQuery_9dd2f586_1( - $input: String! - ) { + query testQuery_9dd2f586_1($input: String!) { field(input: $input) } forwardedVariables: diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_And_Products_AutoCompose.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_And_Products_AutoCompose.yaml index 7476700a309..5fa36d3247d 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_And_Products_AutoCompose.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_And_Products_AutoCompose.yaml @@ -67,7 +67,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_And_Products_Introspection.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_And_Products_Introspection.yaml index 3caec854aca..3bef2e6b7d9 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_And_Products_Introspection.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_And_Products_Introspection.yaml @@ -615,7 +615,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_And_Products_Query_TopProducts.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_And_Products_Query_TopProducts.yaml index edda72e362f..b74d03c5227 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_And_Products_Query_TopProducts.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_And_Products_Query_TopProducts.yaml @@ -105,7 +105,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -118,9 +118,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query TopProducts_c6ef3d11_3( - $__fusion_2_id: ID! - ) { + query TopProducts_c6ef3d11_3($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on User { @@ -280,9 +278,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query TopProducts_c6ef3d11_2( - $__fusion_1_id: ID! - ) { + query TopProducts_c6ef3d11_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { @@ -501,9 +497,7 @@ operationPlan: type: Operation schema: B operation: | - query TopProducts_c6ef3d11_2( - $__fusion_1_id: ID! - ) { + query TopProducts_c6ef3d11_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { @@ -528,9 +522,7 @@ operationPlan: type: Operation schema: A operation: | - query TopProducts_c6ef3d11_3( - $__fusion_2_id: ID! - ) { + query TopProducts_c6ef3d11_3($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on User { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_And_Products_Query_TypeName.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_And_Products_Query_TypeName.yaml index 54688371f5a..81b5912ad5e 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_And_Products_Query_TypeName.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_And_Products_Query_TypeName.yaml @@ -107,7 +107,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -154,9 +154,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query TopProducts_b7ed3f85_2( - $__fusion_1_id: ID! - ) { + query TopProducts_b7ed3f85_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { @@ -378,9 +376,7 @@ operationPlan: type: Operation schema: B operation: | - query TopProducts_b7ed3f85_2( - $__fusion_1_id: ID! - ) { + query TopProducts_b7ed3f85_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_And_Products_With_Variables.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_And_Products_With_Variables.yaml index 6e82859a613..0c90fa0ae96 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_And_Products_With_Variables.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_And_Products_With_Variables.yaml @@ -1,9 +1,7 @@ title: Authors_And_Reviews_And_Products_With_Variables request: document: | - query TopProducts( - $first: Int! - ) { + query TopProducts($first: Int!) { topProducts(first: $first) { id } @@ -45,7 +43,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -133,9 +131,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query TopProducts_42998eb3_1( - $first: Int! - ) { + query TopProducts_42998eb3_1($first: Int!) { topProducts(first: $first) { id } @@ -165,9 +161,7 @@ sourceSchemas: operationPlan: operation: - document: | - query TopProducts( - $first: Int! - ) { + query TopProducts($first: Int!) { topProducts(first: $first) { id } @@ -181,9 +175,7 @@ operationPlan: type: Operation schema: C operation: | - query TopProducts_42998eb3_1( - $first: Int! - ) { + query TopProducts_42998eb3_1($first: Int!) { topProducts(first: $first) { id } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_AutoCompose.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_AutoCompose.yaml index 67e499ece52..33859e6880f 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_AutoCompose.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_AutoCompose.yaml @@ -53,7 +53,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Batch_Requests.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Batch_Requests.yaml index a4dfcf9eda6..810a35b114c 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Batch_Requests.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Batch_Requests.yaml @@ -51,7 +51,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -64,9 +64,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query GetUser_bc5cddd0_2( - $__fusion_1_id: ID! - ) { + query GetUser_bc5cddd0_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on User { @@ -222,9 +220,7 @@ operationPlan: type: Operation schema: A operation: | - query GetUser_bc5cddd0_2( - $__fusion_1_id: ID! - ) { + query GetUser_bc5cddd0_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on User { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_GetUserById.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_GetUserById.yaml index 0d39599e588..4217a5484b3 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_GetUserById.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_GetUserById.yaml @@ -31,7 +31,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_GetUserById_With_Invalid_Id_Value.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_GetUserById_With_Invalid_Id_Value.yaml index 1f5dffe5e2e..322e5096eb6 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_GetUserById_With_Invalid_Id_Value.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_GetUserById_With_Invalid_Id_Value.yaml @@ -31,7 +31,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_GetUserReviews.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_GetUserReviews.yaml index 0d888e45133..f4d826122ba 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_GetUserReviews.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_GetUserReviews.yaml @@ -105,7 +105,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -148,9 +148,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query GetUser_6e80578a_3( - $__fusion_2_id: ID! - ) { + query GetUser_6e80578a_3($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on User { @@ -310,9 +308,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query GetUser_6e80578a_2( - $__fusion_1_id: ID! - ) { + query GetUser_6e80578a_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on User { @@ -459,9 +455,7 @@ operationPlan: type: Operation schema: B operation: | - query GetUser_6e80578a_2( - $__fusion_1_id: ID! - ) { + query GetUser_6e80578a_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on User { @@ -486,9 +480,7 @@ operationPlan: type: Operation schema: A operation: | - query GetUser_6e80578a_3( - $__fusion_2_id: ID! - ) { + query GetUser_6e80578a_3($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on User { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_GetUserReviews_Skip_Author.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_GetUserReviews_Skip_Author.yaml index fe37e58d28c..ef16399eb40 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_GetUserReviews_Skip_Author.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_GetUserReviews_Skip_Author.yaml @@ -1,9 +1,7 @@ title: Authors_And_Reviews_Query_GetUserReviews_Skip_Author request: document: | - query GetUser( - $skip: Boolean! - ) { + query GetUser($skip: Boolean!) { users { name reviews { @@ -85,7 +83,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -163,10 +161,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query GetUser_f346d273_2( - $skip: Boolean! - $__fusion_1_id: ID! - ) { + query GetUser_f346d273_2($skip: Boolean!, $__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on User { @@ -257,9 +252,7 @@ sourceSchemas: operationPlan: operation: - document: | - query GetUser( - $skip: Boolean! - ) { + query GetUser($skip: Boolean!) { users { name reviews { @@ -292,10 +285,7 @@ operationPlan: type: Operation schema: B operation: | - query GetUser_f346d273_2( - $skip: Boolean! - $__fusion_1_id: ID! - ) { + query GetUser_f346d273_2($skip: Boolean!, $__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on User { @@ -322,9 +312,7 @@ operationPlan: type: Operation schema: A operation: | - query GetUser_f346d273_3( - $__fusion_2_id: ID! - ) { + query GetUser_f346d273_3($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on User { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_GetUserReviews_Skip_Author_ErrorField.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_GetUserReviews_Skip_Author_ErrorField.yaml index c043234944e..ef500a96ab7 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_GetUserReviews_Skip_Author_ErrorField.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_GetUserReviews_Skip_Author_ErrorField.yaml @@ -1,9 +1,7 @@ title: Authors_And_Reviews_Query_GetUserReviews_Skip_Author_ErrorField request: document: | - query GetUser( - $skip: Boolean! - ) { + query GetUser($skip: Boolean!) { users { name reviews { @@ -122,7 +120,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -165,9 +163,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query GetUser_c6f5d2d4_3( - $__fusion_2_id: ID! - ) { + query GetUser_c6f5d2d4_3($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on User { @@ -337,10 +333,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query GetUser_c6f5d2d4_2( - $skip: Boolean! - $__fusion_1_id: ID! - ) { + query GetUser_c6f5d2d4_2($skip: Boolean!, $__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on User { @@ -459,9 +452,7 @@ sourceSchemas: operationPlan: operation: - document: | - query GetUser( - $skip: Boolean! - ) { + query GetUser($skip: Boolean!) { users { name reviews { @@ -495,10 +486,7 @@ operationPlan: type: Operation schema: B operation: | - query GetUser_c6f5d2d4_2( - $skip: Boolean! - $__fusion_1_id: ID! - ) { + query GetUser_c6f5d2d4_2($skip: Boolean!, $__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on User { @@ -526,9 +514,7 @@ operationPlan: type: Operation schema: A operation: | - query GetUser_c6f5d2d4_3( - $__fusion_2_id: ID! - ) { + query GetUser_c6f5d2d4_3($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on User { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_ReviewsUser.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_ReviewsUser.yaml index dc18bda9ca8..1448cfa481d 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_ReviewsUser.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Authors_And_Reviews_Query_ReviewsUser.yaml @@ -157,7 +157,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -200,9 +200,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query GetUser_c03cccb0_4( - $__fusion_2_id: ID! - ) { + query GetUser_c03cccb0_4($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on User { @@ -462,9 +460,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query GetUser_c03cccb0_3( - $__fusion_1_id: ID! - ) { + query GetUser_c03cccb0_3($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on User { @@ -643,9 +639,7 @@ operationPlan: type: Operation schema: B operation: | - query GetUser_c03cccb0_3( - $__fusion_1_id: ID! - ) { + query GetUser_c03cccb0_3($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on User { @@ -670,9 +664,7 @@ operationPlan: type: OperationBatch schema: A operation: | - query GetUser_c03cccb0_4( - $__fusion_2_id: ID! - ) { + query GetUser_c03cccb0_4($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on User { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.BatchExecutionState_With_Multiple_Variable_Values.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.BatchExecutionState_With_Multiple_Variable_Values.yaml index 8acfcb0f4d6..30085e62076 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.BatchExecutionState_With_Multiple_Variable_Values.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.BatchExecutionState_With_Multiple_Variable_Values.yaml @@ -83,9 +83,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_595ce2b9_3( - $__fusion_2_id: ID! - ) { + query Op_595ce2b9_3($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on User { @@ -177,9 +175,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_595ce2b9_4( - $__fusion_3_id: ID! - ) { + query Op_595ce2b9_4($__fusion_3_id: ID!) { node(id: $__fusion_3_id) { __typename ... on User { @@ -269,9 +265,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_595ce2b9_2( - $__fusion_1_id: ID! - ) { + query Op_595ce2b9_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on User { @@ -372,9 +366,7 @@ operationPlan: type: Operation schema: C operation: | - query Op_595ce2b9_2( - $__fusion_1_id: ID! - ) { + query Op_595ce2b9_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on User { @@ -404,9 +396,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_595ce2b9_3( - $__fusion_2_id: ID! - ) { + query Op_595ce2b9_3($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on User { @@ -426,9 +416,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_595ce2b9_4( - $__fusion_3_id: ID! - ) { + query Op_595ce2b9_4($__fusion_3_id: ID!) { node(id: $__fusion_3_id) { __typename ... on User { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.BatchExecutionState_With_Multiple_Variable_Values_And_Forwarded_Variable.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.BatchExecutionState_With_Multiple_Variable_Values_And_Forwarded_Variable.yaml index 446eba86ebb..461b1f78d71 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.BatchExecutionState_With_Multiple_Variable_Values_And_Forwarded_Variable.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.BatchExecutionState_With_Multiple_Variable_Values_And_Forwarded_Variable.yaml @@ -1,10 +1,7 @@ title: BatchExecutionState_With_Multiple_Variable_Values_And_Forwarded_Variable request: document: | - query( - $arg1: String - $arg2: String - ) { + query($arg1: String, $arg2: String) { userBySlug(slug: "me") { feedbacks { edges { @@ -91,10 +88,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_b1ca18eb_3( - $arg2: String - $__fusion_2_id: ID! - ) { + query Op_b1ca18eb_3($arg2: String, $__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on User { @@ -189,10 +183,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_b1ca18eb_4( - $arg1: String - $__fusion_3_id: ID! - ) { + query Op_b1ca18eb_4($arg1: String, $__fusion_3_id: ID!) { node(id: $__fusion_3_id) { __typename ... on User { @@ -285,9 +276,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_b1ca18eb_2( - $__fusion_1_id: ID! - ) { + query Op_b1ca18eb_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on User { @@ -353,10 +342,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $arg1: String - $arg2: String - ) { + query($arg1: String, $arg2: String) { userBySlug(slug: "me") { feedbacks { edges { @@ -391,9 +377,7 @@ operationPlan: type: Operation schema: C operation: | - query Op_b1ca18eb_2( - $__fusion_1_id: ID! - ) { + query Op_b1ca18eb_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on User { @@ -423,10 +407,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_b1ca18eb_3( - $arg2: String - $__fusion_2_id: ID! - ) { + query Op_b1ca18eb_3($arg2: String, $__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on User { @@ -448,10 +429,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_b1ca18eb_4( - $arg1: String - $__fusion_3_id: ID! - ) { + query Op_b1ca18eb_4($arg1: String, $__fusion_3_id: ID!) { node(id: $__fusion_3_id) { __typename ... on User { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.BatchExecutionState_With_Multiple_Variable_Values_Some_Items_Null.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.BatchExecutionState_With_Multiple_Variable_Values_Some_Items_Null.yaml index 914988fd036..02aca0d40a7 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.BatchExecutionState_With_Multiple_Variable_Values_Some_Items_Null.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.BatchExecutionState_With_Multiple_Variable_Values_Some_Items_Null.yaml @@ -83,9 +83,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_595ce2b9_3( - $__fusion_2_id: ID! - ) { + query Op_595ce2b9_3($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on User { @@ -177,9 +175,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_595ce2b9_4( - $__fusion_3_id: ID! - ) { + query Op_595ce2b9_4($__fusion_3_id: ID!) { node(id: $__fusion_3_id) { __typename ... on User { @@ -269,9 +265,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_595ce2b9_2( - $__fusion_1_id: ID! - ) { + query Op_595ce2b9_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on User { @@ -372,9 +366,7 @@ operationPlan: type: Operation schema: C operation: | - query Op_595ce2b9_2( - $__fusion_1_id: ID! - ) { + query Op_595ce2b9_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on User { @@ -404,9 +396,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_595ce2b9_3( - $__fusion_2_id: ID! - ) { + query Op_595ce2b9_3($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on User { @@ -426,9 +416,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_595ce2b9_4( - $__fusion_3_id: ID! - ) { + query Op_595ce2b9_4($__fusion_3_id: ID!) { node(id: $__fusion_3_id) { __typename ... on User { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Fetch_User_With_Invalid_Node_Field.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Fetch_User_With_Invalid_Node_Field.yaml index 96bab5f719c..a9bd7766cd4 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Fetch_User_With_Invalid_Node_Field.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Fetch_User_With_Invalid_Node_Field.yaml @@ -1,9 +1,7 @@ title: Fetch_User_With_Invalid_Node_Field request: document: | - query FetchNode( - $id: ID! - ) { + query FetchNode($id: ID!) { node(id: $id) { ... on User { id @@ -37,7 +35,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -124,9 +122,7 @@ sourceSchemas: operationPlan: operation: - document: | - query FetchNode( - $id: ID! - ) { + query FetchNode($id: ID!) { node(id: $id) { __typename @fusion__requirement ... on User { @@ -149,9 +145,7 @@ operationPlan: - id: 2 type: Operation operation: | - query FetchNode_7eae38bd_2( - $id: ID! - ) { + query FetchNode_7eae38bd_2($id: ID!) { node(id: $id) { __typename } @@ -164,9 +158,7 @@ operationPlan: type: Operation schema: A operation: | - query FetchNode_7eae38bd_3( - $id: ID! - ) { + query FetchNode_7eae38bd_3($id: ID!) { node(id: $id) { __typename ... on User { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Fetch_User_With_Node_Field.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Fetch_User_With_Node_Field.yaml index e44efb51926..16f70b6de27 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Fetch_User_With_Node_Field.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Fetch_User_With_Node_Field.yaml @@ -1,9 +1,7 @@ title: Fetch_User_With_Node_Field request: document: | - query FetchNode( - $id: ID! - ) { + query FetchNode($id: ID!) { node(id: $id) { ... on User { id @@ -39,7 +37,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -52,9 +50,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query FetchNode_7eae38bd_3( - $id: ID! - ) { + query FetchNode_7eae38bd_3($id: ID!) { node(id: $id) { __typename ... on User { @@ -156,9 +152,7 @@ sourceSchemas: operationPlan: operation: - document: | - query FetchNode( - $id: ID! - ) { + query FetchNode($id: ID!) { node(id: $id) { __typename @fusion__requirement ... on User { @@ -181,9 +175,7 @@ operationPlan: - id: 2 type: Operation operation: | - query FetchNode_7eae38bd_2( - $id: ID! - ) { + query FetchNode_7eae38bd_2($id: ID!) { node(id: $id) { __typename } @@ -196,9 +188,7 @@ operationPlan: type: Operation schema: A operation: | - query FetchNode_7eae38bd_3( - $id: ID! - ) { + query FetchNode_7eae38bd_3($id: ID!) { node(id: $id) { __typename ... on User { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Fetch_User_With_Node_Field_From_Two_Subgraphs.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Fetch_User_With_Node_Field_From_Two_Subgraphs.yaml index b925b258e63..ca8a70fdfa8 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Fetch_User_With_Node_Field_From_Two_Subgraphs.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Fetch_User_With_Node_Field_From_Two_Subgraphs.yaml @@ -1,9 +1,7 @@ title: Fetch_User_With_Node_Field_From_Two_Subgraphs request: document: | - query FetchNode( - $id: ID! - ) { + query FetchNode($id: ID!) { node(id: $id) { ... on User { birthdate @@ -53,7 +51,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -66,9 +64,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query FetchNode_47e389d6_4( - $__fusion_1_id: ID! - ) { + query FetchNode_47e389d6_4($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on User { @@ -129,9 +125,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query FetchNode_47e389d6_3( - $id: ID! - ) { + query FetchNode_47e389d6_3($id: ID!) { node(id: $id) { __typename ... on User { @@ -213,9 +207,7 @@ sourceSchemas: operationPlan: operation: - document: | - query FetchNode( - $id: ID! - ) { + query FetchNode($id: ID!) { node(id: $id) { __typename @fusion__requirement id @fusion__requirement @@ -242,9 +234,7 @@ operationPlan: - id: 2 type: Operation operation: | - query FetchNode_47e389d6_2( - $id: ID! - ) { + query FetchNode_47e389d6_2($id: ID!) { node(id: $id) { __typename } @@ -257,9 +247,7 @@ operationPlan: type: Operation schema: B operation: | - query FetchNode_47e389d6_3( - $id: ID! - ) { + query FetchNode_47e389d6_3($id: ID!) { node(id: $id) { __typename ... on User { @@ -279,9 +267,7 @@ operationPlan: type: Operation schema: A operation: | - query FetchNode_47e389d6_4( - $__fusion_1_id: ID! - ) { + query FetchNode_47e389d6_4($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on User { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Fetch_User_With_Node_Field_Pass_In_Review_Id.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Fetch_User_With_Node_Field_Pass_In_Review_Id.yaml index 4b0c2078590..3d63bf2cbd5 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Fetch_User_With_Node_Field_Pass_In_Review_Id.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Fetch_User_With_Node_Field_Pass_In_Review_Id.yaml @@ -1,9 +1,7 @@ title: Fetch_User_With_Node_Field_Pass_In_Review_Id request: document: | - query FetchNode( - $id: ID! - ) { + query FetchNode($id: ID!) { node(id: $id) { ... on User { id @@ -37,7 +35,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -84,9 +82,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query FetchNode_7eae38bd_2( - $id: ID! - ) { + query FetchNode_7eae38bd_2($id: ID!) { node(id: $id) { __typename } @@ -149,9 +145,7 @@ sourceSchemas: operationPlan: operation: - document: | - query FetchNode( - $id: ID! - ) { + query FetchNode($id: ID!) { node(id: $id) { __typename @fusion__requirement ... on User { @@ -174,9 +168,7 @@ operationPlan: - id: 2 type: Operation operation: | - query FetchNode_7eae38bd_2( - $id: ID! - ) { + query FetchNode_7eae38bd_2($id: ID!) { node(id: $id) { __typename } @@ -189,9 +181,7 @@ operationPlan: type: Operation schema: A operation: | - query FetchNode_7eae38bd_3( - $id: ID! - ) { + query FetchNode_7eae38bd_3($id: ID!) { node(id: $id) { __typename ... on User { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Fetch_User_With_Node_Field_Pass_In_Unknown_Id.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Fetch_User_With_Node_Field_Pass_In_Unknown_Id.yaml index 4efe5590dc4..bef824b7710 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Fetch_User_With_Node_Field_Pass_In_Unknown_Id.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Fetch_User_With_Node_Field_Pass_In_Unknown_Id.yaml @@ -1,9 +1,7 @@ title: Fetch_User_With_Node_Field_Pass_In_Unknown_Id request: document: | - query FetchNode( - $id: ID! - ) { + query FetchNode($id: ID!) { node(id: $id) { ... on User { id @@ -48,7 +46,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -135,9 +133,7 @@ sourceSchemas: operationPlan: operation: - document: | - query FetchNode( - $id: ID! - ) { + query FetchNode($id: ID!) { node(id: $id) { __typename @fusion__requirement ... on User { @@ -160,9 +156,7 @@ operationPlan: - id: 2 type: Operation operation: | - query FetchNode_7eae38bd_2( - $id: ID! - ) { + query FetchNode_7eae38bd_2($id: ID!) { node(id: $id) { __typename } @@ -175,9 +169,7 @@ operationPlan: type: Operation schema: A operation: | - query FetchNode_7eae38bd_3( - $id: ID! - ) { + query FetchNode_7eae38bd_3($id: ID!) { node(id: $id) { __typename ... on User { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Field_Below_Shared_Field_Only_Available_On_One_Subgraph_Type_Of_Shared_Field_Not_Node.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Field_Below_Shared_Field_Only_Available_On_One_Subgraph_Type_Of_Shared_Field_Not_Node.yaml index 9a1e644198a..988c6d99382 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Field_Below_Shared_Field_Only_Available_On_One_Subgraph_Type_Of_Shared_Field_Not_Node.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Field_Below_Shared_Field_Only_Available_On_One_Subgraph_Type_Of_Shared_Field_Not_Node.yaml @@ -1,9 +1,7 @@ title: Field_Below_Shared_Field_Only_Available_On_One_Subgraph_Type_Of_Shared_Field_Not_Node request: document: | - query( - $productId: ID! - ) { + query($productId: ID!) { productById(id: $productId) { subgraph1Only { sharedLinked { @@ -63,9 +61,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_8e568844_1( - $productId: ID! - ) { + query Op_8e568844_1($productId: ID!) { productById(id: $productId) { subgraph1Only { sharedLinked { @@ -121,9 +117,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_8e568844_2( - $__fusion_1_id: ID! - ) { + query Op_8e568844_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on ProductAvailability { @@ -153,9 +147,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $productId: ID! - ) { + query($productId: ID!) { productById(id: $productId) { subgraph1Only { sharedLinked { @@ -173,9 +165,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_8e568844_1( - $productId: ID! - ) { + query Op_8e568844_1($productId: ID!) { productById(id: $productId) { subgraph1Only { sharedLinked { @@ -191,9 +181,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_8e568844_2( - $__fusion_1_id: ID! - ) { + query Op_8e568844_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on ProductAvailability { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Field_Below_Shared_Field_Only_Available_On_One_Subgraph_Type_Of_Shared_Field_Not_Node_2.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Field_Below_Shared_Field_Only_Available_On_One_Subgraph_Type_Of_Shared_Field_Not_Node_2.yaml index 1d10e85f6fe..a7ef1bbaa66 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Field_Below_Shared_Field_Only_Available_On_One_Subgraph_Type_Of_Shared_Field_Not_Node_2.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Field_Below_Shared_Field_Only_Available_On_One_Subgraph_Type_Of_Shared_Field_Not_Node_2.yaml @@ -1,9 +1,7 @@ title: Field_Below_Shared_Field_Only_Available_On_One_Subgraph_Type_Of_Shared_Field_Not_Node_2 request: document: | - query( - $productId: ID! - ) { + query($productId: ID!) { productById(id: $productId) { subgraph1Only { subgraph2Only @@ -67,9 +65,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_90079d4b_1( - $productId: ID! - ) { + query Op_90079d4b_1($productId: ID!) { productById(id: $productId) { subgraph1Only { sharedLinked { @@ -129,9 +125,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query Op_90079d4b_2( - $__fusion_1_id: ID! - ) { + query Op_90079d4b_2($__fusion_1_id: ID!) { productAvailabilityById(id: $__fusion_1_id) { subgraph2Only } @@ -141,9 +135,7 @@ sourceSchemas: "__fusion_1_id": "UHJvZHVjdEF2YWlsYWJpbGl0eTox" } - document: | - query Op_90079d4b_3( - $__fusion_2_id: ID! - ) { + query Op_90079d4b_3($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on ProductAvailability { @@ -182,9 +174,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $productId: ID! - ) { + query($productId: ID!) { productById(id: $productId) { subgraph1Only { subgraph2Only @@ -204,9 +194,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_90079d4b_1( - $productId: ID! - ) { + query Op_90079d4b_1($productId: ID!) { productById(id: $productId) { subgraph1Only { sharedLinked { @@ -222,9 +210,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_90079d4b_2( - $__fusion_1_id: ID! - ) { + query Op_90079d4b_2($__fusion_1_id: ID!) { productAvailabilityById(id: $__fusion_1_id) { subgraph2Only } @@ -242,9 +228,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_90079d4b_3( - $__fusion_2_id: ID! - ) { + query Op_90079d4b_3($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on ProductAvailability { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Field_Below_Shared_Field_Only_Available_On_One_Subgraph_Type_Of_Shared_Field_Not_Node_3.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Field_Below_Shared_Field_Only_Available_On_One_Subgraph_Type_Of_Shared_Field_Not_Node_3.yaml index 59990b5b353..4653c517c3c 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Field_Below_Shared_Field_Only_Available_On_One_Subgraph_Type_Of_Shared_Field_Not_Node_3.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Field_Below_Shared_Field_Only_Available_On_One_Subgraph_Type_Of_Shared_Field_Not_Node_3.yaml @@ -1,9 +1,7 @@ title: Field_Below_Shared_Field_Only_Available_On_One_Subgraph_Type_Of_Shared_Field_Not_Node_3 request: document: | - query( - $productId: ID! - ) { + query($productId: ID!) { productById(id: $productId) { subgraph1Only { subgraph2Only @@ -73,9 +71,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_b7bd95cc_1( - $productId: ID! - ) { + query Op_b7bd95cc_1($productId: ID!) { productById(id: $productId) { subgraph1Only { subgraph1Only @@ -139,9 +135,7 @@ sourceSchemas: kind: OperationBatch items: - document: | - query Op_b7bd95cc_2( - $__fusion_1_id: ID! - ) { + query Op_b7bd95cc_2($__fusion_1_id: ID!) { productAvailabilityById(id: $__fusion_1_id) { subgraph2Only } @@ -151,9 +145,7 @@ sourceSchemas: "__fusion_1_id": "UHJvZHVjdEF2YWlsYWJpbGl0eTox" } - document: | - query Op_b7bd95cc_3( - $__fusion_2_id: ID! - ) { + query Op_b7bd95cc_3($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on ProductAvailability { @@ -192,9 +184,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $productId: ID! - ) { + query($productId: ID!) { productById(id: $productId) { subgraph1Only { subgraph2Only @@ -216,9 +206,7 @@ operationPlan: type: Operation schema: A operation: | - query Op_b7bd95cc_1( - $productId: ID! - ) { + query Op_b7bd95cc_1($productId: ID!) { productById(id: $productId) { subgraph1Only { subgraph1Only @@ -236,9 +224,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_b7bd95cc_2( - $__fusion_1_id: ID! - ) { + query Op_b7bd95cc_2($__fusion_1_id: ID!) { productAvailabilityById(id: $__fusion_1_id) { subgraph2Only } @@ -256,9 +242,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_b7bd95cc_3( - $__fusion_2_id: ID! - ) { + query Op_b7bd95cc_3($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on ProductAvailability { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Forward_Nested_Node_Variables.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Forward_Nested_Node_Variables.yaml index a464f3384a1..1249f0d5b33 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Forward_Nested_Node_Variables.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Forward_Nested_Node_Variables.yaml @@ -1,10 +1,7 @@ title: Forward_Nested_Node_Variables request: document: | - query ProductReviews( - $id: ID! - $first: Int! - ) { + query ProductReviews($id: ID!, $first: Int!) { node(id: $id) { ... on Product { id @@ -43,7 +40,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -131,10 +128,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query ProductReviews_a31f6868_3( - $id: ID! - $first: Int! - ) { + query ProductReviews_a31f6868_3($id: ID!, $first: Int!) { node(id: $id) { __typename ... on Product { @@ -164,10 +158,7 @@ sourceSchemas: operationPlan: operation: - document: | - query ProductReviews( - $id: ID! - $first: Int! - ) { + query ProductReviews($id: ID!, $first: Int!) { node(id: $id) { __typename @fusion__requirement ... on Product { @@ -191,9 +182,7 @@ operationPlan: - id: 2 type: Operation operation: | - query ProductReviews_a31f6868_2( - $id: ID! - ) { + query ProductReviews_a31f6868_2($id: ID!) { node(id: $id) { __typename } @@ -206,10 +195,7 @@ operationPlan: type: Operation schema: C operation: | - query ProductReviews_a31f6868_3( - $id: ID! - $first: Int! - ) { + query ProductReviews_a31f6868_3($id: ID!, $first: Int!) { node(id: $id) { __typename ... on Product { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Forward_Nested_Object_Variables.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Forward_Nested_Object_Variables.yaml index 86cb8fab17f..f60ebb43d1b 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Forward_Nested_Object_Variables.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Forward_Nested_Object_Variables.yaml @@ -1,10 +1,7 @@ title: Forward_Nested_Object_Variables request: document: | - query ProductReviews( - $id: ID! - $first: Int! - ) { + query ProductReviews($id: ID!, $first: Int!) { productById(id: $id) { id repeatData(data: { data: { num: $first } }) { @@ -49,7 +46,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -137,10 +134,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query ProductReviews_4a9e0ed8_1( - $id: ID! - $first: Int! - ) { + query ProductReviews_4a9e0ed8_1($id: ID!, $first: Int!) { productById(id: $id) { id repeatData(data: { data: { num: $first } }) { @@ -173,10 +167,7 @@ sourceSchemas: operationPlan: operation: - document: | - query ProductReviews( - $id: ID! - $first: Int! - ) { + query ProductReviews($id: ID!, $first: Int!) { productById(id: $id) { id repeatData(data: { data: { num: $first } }) { @@ -195,10 +186,7 @@ operationPlan: type: Operation schema: C operation: | - query ProductReviews_4a9e0ed8_1( - $id: ID! - $first: Int! - ) { + query ProductReviews_4a9e0ed8_1($id: ID!, $first: Int!) { productById(id: $id) { id repeatData(data: { data: { num: $first } }) { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Forward_Nested_Variables.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Forward_Nested_Variables.yaml index 6a2466bc53d..50e77710a73 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Forward_Nested_Variables.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Forward_Nested_Variables.yaml @@ -1,10 +1,7 @@ title: Forward_Nested_Variables request: document: | - query ProductReviews( - $id: ID! - $first: Int! - ) { + query ProductReviews($id: ID!, $first: Int!) { productById(id: $id) { id repeat(num: $first) @@ -41,7 +38,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -129,10 +126,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query ProductReviews_f7aec035_1( - $id: ID! - $first: Int! - ) { + query ProductReviews_f7aec035_1($id: ID!, $first: Int!) { productById(id: $id) { id repeat(num: $first) @@ -157,10 +151,7 @@ sourceSchemas: operationPlan: operation: - document: | - query ProductReviews( - $id: ID! - $first: Int! - ) { + query ProductReviews($id: ID!, $first: Int!) { productById(id: $id) { id repeat(num: $first) @@ -175,10 +166,7 @@ operationPlan: type: Operation schema: C operation: | - query ProductReviews_f7aec035_1( - $id: ID! - $first: Int! - ) { + query ProductReviews_f7aec035_1($id: ID!, $first: Int!) { productById(id: $id) { id repeat(num: $first) diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Forward_Nested_Variables_No_OpName.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Forward_Nested_Variables_No_OpName.yaml index 981c04edd41..529d55063b4 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Forward_Nested_Variables_No_OpName.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Forward_Nested_Variables_No_OpName.yaml @@ -1,10 +1,7 @@ title: Forward_Nested_Variables_No_OpName request: document: | - query( - $id: ID! - $first: Int! - ) { + query($id: ID!, $first: Int!) { productById(id: $id) { id repeat(num: $first) @@ -41,7 +38,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -129,10 +126,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_4ffcfe3f_1( - $id: ID! - $first: Int! - ) { + query Op_4ffcfe3f_1($id: ID!, $first: Int!) { productById(id: $id) { id repeat(num: $first) @@ -157,10 +151,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $id: ID! - $first: Int! - ) { + query($id: ID!, $first: Int!) { productById(id: $id) { id repeat(num: $first) @@ -174,10 +165,7 @@ operationPlan: type: Operation schema: C operation: | - query Op_4ffcfe3f_1( - $id: ID! - $first: Int! - ) { + query Op_4ffcfe3f_1($id: ID!, $first: Int!) { productById(id: $id) { id repeat(num: $first) diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Forward_Nested_Variables_No_OpName_Two_RootSelections.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Forward_Nested_Variables_No_OpName_Two_RootSelections.yaml index 99c03f6d16b..4c6244bf365 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Forward_Nested_Variables_No_OpName_Two_RootSelections.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Forward_Nested_Variables_No_OpName_Two_RootSelections.yaml @@ -1,10 +1,7 @@ title: Forward_Nested_Variables_No_OpName_Two_RootSelections request: document: | - query( - $id: ID! - $first: Int! - ) { + query($id: ID!, $first: Int!) { a: productById(id: $id) { id repeat(num: $first) @@ -49,7 +46,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -137,10 +134,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_5090b8e6_1( - $id: ID! - $first: Int! - ) { + query Op_5090b8e6_1($id: ID!, $first: Int!) { a: productById(id: $id) { id repeat(num: $first) @@ -173,10 +167,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $id: ID! - $first: Int! - ) { + query($id: ID!, $first: Int!) { a: productById(id: $id) { id repeat(num: $first) @@ -194,10 +185,7 @@ operationPlan: type: Operation schema: C operation: | - query Op_5090b8e6_1( - $id: ID! - $first: Int! - ) { + query Op_5090b8e6_1($id: ID!, $first: Int!) { a: productById(id: $id) { id repeat(num: $first) diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.GetFirstPage_With_After_Null.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.GetFirstPage_With_After_Null.yaml index 1264d1bd472..dd5d2774e7e 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.GetFirstPage_With_After_Null.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.GetFirstPage_With_After_Null.yaml @@ -1,9 +1,7 @@ title: GetFirstPage_With_After_Null request: document: | - query AfterNull( - $after: String - ) { + query AfterNull($after: String) { appointments(after: $after) { nodes { id @@ -55,9 +53,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query AfterNull_bcc834fd_1( - $after: String - ) { + query AfterNull_bcc834fd_1($after: String) { appointments(after: $after) { nodes { id @@ -91,9 +87,7 @@ sourceSchemas: operationPlan: operation: - document: | - query AfterNull( - $after: String - ) { + query AfterNull($after: String) { appointments(after: $after) { nodes { id @@ -109,9 +103,7 @@ operationPlan: type: Operation schema: E operation: | - query AfterNull_bcc834fd_1( - $after: String - ) { + query AfterNull_bcc834fd_1($after: String) { appointments(after: $after) { nodes { id diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.QueryType_Parallel_Multiple_SubGraphs_WithArguments.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.QueryType_Parallel_Multiple_SubGraphs_WithArguments.yaml index 6c6d2ddedcc..d21e20ed71f 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.QueryType_Parallel_Multiple_SubGraphs_WithArguments.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.QueryType_Parallel_Multiple_SubGraphs_WithArguments.yaml @@ -91,7 +91,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -138,9 +138,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query TopProducts_ca09eae1_3( - $__fusion_2_id: ID! - ) { + query TopProducts_ca09eae1_3($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on Product { @@ -313,7 +311,7 @@ sourceSchemas: id: ID! size: Int! @shareable weight: Int! @shareable - deliveryEstimate(size: Int weight: Int zip: String!): DeliveryEstimate! + deliveryEstimate(size: Int, weight: Int, zip: String!): DeliveryEstimate! } type Query { @@ -324,9 +322,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query TopProducts_ca09eae1_2( - $__fusion_1_id: ID! - ) { + query TopProducts_ca09eae1_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { @@ -423,9 +419,7 @@ operationPlan: type: Operation schema: D operation: | - query TopProducts_ca09eae1_2( - $__fusion_1_id: ID! - ) { + query TopProducts_ca09eae1_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { @@ -448,9 +442,7 @@ operationPlan: type: Operation schema: B operation: | - query TopProducts_ca09eae1_3( - $__fusion_2_id: ID! - ) { + query TopProducts_ca09eae1_3($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on Product { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Require_Data_In_Context.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Require_Data_In_Context.yaml index b503c006a68..ba5155000eb 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Require_Data_In_Context.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Require_Data_In_Context.yaml @@ -83,7 +83,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -96,9 +96,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Requires_beac16b7_4( - $__fusion_3_id: ID! - ) { + query Requires_beac16b7_4($__fusion_3_id: ID!) { node(id: $__fusion_3_id) { __typename ... on User { @@ -282,9 +280,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Requires_beac16b7_3( - $__fusion_2_id: ID! - ) { + query Requires_beac16b7_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { name } @@ -347,7 +343,7 @@ sourceSchemas: id: ID! size: Int! @shareable weight: Int! @shareable - deliveryEstimate(size: Int weight: Int zip: String!): DeliveryEstimate! + deliveryEstimate(size: Int, weight: Int, zip: String!): DeliveryEstimate! } type Query { @@ -358,9 +354,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Requires_beac16b7_2( - $__fusion_1_id: ID! - ) { + query Requires_beac16b7_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { @@ -467,9 +461,7 @@ operationPlan: type: Operation schema: D operation: | - query Requires_beac16b7_2( - $__fusion_1_id: ID! - ) { + query Requires_beac16b7_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { @@ -492,9 +484,7 @@ operationPlan: type: Operation schema: C operation: | - query Requires_beac16b7_3( - $__fusion_2_id: ID! - ) { + query Requires_beac16b7_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { name } @@ -511,9 +501,7 @@ operationPlan: type: Operation schema: A operation: | - query Requires_beac16b7_4( - $__fusion_3_id: ID! - ) { + query Requires_beac16b7_4($__fusion_3_id: ID!) { node(id: $__fusion_3_id) { __typename ... on User { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Require_Data_In_Context_2.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Require_Data_In_Context_2.yaml index 6533486b031..e256909ded1 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Require_Data_In_Context_2.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Require_Data_In_Context_2.yaml @@ -79,7 +79,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -92,9 +92,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Requires_b3dd796a_3( - $__fusion_2_id: ID! - ) { + query Requires_b3dd796a_3($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on User { @@ -293,7 +291,7 @@ sourceSchemas: id: ID! size: Int! @shareable weight: Int! @shareable - deliveryEstimate(size: Int weight: Int zip: String!): DeliveryEstimate! + deliveryEstimate(size: Int, weight: Int, zip: String!): DeliveryEstimate! } type Query { @@ -304,9 +302,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Requires_b3dd796a_2( - $__fusion_1_id: ID! - ) { + query Requires_b3dd796a_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { @@ -412,9 +408,7 @@ operationPlan: type: Operation schema: D operation: | - query Requires_b3dd796a_2( - $__fusion_1_id: ID! - ) { + query Requires_b3dd796a_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { @@ -437,9 +431,7 @@ operationPlan: type: Operation schema: A operation: | - query Requires_b3dd796a_3( - $__fusion_2_id: ID! - ) { + query Requires_b3dd796a_3($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on User { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Require_Data_In_Context_3.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Require_Data_In_Context_3.yaml index 20a370d96ab..1f465704110 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Require_Data_In_Context_3.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Require_Data_In_Context_3.yaml @@ -193,7 +193,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -240,9 +240,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Large_62d57bc0_5( - $__fusion_4_id: ID! - ) { + query Large_62d57bc0_5($__fusion_4_id: ID!) { node(id: $__fusion_4_id) { __typename ... on User { @@ -412,9 +410,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Large_62d57bc0_2( - $__fusion_1_id: ID! - ) { + query Large_62d57bc0_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on User { @@ -601,9 +597,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Large_62d57bc0_4( - $__fusion_3_id: ID! - ) { + query Large_62d57bc0_4($__fusion_3_id: ID!) { productById(id: $__fusion_3_id) { name } @@ -732,7 +726,7 @@ sourceSchemas: id: ID! size: Int! @shareable weight: Int! @shareable - deliveryEstimate(size: Int weight: Int zip: String!): DeliveryEstimate! + deliveryEstimate(size: Int, weight: Int, zip: String!): DeliveryEstimate! } type Query { @@ -743,9 +737,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Large_62d57bc0_3( - $__fusion_2_id: ID! - ) { + query Large_62d57bc0_3($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on Product { @@ -934,9 +926,7 @@ operationPlan: type: Operation schema: B operation: | - query Large_62d57bc0_2( - $__fusion_1_id: ID! - ) { + query Large_62d57bc0_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on User { @@ -964,9 +954,7 @@ operationPlan: type: Operation schema: D operation: | - query Large_62d57bc0_3( - $__fusion_2_id: ID! - ) { + query Large_62d57bc0_3($__fusion_2_id: ID!) { node(id: $__fusion_2_id) { __typename ... on Product { @@ -988,9 +976,7 @@ operationPlan: type: Operation schema: C operation: | - query Large_62d57bc0_4( - $__fusion_3_id: ID! - ) { + query Large_62d57bc0_4($__fusion_3_id: ID!) { productById(id: $__fusion_3_id) { name } @@ -1007,9 +993,7 @@ operationPlan: type: Operation schema: A operation: | - query Large_62d57bc0_5( - $__fusion_4_id: ID! - ) { + query Large_62d57bc0_5($__fusion_4_id: ID!) { node(id: $__fusion_4_id) { __typename ... on User { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Same_Selection_On_Two_List_Fields_That_Require_Data_From_Another_Subgraph.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Same_Selection_On_Two_List_Fields_That_Require_Data_From_Another_Subgraph.yaml index 3cb993b75f2..2ede2de2e18 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Same_Selection_On_Two_List_Fields_That_Require_Data_From_Another_Subgraph.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Same_Selection_On_Two_List_Fields_That_Require_Data_From_Another_Subgraph.yaml @@ -155,9 +155,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_9ad18dbf_2( - $__fusion_1_id: ID! - ) { + query Op_9ad18dbf_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { @@ -291,9 +289,7 @@ operationPlan: type: OperationBatch schema: B operation: | - query Op_9ad18dbf_2( - $__fusion_1_id: ID! - ) { + query Op_9ad18dbf_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Same_Selection_On_Two_Object_Types_That_Require_Data_From_Another_Subgraph.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Same_Selection_On_Two_Object_Types_That_Require_Data_From_Another_Subgraph.yaml index bb63cefa2e6..8a9fa04cbe6 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Same_Selection_On_Two_Object_Types_That_Require_Data_From_Another_Subgraph.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Same_Selection_On_Two_Object_Types_That_Require_Data_From_Another_Subgraph.yaml @@ -116,9 +116,7 @@ sourceSchemas: - request: accept: application/jsonl; charset=utf-8, text/event-stream; charset=utf-8, application/graphql-response+json; charset=utf-8, application/json; charset=utf-8 document: | - query Op_e2224f1b_2( - $__fusion_1_id: ID! - ) { + query Op_e2224f1b_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { @@ -199,9 +197,7 @@ operationPlan: type: OperationBatch schema: B operation: | - query Op_e2224f1b_2( - $__fusion_1_id: ID! - ) { + query Op_e2224f1b_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Subgraph_Containing_More_Selections_Is_Chosen.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Subgraph_Containing_More_Selections_Is_Chosen.yaml index feeacbcfccf..7d0af59d5fe 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Subgraph_Containing_More_Selections_Is_Chosen.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Subgraph_Containing_More_Selections_Is_Chosen.yaml @@ -95,9 +95,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_40bd37df_2( - $__fusion_1_id: ID! - ) { + query Op_40bd37df_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { author { name @@ -151,9 +149,7 @@ operationPlan: type: Operation schema: C operation: | - query Op_40bd37df_2( - $__fusion_1_id: ID! - ) { + query Op_40bd37df_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { author { name diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Two_Arguments_Differing_Nullability_Does_Not_Duplicate_Forwarded_Variables.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Two_Arguments_Differing_Nullability_Does_Not_Duplicate_Forwarded_Variables.yaml index d3a52a89417..53a53df5ce7 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Two_Arguments_Differing_Nullability_Does_Not_Duplicate_Forwarded_Variables.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Two_Arguments_Differing_Nullability_Does_Not_Duplicate_Forwarded_Variables.yaml @@ -1,9 +1,7 @@ title: Two_Arguments_Differing_Nullability_Does_Not_Duplicate_Forwarded_Variables request: document: | - query Test( - $number: Int! - ) { + query Test($number: Int!) { testWithTwoArgumentsDifferingNullability(first: $number, second: $number) } variables: | @@ -33,7 +31,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { @@ -46,9 +44,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Test_2ead4419_1( - $number: Int! - ) { + query Test_2ead4419_1($number: Int!) { testWithTwoArgumentsDifferingNullability(first: $number, second: $number) } variables: | @@ -66,9 +62,7 @@ sourceSchemas: operationPlan: operation: - document: | - query Test( - $number: Int! - ) { + query Test($number: Int!) { testWithTwoArgumentsDifferingNullability(first: $number, second: $number) } name: Test @@ -80,9 +74,7 @@ operationPlan: type: Operation schema: A operation: | - query Test_2ead4419_1( - $number: Int! - ) { + query Test_2ead4419_1($number: Int!) { testWithTwoArgumentsDifferingNullability(first: $number, second: $number) } forwardedVariables: diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.TypeName_Field_On_QueryRoot.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.TypeName_Field_On_QueryRoot.yaml index be7ac585e51..bb79f2883a5 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.TypeName_Field_On_QueryRoot.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.TypeName_Field_On_QueryRoot.yaml @@ -27,7 +27,7 @@ sourceSchemas: nodes(ids: [ID!]!): [Node]! @shareable userById(id: ID!): User! users: [User!]! - testWithTwoArgumentsDifferingNullability(first: Int! second: Int): String! + testWithTwoArgumentsDifferingNullability(first: Int!, second: Int): String! } type User implements Node { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Unresolvable_Subgraph_Is_Not_Chosen_If_Data_Is_Available_In_Resolvable_Subgraph.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Unresolvable_Subgraph_Is_Not_Chosen_If_Data_Is_Available_In_Resolvable_Subgraph.yaml index d7bb128b5a2..ba732abd3db 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Unresolvable_Subgraph_Is_Not_Chosen_If_Data_Is_Available_In_Resolvable_Subgraph.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/DemoIntegrationTests.Unresolvable_Subgraph_Is_Not_Chosen_If_Data_Is_Available_In_Resolvable_Subgraph.yaml @@ -106,9 +106,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_ab5a0549_2( - $__fusion_1_id: ID! - ) { + query Op_ab5a0549_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { @@ -162,9 +160,7 @@ operationPlan: type: Operation schema: C operation: | - query Op_ab5a0549_2( - $__fusion_1_id: ID! - ) { + query Op_ab5a0549_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_NonNull_Parent_NonNull_One_Service_Errors_EntryField.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_NonNull_Parent_NonNull_One_Service_Errors_EntryField.yaml index d2097884848..76184a320a3 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_NonNull_Parent_NonNull_One_Service_Errors_EntryField.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_NonNull_Parent_NonNull_One_Service_Errors_EntryField.yaml @@ -89,9 +89,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e358ecef_2( - $__fusion_1_id: ID! - ) { + query Op_e358ecef_2($__fusion_1_id: ID!) { brandById(id: $__fusion_1_id) { name } @@ -149,9 +147,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e358ecef_2( - $__fusion_1_id: ID! - ) { + query Op_e358ecef_2($__fusion_1_id: ID!) { brandById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_NonNull_Parent_NonNull_One_Service_Errors_SubField.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_NonNull_Parent_NonNull_One_Service_Errors_SubField.yaml index 5da10dbf316..7755f72ef6f 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_NonNull_Parent_NonNull_One_Service_Errors_SubField.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_NonNull_Parent_NonNull_One_Service_Errors_SubField.yaml @@ -89,9 +89,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e358ecef_2( - $__fusion_1_id: ID! - ) { + query Op_e358ecef_2($__fusion_1_id: ID!) { brandById(id: $__fusion_1_id) { name } @@ -150,9 +148,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e358ecef_2( - $__fusion_1_id: ID! - ) { + query Op_e358ecef_2($__fusion_1_id: ID!) { brandById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_NonNull_Parent_Nullable_One_Service_Errors_EntryField.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_NonNull_Parent_Nullable_One_Service_Errors_EntryField.yaml index 054429176da..ab5690b19ff 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_NonNull_Parent_Nullable_One_Service_Errors_EntryField.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_NonNull_Parent_Nullable_One_Service_Errors_EntryField.yaml @@ -92,9 +92,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e358ecef_2( - $__fusion_1_id: ID! - ) { + query Op_e358ecef_2($__fusion_1_id: ID!) { brandById(id: $__fusion_1_id) { name } @@ -152,9 +150,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e358ecef_2( - $__fusion_1_id: ID! - ) { + query Op_e358ecef_2($__fusion_1_id: ID!) { brandById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_NonNull_Parent_Nullable_One_Service_Errors_SubField.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_NonNull_Parent_Nullable_One_Service_Errors_SubField.yaml index c850b6eedce..09e10409f91 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_NonNull_Parent_Nullable_One_Service_Errors_SubField.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_NonNull_Parent_Nullable_One_Service_Errors_SubField.yaml @@ -92,9 +92,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e358ecef_2( - $__fusion_1_id: ID! - ) { + query Op_e358ecef_2($__fusion_1_id: ID!) { brandById(id: $__fusion_1_id) { name } @@ -153,9 +151,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e358ecef_2( - $__fusion_1_id: ID! - ) { + query Op_e358ecef_2($__fusion_1_id: ID!) { brandById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_Nullable_Parent_Nullable_One_Service_Errors_EntryField.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_Nullable_Parent_Nullable_One_Service_Errors_EntryField.yaml index 18b9de9d289..e7e71781f1e 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_Nullable_Parent_Nullable_One_Service_Errors_EntryField.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_Nullable_Parent_Nullable_One_Service_Errors_EntryField.yaml @@ -95,9 +95,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e358ecef_2( - $__fusion_1_id: ID! - ) { + query Op_e358ecef_2($__fusion_1_id: ID!) { brandById(id: $__fusion_1_id) { name } @@ -155,9 +153,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e358ecef_2( - $__fusion_1_id: ID! - ) { + query Op_e358ecef_2($__fusion_1_id: ID!) { brandById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_Nullable_Parent_Nullable_One_Service_Errors_SubField.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_Nullable_Parent_Nullable_One_Service_Errors_SubField.yaml index 6609d8b8f32..cdbdf6d5543 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_Nullable_Parent_Nullable_One_Service_Errors_SubField.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/SubgraphErrorTests.Resolve_Sequence_SubField_Nullable_Parent_Nullable_One_Service_Errors_SubField.yaml @@ -95,9 +95,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e358ecef_2( - $__fusion_1_id: ID! - ) { + query Op_e358ecef_2($__fusion_1_id: ID!) { brandById(id: $__fusion_1_id) { name } @@ -158,9 +156,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e358ecef_2( - $__fusion_1_id: ID! - ) { + query Op_e358ecef_2($__fusion_1_id: ID!) { brandById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/TransportErrorTests.Resolve_Sequence_First_Service_Offline_EntryField_NonNull.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/TransportErrorTests.Resolve_Sequence_First_Service_Offline_EntryField_NonNull.yaml index f5d1b489fd9..02ed8878fd8 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/TransportErrorTests.Resolve_Sequence_First_Service_Offline_EntryField_NonNull.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/TransportErrorTests.Resolve_Sequence_First_Service_Offline_EntryField_NonNull.yaml @@ -102,9 +102,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e358ecef_2( - $__fusion_1_id: ID! - ) { + query Op_e358ecef_2($__fusion_1_id: ID!) { brandById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/TransportErrorTests.Resolve_Sequence_First_Service_Offline_EntryField_Nullable.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/TransportErrorTests.Resolve_Sequence_First_Service_Offline_EntryField_Nullable.yaml index 1fd2327cae5..06c99b373cb 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/TransportErrorTests.Resolve_Sequence_First_Service_Offline_EntryField_Nullable.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/TransportErrorTests.Resolve_Sequence_First_Service_Offline_EntryField_Nullable.yaml @@ -105,9 +105,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e358ecef_2( - $__fusion_1_id: ID! - ) { + query Op_e358ecef_2($__fusion_1_id: ID!) { brandById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/TransportErrorTests.Resolve_Sequence_Second_Service_Offline_SubField_NonNull_Parent_NonNull.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/TransportErrorTests.Resolve_Sequence_Second_Service_Offline_SubField_NonNull_Parent_NonNull.yaml index 19fb93bcd94..ac37031939b 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/TransportErrorTests.Resolve_Sequence_Second_Service_Offline_SubField_NonNull_Parent_NonNull.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/TransportErrorTests.Resolve_Sequence_Second_Service_Offline_SubField_NonNull_Parent_NonNull.yaml @@ -89,9 +89,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e358ecef_2( - $__fusion_1_id: ID! - ) { + query Op_e358ecef_2($__fusion_1_id: ID!) { brandById(id: $__fusion_1_id) { name } @@ -135,9 +133,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e358ecef_2( - $__fusion_1_id: ID! - ) { + query Op_e358ecef_2($__fusion_1_id: ID!) { brandById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/TransportErrorTests.Resolve_Sequence_Second_Service_Offline_SubField_NonNull_Parent_Nullable.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/TransportErrorTests.Resolve_Sequence_Second_Service_Offline_SubField_NonNull_Parent_Nullable.yaml index d1aa562a903..6d09c7aaf7a 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/TransportErrorTests.Resolve_Sequence_Second_Service_Offline_SubField_NonNull_Parent_Nullable.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/TransportErrorTests.Resolve_Sequence_Second_Service_Offline_SubField_NonNull_Parent_Nullable.yaml @@ -92,9 +92,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e358ecef_2( - $__fusion_1_id: ID! - ) { + query Op_e358ecef_2($__fusion_1_id: ID!) { brandById(id: $__fusion_1_id) { name } @@ -138,9 +136,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e358ecef_2( - $__fusion_1_id: ID! - ) { + query Op_e358ecef_2($__fusion_1_id: ID!) { brandById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/TransportErrorTests.Resolve_Sequence_Second_Service_Offline_SubField_Nullable_Parent_Nullable.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/TransportErrorTests.Resolve_Sequence_Second_Service_Offline_SubField_Nullable_Parent_Nullable.yaml index 2893e45eea8..32ffd9c9b54 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/TransportErrorTests.Resolve_Sequence_Second_Service_Offline_SubField_Nullable_Parent_Nullable.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/v15/__snapshots__/TransportErrorTests.Resolve_Sequence_Second_Service_Offline_SubField_Nullable_Parent_Nullable.yaml @@ -95,9 +95,7 @@ sourceSchemas: - request: accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8, application/jsonl; charset=utf-8, text/event-stream; charset=utf-8 document: | - query Op_e358ecef_2( - $__fusion_1_id: ID! - ) { + query Op_e358ecef_2($__fusion_1_id: ID!) { brandById(id: $__fusion_1_id) { name } @@ -141,9 +139,7 @@ operationPlan: type: Operation schema: B operation: | - query Op_e358ecef_2( - $__fusion_1_id: ID! - ) { + query Op_e358ecef_2($__fusion_1_id: ID!) { brandById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_CompositeKey.md b/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_CompositeKey.md new file mode 100644 index 00000000000..4adfeb8f517 --- /dev/null +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_CompositeKey.md @@ -0,0 +1,46 @@ +# Transform_CompositeKey + +## Apollo Federation SDL + +```graphql +schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key"]) { + query: Query +} +type Product @key(fields: "sku package") { + sku: String! + package: String! + name: String +} +type Query { + products: [Product] + _service: _Service! + _entities(representations: [_Any!]!): [_Entity]! +} +type _Service { sdl: String! } +union _Entity = Product +scalar FieldSet +scalar _Any +directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @link(url: String! import: [String!]) repeatable on SCHEMA +``` + +## Transformed SDL + +```graphql +schema { + query: Query +} + +type Query { + productBySkuAndPackage(package: String!, sku: String!): Product + @internal + @lookup + products: [Product] +} + +type Product @key(fields: "sku package") { + name: String + package: String! + sku: String! +} +``` diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_ExternalDirective.md b/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_ExternalDirective.md new file mode 100644 index 00000000000..1b8766e7eca --- /dev/null +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_ExternalDirective.md @@ -0,0 +1,42 @@ +# Transform_ExternalDirective + +## Apollo Federation SDL + +```graphql +schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@external"]) { + query: Query +} +type Product @key(fields: "id") { + id: ID! + price: Float @external +} +type Query { + products: [Product] + _service: _Service! + _entities(representations: [_Any!]!): [_Entity]! +} +type _Service { sdl: String! } +union _Entity = Product +scalar FieldSet +scalar _Any +directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @external on FIELD_DEFINITION +directive @link(url: String! import: [String!]) repeatable on SCHEMA +``` + +## Transformed SDL + +```graphql +schema { + query: Query +} + +type Query { + productById(id: ID!): Product @internal @lookup + products: [Product] +} + +type Product @key(fields: "id") { + id: ID! +} +``` diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_FullIntegration.md b/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_FullIntegration.md new file mode 100644 index 00000000000..7e82dcdde67 --- /dev/null +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_FullIntegration.md @@ -0,0 +1,82 @@ +# Transform_FullIntegration + +## Apollo Federation SDL + +```graphql +schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@requires", "@provides", "@external"]) { + query: Query +} +type Product @key(fields: "id") @key(fields: "sku package") { + id: ID! + sku: String! + package: String! + name: String + price: Float + weight: Float + inStock: Boolean + createdBy: User @provides(fields: "totalProductsCreated") +} +type User @key(fields: "id") { + id: ID! + username: String @external + totalProductsCreated: Int +} +type Review { + body: String + author: User +} +type Query { + product(id: ID!): Product + reviews: [Review] + _service: _Service! + _entities(representations: [_Any!]!): [_Entity]! +} +type _Service { sdl: String! } +union _Entity = Product | User +scalar FieldSet +scalar _Any +directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @requires(fields: FieldSet!) on FIELD_DEFINITION +directive @provides(fields: FieldSet!) on FIELD_DEFINITION +directive @external on FIELD_DEFINITION +directive @link(url: String! import: [String!]) repeatable on SCHEMA +``` + +## Transformed SDL + +```graphql +schema { + query: Query +} + +type Query { + product(id: ID!): Product + productById(id: ID!): Product @internal @lookup + productBySkuAndPackage(package: String!, sku: String!): Product + @internal + @lookup + reviews: [Review] + userById(id: ID!): User @internal @lookup +} + +type Product @key(fields: "id") @key(fields: "sku package") { + createdBy: User @provides(fields: "totalProductsCreated") + id: ID! + inStock: Boolean + name: String + package: String! + price: Float + sku: String! + weight: Float +} + +type Review { + author: User + body: String +} + +type User @key(fields: "id") { + id: ID! + totalProductsCreated: Int +} +``` diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_KeyResolvableArgument.md b/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_KeyResolvableArgument.md new file mode 100644 index 00000000000..b1fa4e8cc2e --- /dev/null +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_KeyResolvableArgument.md @@ -0,0 +1,42 @@ +# Transform_KeyResolvableArgument + +## Apollo Federation SDL + +```graphql +schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key"]) { + query: Query +} +type Product @key(fields: "id", resolvable: true) { + id: ID! + name: String +} +type Query { + products: [Product] + _service: _Service! + _entities(representations: [_Any!]!): [_Entity]! +} +type _Service { sdl: String! } +union _Entity = Product +scalar FieldSet +scalar _Any +directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @link(url: String! import: [String!]) repeatable on SCHEMA +``` + +## Transformed SDL + +```graphql +schema { + query: Query +} + +type Query { + productById(id: ID!): Product @internal @lookup + products: [Product] +} + +type Product @key(fields: "id") { + id: ID! + name: String +} +``` diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_MultipleKeys.md b/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_MultipleKeys.md new file mode 100644 index 00000000000..7be250e0e24 --- /dev/null +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_MultipleKeys.md @@ -0,0 +1,49 @@ +# Transform_MultipleKeys + +## Apollo Federation SDL + +```graphql +schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key"]) { + query: Query +} +type Product @key(fields: "id") @key(fields: "sku package") { + id: ID! + sku: String! + package: String! + name: String +} +type Query { + products: [Product] + _service: _Service! + _entities(representations: [_Any!]!): [_Entity]! +} +type _Service { sdl: String! } +union _Entity = Product +scalar FieldSet +scalar _Any +directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @link(url: String! import: [String!]) repeatable on SCHEMA +``` + +## Transformed SDL + +```graphql +schema { + query: Query +} + +type Query { + productById(id: ID!): Product @internal @lookup + productBySkuAndPackage(package: String!, sku: String!): Product + @internal + @lookup + products: [Product] +} + +type Product @key(fields: "id") @key(fields: "sku package") { + id: ID! + name: String + package: String! + sku: String! +} +``` diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_NonResolvableAndResolvableKeys.md b/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_NonResolvableAndResolvableKeys.md new file mode 100644 index 00000000000..a933cbd3c8e --- /dev/null +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_NonResolvableAndResolvableKeys.md @@ -0,0 +1,44 @@ +# Transform_NonResolvableAndResolvableKeys + +## Apollo Federation SDL + +```graphql +schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key"]) { + query: Query +} +type Product @key(fields: "id") @key(fields: "sku", resolvable: false) { + id: ID! + sku: String! + name: String +} +type Query { + products: [Product] + _service: _Service! + _entities(representations: [_Any!]!): [_Entity]! +} +type _Service { sdl: String! } +union _Entity = Product +scalar FieldSet +scalar _Any +directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @link(url: String! import: [String!]) repeatable on SCHEMA +``` + +## Transformed SDL + +```graphql +schema { + query: Query +} + +type Query { + productById(id: ID!): Product @internal @lookup + products: [Product] +} + +type Product @key(fields: "id") @key(fields: "sku") { + id: ID! + name: String + sku: String! +} +``` diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_NonResolvableKey.md b/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_NonResolvableKey.md new file mode 100644 index 00000000000..f0a36759d95 --- /dev/null +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_NonResolvableKey.md @@ -0,0 +1,41 @@ +# Transform_NonResolvableKey + +## Apollo Federation SDL + +```graphql +schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key"]) { + query: Query +} +type Product @key(fields: "id", resolvable: false) { + id: ID! + name: String +} +type Query { + products: [Product] + _service: _Service! + _entities(representations: [_Any!]!): [_Entity]! +} +type _Service { sdl: String! } +union _Entity = Product +scalar FieldSet +scalar _Any +directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @link(url: String! import: [String!]) repeatable on SCHEMA +``` + +## Transformed SDL + +```graphql +schema { + query: Query +} + +type Query { + products: [Product] +} + +type Product @key(fields: "id") { + id: ID! + name: String +} +``` diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_ProvidesDirective.md b/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_ProvidesDirective.md new file mode 100644 index 00000000000..4eb3f8b77dd --- /dev/null +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_ProvidesDirective.md @@ -0,0 +1,54 @@ +# Transform_ProvidesDirective + +## Apollo Federation SDL + +```graphql +schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@provides"]) { + query: Query +} +type User @key(fields: "id") { + id: ID! + username: String + totalProductsCreated: Int +} +type Review { + body: String + author: User @provides(fields: "username") +} +type Query { + reviews: [Review] + _service: _Service! + _entities(representations: [_Any!]!): [_Entity]! +} +type _Service { sdl: String! } +union _Entity = User +scalar FieldSet +scalar _Any +directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @provides(fields: FieldSet!) on FIELD_DEFINITION +directive @link(url: String! import: [String!]) repeatable on SCHEMA +``` + +## Transformed SDL + +```graphql +schema { + query: Query +} + +type Query { + reviews: [Review] + userById(id: ID!): User @internal @lookup +} + +type Review { + author: User @provides(fields: "username") + body: String +} + +type User @key(fields: "id") { + id: ID! + totalProductsCreated: Int + username: String +} +``` diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_RequiresDirective.md b/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_RequiresDirective.md new file mode 100644 index 00000000000..6dbea89a9bc --- /dev/null +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_RequiresDirective.md @@ -0,0 +1,49 @@ +# Transform_RequiresDirective + +## Apollo Federation SDL + +```graphql +schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@requires", "@external"]) { + query: Query +} +type Product @key(fields: "id") { + id: ID! + price: Float @external + weight: Float @external + shippingEstimate: Float @requires(fields: "price weight") +} +type Query { + product(id: ID!): Product + _service: _Service! + _entities(representations: [_Any!]!): [_Entity]! +} +type _Service { sdl: String! } +union _Entity = Product +scalar FieldSet +scalar _Any +directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @requires(fields: FieldSet!) on FIELD_DEFINITION +directive @external on FIELD_DEFINITION +directive @link(url: String! import: [String!]) repeatable on SCHEMA +``` + +## Transformed SDL + +```graphql +schema { + query: Query +} + +type Query { + product(id: ID!): Product + productById(id: ID!): Product @internal @lookup +} + +type Product @key(fields: "id") { + id: ID! + shippingEstimate( + price: Float! @require(field: "price") + weight: Float! @require(field: "weight") + ): Float +} +``` diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_SimpleEntity.md b/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_SimpleEntity.md new file mode 100644 index 00000000000..f1c3e9e8cd4 --- /dev/null +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_SimpleEntity.md @@ -0,0 +1,42 @@ +# Transform_SimpleEntity + +## Apollo Federation SDL + +```graphql +schema @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key"]) { + query: Query +} +type Product @key(fields: "id") { + id: ID! + name: String +} +type Query { + product(id: ID!): Product + _service: _Service! + _entities(representations: [_Any!]!): [_Entity]! +} +type _Service { sdl: String! } +union _Entity = Product +scalar FieldSet +scalar _Any +directive @key(fields: FieldSet! resolvable: Boolean = true) repeatable on OBJECT | INTERFACE +directive @link(url: String! import: [String!]) repeatable on SCHEMA +``` + +## Transformed SDL + +```graphql +schema { + query: Query +} + +type Query { + product(id: ID!): Product + productById(id: ID!): Product @internal @lookup +} + +type Product @key(fields: "id") { + id: ID! + name: String +} +``` diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Argument.Tests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Argument.Tests.cs index 188826eb8a1..cda34725633 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Argument.Tests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Argument.Tests.cs @@ -36,26 +36,19 @@ Search filter to apply ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) - @fusion__type(schema: B) { - searchProducts("Filter to apply to the search" filter: ProductFilter! - @fusion__inputField(schema: A) - @fusion__inputField(schema: B, sourceType: "ProductFilter")): [Product] - @fusion__field(schema: A) - @fusion__field(schema: B) + type Query @fusion__type(schema: A) @fusion__type(schema: B) { + searchProducts( + "Filter to apply to the search" + filter: ProductFilter! @fusion__inputField(schema: A) @fusion__inputField(schema: B, sourceType: "ProductFilter") + ): [Product] @fusion__field(schema: A) @fusion__field(schema: B) } - scalar Product - @fusion__type(schema: A) - @fusion__type(schema: B) + scalar Product @fusion__type(schema: A) @fusion__type(schema: B) - scalar ProductFilter - @fusion__type(schema: A) - @fusion__type(schema: B) + scalar ProductFilter @fusion__type(schema: A) @fusion__type(schema: B) """); } @@ -81,18 +74,13 @@ type Query { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) - @fusion__type(schema: B) { - field(limit: Int - @fusion__inputField(schema: A) - @fusion__inputField(schema: B) - @fusion__inaccessible): Int - @fusion__field(schema: A) - @fusion__field(schema: B) + type Query @fusion__type(schema: A) @fusion__type(schema: B) { + field( + limit: Int @fusion__inputField(schema: A) @fusion__inputField(schema: B) @fusion__inaccessible + ): Int @fusion__field(schema: A) @fusion__field(schema: B) } """); } @@ -123,17 +111,14 @@ Number of items to fetch ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) - @fusion__type(schema: B) { - field("Number of items to fetch" limit: Int! = 10 - @fusion__inputField(schema: A, sourceType: "Int") - @fusion__inputField(schema: B)): Int - @fusion__field(schema: A) - @fusion__field(schema: B) + type Query @fusion__type(schema: A) @fusion__type(schema: B) { + field( + "Number of items to fetch" + limit: Int! = 10 @fusion__inputField(schema: A, sourceType: "Int") @fusion__inputField(schema: B) + ): Int @fusion__field(schema: A) @fusion__field(schema: B) } """); } @@ -162,28 +147,20 @@ type ProductDimension { """ ], """ - type Product - @fusion__type(schema: A) { - delivery(zip: String! - @fusion__inputField(schema: A)): DeliveryEstimates - @fusion__field(schema: A) - @fusion__requires(schema: A, requirements: "dimension { size weight }", field: "delivery(zip: String! size: Int! weight: Int!): DeliveryEstimates", map: [null, "dimension.size", "dimension.weight"]) - dimension: ProductDimension! - @fusion__field(schema: A) - id: ID! - @fusion__field(schema: A) + type Product @fusion__type(schema: A) { + delivery(zip: String! @fusion__inputField(schema: A)): DeliveryEstimates + @fusion__field(schema: A) + @fusion__requires(schema: A, requirements: "dimension { size weight }", field: "delivery(zip: String! size: Int! weight: Int!): DeliveryEstimates", map: [null, "dimension.size", "dimension.weight"]) + dimension: ProductDimension! @fusion__field(schema: A) + id: ID! @fusion__field(schema: A) } - type ProductDimension - @fusion__type(schema: A) { - size: Int! - @fusion__field(schema: A) - weight: Int! - @fusion__field(schema: A) + type ProductDimension @fusion__type(schema: A) { + size: Int! @fusion__field(schema: A) + weight: Int! @fusion__field(schema: A) } - scalar DeliveryEstimates - @fusion__type(schema: A) + scalar DeliveryEstimates @fusion__type(schema: A) """); } @@ -208,15 +185,10 @@ type Product { """ ], """ - type Product - @fusion__type(schema: A) - @fusion__type(schema: B) { - reviews(filter: String - @fusion__inputField(schema: A) - @fusion__inputField(schema: B) - @deprecated(reason: "Some reason")): [String] - @fusion__field(schema: A) - @fusion__field(schema: B) + type Product @fusion__type(schema: A) @fusion__type(schema: B) { + reviews( + filter: String @fusion__inputField(schema: A) @fusion__inputField(schema: B) @deprecated(reason: "Some reason") + ): [String] @fusion__field(schema: A) @fusion__field(schema: B) } """); } @@ -242,15 +214,10 @@ type Product { """ ], """ - type Product - @fusion__type(schema: A) - @fusion__type(schema: B) { - reviews(filter: String - @fusion__inputField(schema: A) - @fusion__inputField(schema: B) - @deprecated(reason: "Some reason")): [String] - @fusion__field(schema: A) - @fusion__field(schema: B) + type Product @fusion__type(schema: A) @fusion__type(schema: B) { + reviews( + filter: String @fusion__inputField(schema: A) @fusion__inputField(schema: B) @deprecated(reason: "Some reason") + ): [String] @fusion__field(schema: A) @fusion__field(schema: B) } """); } @@ -276,15 +243,10 @@ type Product { """ ], """ - type Product - @fusion__type(schema: A) - @fusion__type(schema: B) { - reviews(filter: String - @fusion__inputField(schema: A) - @fusion__inputField(schema: B) - @deprecated(reason: "No longer supported.")): [String] - @fusion__field(schema: A) - @fusion__field(schema: B) + type Product @fusion__type(schema: A) @fusion__type(schema: B) { + reviews( + filter: String @fusion__inputField(schema: A) @fusion__inputField(schema: B) @deprecated(reason: "No longer supported.") + ): [String] @fusion__field(schema: A) @fusion__field(schema: B) } """); } diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.AuthorizeDirective.Tests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.AuthorizeDirective.Tests.cs index 85fe0fb7021..2d5ae1281b9 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.AuthorizeDirective.Tests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.AuthorizeDirective.Tests.cs @@ -48,41 +48,39 @@ interface FooInterface { ], """ schema { - query: Query + query: Query } type Query - @authorize(policy: "PolicyA1") - @authorize(policy: "PolicyB1") - @fusion__type(schema: A) - @fusion__type(schema: B) { - field: Int - @authorize(policy: "PolicyA2") - @authorize(policy: "PolicyB2") - @fusion__field(schema: A) - @fusion__field(schema: B) + @authorize(policy: "PolicyA1") + @authorize(policy: "PolicyB1") + @fusion__type(schema: A) + @fusion__type(schema: B) { + field: Int + @authorize(policy: "PolicyA2") + @authorize(policy: "PolicyB2") + @fusion__field(schema: A) + @fusion__field(schema: B) } type FooObject - @authorize(policy: "PolicyA3") - @authorize(policy: "PolicyB3") - @fusion__type(schema: A) - @fusion__type(schema: B) { - field: Int - @authorize(policy: "PolicyA4") - @authorize(policy: "PolicyB4") - @fusion__field(schema: A) - @fusion__field(schema: B) + @authorize(policy: "PolicyA3") + @authorize(policy: "PolicyB3") + @fusion__type(schema: A) + @fusion__type(schema: B) { + field: Int + @authorize(policy: "PolicyA4") + @authorize(policy: "PolicyB4") + @fusion__field(schema: A) + @fusion__field(schema: B) } - interface FooInterface - @fusion__type(schema: A) - @fusion__type(schema: B) { - field: Int - @authorize(policy: "PolicyA5") - @authorize(policy: "PolicyB5") - @fusion__field(schema: A) - @fusion__field(schema: B) + interface FooInterface @fusion__type(schema: A) @fusion__type(schema: B) { + field: Int + @authorize(policy: "PolicyA5") + @authorize(policy: "PolicyB5") + @fusion__field(schema: A) + @fusion__field(schema: B) } """, modifySchema: s_removeAuthorizeDirective); @@ -113,15 +111,11 @@ directive @authorize on FIELD_DEFINITION ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) - @fusion__type(schema: B) { - field: Int - @fusion__field(schema: A) - @fusion__field(schema: B) + type Query @fusion__type(schema: A) @fusion__type(schema: B) { + field: Int @fusion__field(schema: A) @fusion__field(schema: B) } """); } @@ -243,16 +237,14 @@ type Query @authorize(policy: "Policy1", apply: BEFORE_RESOLVER) { ], """ schema { - query: Query + query: Query } type Query - @authorize(policy: "Policy1") - @fusion__type(schema: A) - @fusion__type(schema: B) { - field: Int - @fusion__field(schema: A) - @fusion__field(schema: B) + @authorize(policy: "Policy1") + @fusion__type(schema: A) + @fusion__type(schema: B) { + field: Int @fusion__field(schema: A) @fusion__field(schema: B) } """, modifySchema: s_removeAuthorizeDirective); diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.CacheControlDirective.Tests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.CacheControlDirective.Tests.cs index 32b81428540..6cab20d26bb 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.CacheControlDirective.Tests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.CacheControlDirective.Tests.cs @@ -33,12 +33,8 @@ type Foo { """ ], """ - type Foo - @fusion__type(schema: A) - @fusion__type(schema: B) { - field: Int - @fusion__field(schema: A) - @fusion__field(schema: B) + type Foo @fusion__type(schema: A) @fusion__type(schema: B) { + field: Int @fusion__field(schema: A) @fusion__field(schema: B) } """, options => options.CacheControlMergeBehavior = DirectiveMergeBehavior.Ignore, @@ -84,30 +80,28 @@ union FooUnion @cacheControl(maxAge: 500) = FooObject ], """ type FooObject + @cacheControl(maxAge: 500) + @fusion__type(schema: A) + @fusion__type(schema: B) { + field: Int @cacheControl(maxAge: 500) - @fusion__type(schema: A) - @fusion__type(schema: B) { - field: Int - @cacheControl(maxAge: 500) - @fusion__field(schema: A) - @fusion__field(schema: B) + @fusion__field(schema: A) + @fusion__field(schema: B) } interface FooInterface - @cacheControl(maxAge: 500) - @fusion__type(schema: A) - @fusion__type(schema: B) { - field: Int - @fusion__field(schema: A) - @fusion__field(schema: B) + @cacheControl(maxAge: 500) + @fusion__type(schema: A) + @fusion__type(schema: B) { + field: Int @fusion__field(schema: A) @fusion__field(schema: B) } union FooUnion - @cacheControl(maxAge: 500) - @fusion__type(schema: A) - @fusion__type(schema: B) - @fusion__unionMember(schema: A, member: "FooObject") - @fusion__unionMember(schema: B, member: "FooObject") = FooObject + @cacheControl(maxAge: 500) + @fusion__type(schema: A) + @fusion__type(schema: B) + @fusion__unionMember(schema: A, member: "FooObject") + @fusion__unionMember(schema: B, member: "FooObject") = FooObject """, options => options.CacheControlMergeBehavior = DirectiveMergeBehavior.Include, s_removeCacheControlDirective); @@ -138,12 +132,8 @@ directive @cacheControl(lifetime: Int) repeatable on SCALAR """ ], """ - type Foo - @fusion__type(schema: A) - @fusion__type(schema: B) { - field: Int - @fusion__field(schema: A) - @fusion__field(schema: B) + type Foo @fusion__type(schema: A) @fusion__type(schema: B) { + field: Int @fusion__field(schema: A) @fusion__field(schema: B) } """, options => options.CacheControlMergeBehavior = DirectiveMergeBehavior.Include, @@ -176,21 +166,25 @@ type Foo { """ ], """ - type Foo - @fusion__type(schema: A) - @fusion__type(schema: B) { - field: Int - @fusion__cacheControl(maxAge: 500) - @fusion__field(schema: A) - @fusion__field(schema: B) + type Foo @fusion__type(schema: A) @fusion__type(schema: B) { + field: Int + @fusion__cacheControl(maxAge: 500) + @fusion__field(schema: A) + @fusion__field(schema: B) } enum fusion__CacheControlScope { - PRIVATE - PUBLIC + PRIVATE + PUBLIC } - directive @fusion__cacheControl(inheritMaxAge: Boolean maxAge: Int scope: fusion__CacheControlScope sharedMaxAge: Int vary: [String]) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION + directive @fusion__cacheControl( + inheritMaxAge: Boolean + maxAge: Int + scope: fusion__CacheControlScope + sharedMaxAge: Int + vary: [String] + ) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION """, options => options.CacheControlMergeBehavior = DirectiveMergeBehavior.IncludePrivate, s_removeCacheControlDirective); @@ -225,17 +219,12 @@ type Foo { """ ], """ - type Foo - @fusion__type(schema: A) - @fusion__type(schema: B) { - field1: Int - @cacheControl(maxAge: 500, sharedMaxAge: 600) - @fusion__field(schema: A) - @fusion__field(schema: B) - field2: Int - @cacheControl - @fusion__field(schema: A) - @fusion__field(schema: B) + type Foo @fusion__type(schema: A) @fusion__type(schema: B) { + field1: Int + @cacheControl(maxAge: 500, sharedMaxAge: 600) + @fusion__field(schema: A) + @fusion__field(schema: B) + field2: Int @cacheControl @fusion__field(schema: A) @fusion__field(schema: B) } """, options => options.CacheControlMergeBehavior = DirectiveMergeBehavior.Include, @@ -275,25 +264,20 @@ type Foo { """ ], """ - type Foo - @fusion__type(schema: A) - @fusion__type(schema: B) { - field1: Int - @cacheControl(inheritMaxAge: true) - @fusion__field(schema: A) - @fusion__field(schema: B) - field2: Int - @cacheControl(inheritMaxAge: false) - @fusion__field(schema: A) - @fusion__field(schema: B) - field3: Int - @cacheControl(inheritMaxAge: false) - @fusion__field(schema: A) - @fusion__field(schema: B) - field4: Int - @cacheControl - @fusion__field(schema: A) - @fusion__field(schema: B) + type Foo @fusion__type(schema: A) @fusion__type(schema: B) { + field1: Int + @cacheControl(inheritMaxAge: true) + @fusion__field(schema: A) + @fusion__field(schema: B) + field2: Int + @cacheControl(inheritMaxAge: false) + @fusion__field(schema: A) + @fusion__field(schema: B) + field3: Int + @cacheControl(inheritMaxAge: false) + @fusion__field(schema: A) + @fusion__field(schema: B) + field4: Int @cacheControl @fusion__field(schema: A) @fusion__field(schema: B) } """, options => options.CacheControlMergeBehavior = DirectiveMergeBehavior.Include, @@ -333,25 +317,20 @@ type Foo { """ ], """ - type Foo - @fusion__type(schema: A) - @fusion__type(schema: B) { - field1: Int - @cacheControl(scope: PUBLIC) - @fusion__field(schema: A) - @fusion__field(schema: B) - field2: Int - @cacheControl(scope: PRIVATE) - @fusion__field(schema: A) - @fusion__field(schema: B) - field3: Int - @cacheControl(scope: PUBLIC) - @fusion__field(schema: A) - @fusion__field(schema: B) - field4: Int - @cacheControl - @fusion__field(schema: A) - @fusion__field(schema: B) + type Foo @fusion__type(schema: A) @fusion__type(schema: B) { + field1: Int + @cacheControl(scope: PUBLIC) + @fusion__field(schema: A) + @fusion__field(schema: B) + field2: Int + @cacheControl(scope: PRIVATE) + @fusion__field(schema: A) + @fusion__field(schema: B) + field3: Int + @cacheControl(scope: PUBLIC) + @fusion__field(schema: A) + @fusion__field(schema: B) + field4: Int @cacheControl @fusion__field(schema: A) @fusion__field(schema: B) } """, options => options.CacheControlMergeBehavior = DirectiveMergeBehavior.Include, @@ -391,25 +370,17 @@ type Foo { """ ], """ - type Foo - @fusion__type(schema: A) - @fusion__type(schema: B) { - field1: Int - @cacheControl(vary: ["Accept-Encoding", "User-Agent", "Accept-Language"]) - @fusion__field(schema: A) - @fusion__field(schema: B) - field2: Int - @cacheControl(vary: ["Accept-Encoding"]) - @fusion__field(schema: A) - @fusion__field(schema: B) - field3: Int - @cacheControl - @fusion__field(schema: A) - @fusion__field(schema: B) - field4: Int - @cacheControl - @fusion__field(schema: A) - @fusion__field(schema: B) + type Foo @fusion__type(schema: A) @fusion__type(schema: B) { + field1: Int + @cacheControl(vary: ["Accept-Encoding", "User-Agent", "Accept-Language"]) + @fusion__field(schema: A) + @fusion__field(schema: B) + field2: Int + @cacheControl(vary: ["Accept-Encoding"]) + @fusion__field(schema: A) + @fusion__field(schema: B) + field3: Int @cacheControl @fusion__field(schema: A) @fusion__field(schema: B) + field4: Int @cacheControl @fusion__field(schema: A) @fusion__field(schema: B) } """, options => options.CacheControlMergeBehavior = DirectiveMergeBehavior.Include, @@ -442,12 +413,8 @@ type Foo { """ ], """ - type Foo - @fusion__type(schema: A) - @fusion__type(schema: B) { - field: Int - @fusion__field(schema: A) - @fusion__field(schema: B) + type Foo @fusion__type(schema: A) @fusion__type(schema: B) { + field: Int @fusion__field(schema: A) @fusion__field(schema: B) } """, options => options.CacheControlMergeBehavior = DirectiveMergeBehavior.Include, diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.CostDirective.Tests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.CostDirective.Tests.cs index bfdc4ab40dd..c7e6fcfc767 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.CostDirective.Tests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.CostDirective.Tests.cs @@ -50,56 +50,44 @@ scalar Scalar @cost(weight: "1.0") ], """ schema { - query: Query + query: Query } type Query + @cost(weight: "1") + @fusion__cost(schema: A, weight: "1.0") + @fusion__cost(schema: B, weight: "1.0") + @fusion__type(schema: A) + @fusion__type(schema: B) { + field( + argument: Int @cost(weight: "1") @fusion__cost(schema: A, weight: "1.0") @fusion__cost(schema: B, weight: "1.0") @fusion__inputField(schema: A) @fusion__inputField(schema: B) + ): Int @cost(weight: "1") @fusion__cost(schema: A, weight: "1.0") @fusion__cost(schema: B, weight: "1.0") - @fusion__type(schema: A) - @fusion__type(schema: B) { - field(argument: Int - @cost(weight: "1") - @fusion__cost(schema: A, weight: "1.0") - @fusion__cost(schema: B, weight: "1.0") - @fusion__inputField(schema: A) - @fusion__inputField(schema: B)): Int - @cost(weight: "1") - @fusion__cost(schema: A, weight: "1.0") - @fusion__cost(schema: B, weight: "1.0") - @fusion__field(schema: A) - @fusion__field(schema: B) + @fusion__field(schema: A) + @fusion__field(schema: B) } - input Input - @fusion__type(schema: A) - @fusion__type(schema: B) { - field: Int - @cost(weight: "1") - @fusion__cost(schema: A, weight: "1.0") - @fusion__cost(schema: B, weight: "1.0") - @fusion__inputField(schema: A) - @fusion__inputField(schema: B) + input Input @fusion__type(schema: A) @fusion__type(schema: B) { + field: Int @cost(weight: "1") @fusion__cost(schema: A, weight: "1.0") @fusion__cost(schema: B, weight: "1.0") @fusion__inputField(schema: A) @fusion__inputField(schema: B) } enum Enum - @cost(weight: "1") - @fusion__cost(schema: A, weight: "1.0") - @fusion__cost(schema: B, weight: "1.0") - @fusion__type(schema: A) - @fusion__type(schema: B) { - VALUE - @fusion__enumValue(schema: A) - @fusion__enumValue(schema: B) + @cost(weight: "1") + @fusion__cost(schema: A, weight: "1.0") + @fusion__cost(schema: B, weight: "1.0") + @fusion__type(schema: A) + @fusion__type(schema: B) { + VALUE @fusion__enumValue(schema: A) @fusion__enumValue(schema: B) } scalar Scalar - @cost(weight: "1") - @fusion__cost(schema: A, weight: "1.0") - @fusion__cost(schema: B, weight: "1.0") - @fusion__type(schema: A) - @fusion__type(schema: B) + @cost(weight: "1") + @fusion__cost(schema: A, weight: "1.0") + @fusion__cost(schema: B, weight: "1.0") + @fusion__type(schema: A) + @fusion__type(schema: B) """, modifySchema: s_removeCostDirective); } @@ -124,9 +112,7 @@ directive @cost(index: Int) on SCALAR """ ], """ - scalar Foo - @fusion__type(schema: A) - @fusion__type(schema: B) + scalar Foo @fusion__type(schema: A) @fusion__type(schema: B) """, modifySchema: s_removeCostDirective); } diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Enum.Tests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Enum.Tests.cs index 1338317c03b..4e312998c9d 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Enum.Tests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Enum.Tests.cs @@ -25,15 +25,9 @@ enum Status { """ ], """ - enum Status - @fusion__type(schema: A) - @fusion__type(schema: B) { - ACTIVE - @fusion__enumValue(schema: A) - @fusion__enumValue(schema: B) - INACTIVE - @fusion__enumValue(schema: A) - @fusion__enumValue(schema: B) + enum Status @fusion__type(schema: A) @fusion__type(schema: B) { + ACTIVE @fusion__enumValue(schema: A) @fusion__enumValue(schema: B) + INACTIVE @fusion__enumValue(schema: A) @fusion__enumValue(schema: B) } """); } @@ -61,18 +55,10 @@ PENDING @inaccessible """ ], """ - enum Status - @fusion__type(schema: A) - @fusion__type(schema: B) { - ACTIVE - @fusion__enumValue(schema: A) - @fusion__inaccessible - INACTIVE - @fusion__enumValue(schema: A) - @fusion__enumValue(schema: B) - PENDING - @fusion__enumValue(schema: B) - @fusion__inaccessible + enum Status @fusion__type(schema: A) @fusion__type(schema: B) { + ACTIVE @fusion__enumValue(schema: A) @fusion__inaccessible + INACTIVE @fusion__enumValue(schema: A) @fusion__enumValue(schema: B) + PENDING @fusion__enumValue(schema: B) @fusion__inaccessible } """); } @@ -99,13 +85,11 @@ enum Status @inaccessible { ], """ enum Status - @fusion__type(schema: A) - @fusion__type(schema: B) - @fusion__inaccessible { - ACTIVE - @fusion__enumValue(schema: A) - INACTIVE - @fusion__enumValue(schema: B) + @fusion__type(schema: A) + @fusion__type(schema: B) + @fusion__inaccessible { + ACTIVE @fusion__enumValue(schema: A) + INACTIVE @fusion__enumValue(schema: B) } """); } @@ -132,12 +116,8 @@ enum Status { ], """ "The first non-null description." - enum Status - @fusion__type(schema: A) - @fusion__type(schema: B) { - ACTIVE - @fusion__enumValue(schema: A) - @fusion__enumValue(schema: B) + enum Status @fusion__type(schema: A) @fusion__type(schema: B) { + ACTIVE @fusion__enumValue(schema: A) @fusion__enumValue(schema: B) } """); } diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.EnumValue.Tests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.EnumValue.Tests.cs index 5459ab2ac2c..556cfb55196 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.EnumValue.Tests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.EnumValue.Tests.cs @@ -23,14 +23,9 @@ INACTIVE @inaccessible """ ], """ - enum Status - @fusion__type(schema: A) - @fusion__type(schema: B) { - ACTIVE - @fusion__enumValue(schema: A) - INACTIVE - @fusion__enumValue(schema: B) - @fusion__inaccessible + enum Status @fusion__type(schema: A) @fusion__type(schema: B) { + ACTIVE @fusion__enumValue(schema: A) + INACTIVE @fusion__enumValue(schema: B) @fusion__inaccessible } """); } @@ -57,13 +52,9 @@ enum Status { """ ], """ - enum Status - @fusion__type(schema: A) - @fusion__type(schema: B) { - "The first non-null description." - ACTIVE - @fusion__enumValue(schema: A) - @fusion__enumValue(schema: B) + enum Status @fusion__type(schema: A) @fusion__type(schema: B) { + "The first non-null description." + ACTIVE @fusion__enumValue(schema: A) @fusion__enumValue(schema: B) } """); } @@ -89,13 +80,11 @@ enum Status { """ ], """ - enum Status - @fusion__type(schema: A) - @fusion__type(schema: B) { - ACTIVE - @fusion__enumValue(schema: A) - @fusion__enumValue(schema: B) - @deprecated(reason: "Some reason") + enum Status @fusion__type(schema: A) @fusion__type(schema: B) { + ACTIVE + @fusion__enumValue(schema: A) + @fusion__enumValue(schema: B) + @deprecated(reason: "Some reason") } """); } @@ -121,13 +110,11 @@ ACTIVE @deprecated(reason: "Another reason") """ ], """ - enum Status - @fusion__type(schema: A) - @fusion__type(schema: B) { - ACTIVE - @fusion__enumValue(schema: A) - @fusion__enumValue(schema: B) - @deprecated(reason: "Some reason") + enum Status @fusion__type(schema: A) @fusion__type(schema: B) { + ACTIVE + @fusion__enumValue(schema: A) + @fusion__enumValue(schema: B) + @deprecated(reason: "Some reason") } """); } @@ -153,13 +140,11 @@ ACTIVE @deprecated """ ], """ - enum Status - @fusion__type(schema: A) - @fusion__type(schema: B) { - ACTIVE - @fusion__enumValue(schema: A) - @fusion__enumValue(schema: B) - @deprecated(reason: "No longer supported.") + enum Status @fusion__type(schema: A) @fusion__type(schema: B) { + ACTIVE + @fusion__enumValue(schema: A) + @fusion__enumValue(schema: B) + @deprecated(reason: "No longer supported.") } """); } diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.GlobalObjectIdentification.Tests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.GlobalObjectIdentification.Tests.cs index fa4dbdc27d9..62a67ae9180 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.GlobalObjectIdentification.Tests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.GlobalObjectIdentification.Tests.cs @@ -26,26 +26,23 @@ type Product implements Node { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) { - node(id: ID!): Node + type Query @fusion__type(schema: A) { + node(id: ID!): Node } type Product implements Node - @fusion__type(schema: A) - @fusion__implements(schema: A, interface: "Node") { - id: ID! - @fusion__field(schema: A) + @fusion__type(schema: A) + @fusion__implements(schema: A, interface: "Node") { + id: ID! @fusion__field(schema: A) } interface Node - @fusion__type(schema: A) - @fusion__lookup(schema: A, key: "id", field: "node(id: ID!): Node", map: ["id"], path: null, internal: false) { - id: ID! - @fusion__field(schema: A) + @fusion__type(schema: A) + @fusion__lookup(schema: A, key: "id", field: "node(id: ID!): Node", map: ["id"], path: null, internal: false) { + id: ID! @fusion__field(schema: A) } """, options => options.EnableGlobalObjectIdentification = true); @@ -70,19 +67,15 @@ type SomethingElse { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) { - node: SomethingElse - @fusion__field(schema: A) + type Query @fusion__type(schema: A) { + node: SomethingElse @fusion__field(schema: A) } - type SomethingElse - @fusion__type(schema: A) { - id: ID! - @fusion__field(schema: A) + type SomethingElse @fusion__type(schema: A) { + id: ID! @fusion__field(schema: A) } """, options => options.EnableGlobalObjectIdentification = true); @@ -112,25 +105,21 @@ type Product implements Node { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) { + type Query @fusion__type(schema: A) { } type Product implements Node - @fusion__type(schema: A) - @fusion__implements(schema: A, interface: "Node") { - id: ID! - @fusion__field(schema: A) + @fusion__type(schema: A) + @fusion__implements(schema: A, interface: "Node") { + id: ID! @fusion__field(schema: A) } - interface Node - @fusion__type(schema: A) { - id: ID! - @fusion__field(schema: A) + interface Node @fusion__type(schema: A) { + id: ID! @fusion__field(schema: A) } """, options => options.EnableGlobalObjectIdentification = false); diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.InputField.Tests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.InputField.Tests.cs index 8d05e8e420c..9ae70ef385e 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.InputField.Tests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.InputField.Tests.cs @@ -28,13 +28,9 @@ input OrderFilter { """ ], """ - input OrderFilter - @fusion__type(schema: A) - @fusion__type(schema: B) { - "Filter by the minimum order total" - minTotal: Int! = 0 - @fusion__inputField(schema: A, sourceType: "Int") - @fusion__inputField(schema: B) + input OrderFilter @fusion__type(schema: A) @fusion__type(schema: B) { + "Filter by the minimum order total" + minTotal: Int! = 0 @fusion__inputField(schema: A, sourceType: "Int") @fusion__inputField(schema: B) } """); } @@ -60,13 +56,8 @@ input OrderFilter { """ ], """ - input OrderFilter - @fusion__type(schema: A) - @fusion__type(schema: B) { - minTotal: Int - @fusion__inputField(schema: A) - @fusion__inputField(schema: B) - @fusion__inaccessible + input OrderFilter @fusion__type(schema: A) @fusion__type(schema: B) { + minTotal: Int @fusion__inputField(schema: A) @fusion__inputField(schema: B) @fusion__inaccessible } """); } @@ -91,12 +82,8 @@ input OrderFilter { """ ], """ - input OrderFilter - @fusion__type(schema: A) - @fusion__type(schema: B) { - minTotal: Int - @fusion__inputField(schema: A) - @fusion__inputField(schema: B) + input OrderFilter @fusion__type(schema: A) @fusion__type(schema: B) { + minTotal: Int @fusion__inputField(schema: A) @fusion__inputField(schema: B) } """); } @@ -122,13 +109,8 @@ input OrderFilter { """ ], """ - input OrderFilter - @fusion__type(schema: A) - @fusion__type(schema: B) { - minTotal: Int - @fusion__inputField(schema: A) - @fusion__inputField(schema: B) - @deprecated(reason: "Some reason") + input OrderFilter @fusion__type(schema: A) @fusion__type(schema: B) { + minTotal: Int @fusion__inputField(schema: A) @fusion__inputField(schema: B) @deprecated(reason: "Some reason") } """); } @@ -154,13 +136,8 @@ input OrderFilter { """ ], """ - input OrderFilter - @fusion__type(schema: A) - @fusion__type(schema: B) { - minTotal: Int - @fusion__inputField(schema: A) - @fusion__inputField(schema: B) - @deprecated(reason: "Some reason") + input OrderFilter @fusion__type(schema: A) @fusion__type(schema: B) { + minTotal: Int @fusion__inputField(schema: A) @fusion__inputField(schema: B) @deprecated(reason: "Some reason") } """); } @@ -186,13 +163,8 @@ input OrderFilter { """ ], """ - input OrderFilter - @fusion__type(schema: A) - @fusion__type(schema: B) { - minTotal: Int - @fusion__inputField(schema: A) - @fusion__inputField(schema: B) - @deprecated(reason: "No longer supported.") + input OrderFilter @fusion__type(schema: A) @fusion__type(schema: B) { + minTotal: Int @fusion__inputField(schema: A) @fusion__inputField(schema: B) @deprecated(reason: "No longer supported.") } """); } diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.InputObject.Tests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.InputObject.Tests.cs index 0953e0e5bfb..e753c185d6e 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.InputObject.Tests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.InputObject.Tests.cs @@ -27,12 +27,8 @@ input OrderInput { """ ], """ - input OrderInput - @fusion__type(schema: A) - @fusion__type(schema: B) { - id: ID! - @fusion__inputField(schema: A) - @fusion__inputField(schema: B) + input OrderInput @fusion__type(schema: A) @fusion__type(schema: B) { + id: ID! @fusion__inputField(schema: A) @fusion__inputField(schema: B) } """); } @@ -66,12 +62,8 @@ input OrderInput { ], """ "First Description" - input OrderInput - @fusion__type(schema: A) - @fusion__type(schema: B) { - id: ID! - @fusion__inputField(schema: A) - @fusion__inputField(schema: B) + input OrderInput @fusion__type(schema: A) @fusion__type(schema: B) { + id: ID! @fusion__inputField(schema: A) @fusion__inputField(schema: B) } """); } @@ -98,12 +90,10 @@ input OrderInput @inaccessible { ], """ input OrderInput - @fusion__type(schema: A) - @fusion__type(schema: B) - @fusion__inaccessible { - id: ID! - @fusion__inputField(schema: A) - @fusion__inputField(schema: B) + @fusion__type(schema: A) + @fusion__type(schema: B) + @fusion__inaccessible { + id: ID! @fusion__inputField(schema: A) @fusion__inputField(schema: B) } """); } diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Interface.Tests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Interface.Tests.cs index 9f3a7e43ce6..2432c2d69ef 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Interface.Tests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Interface.Tests.cs @@ -26,16 +26,10 @@ interface Product { """ ], """ - interface Product - @fusion__type(schema: A) - @fusion__type(schema: B) { - createdAt: String - @fusion__field(schema: B) - id: ID! - @fusion__field(schema: A) - @fusion__field(schema: B) - name: String - @fusion__field(schema: A) + interface Product @fusion__type(schema: A) @fusion__type(schema: B) { + createdAt: String @fusion__field(schema: B) + id: ID! @fusion__field(schema: A) @fusion__field(schema: B) + name: String @fusion__field(schema: A) } """); } @@ -67,12 +61,8 @@ interface Product { ], """ "First description" - interface Product - @fusion__type(schema: A) - @fusion__type(schema: B) { - id: ID! - @fusion__field(schema: A) - @fusion__field(schema: B) + interface Product @fusion__type(schema: A) @fusion__type(schema: B) { + id: ID! @fusion__field(schema: A) @fusion__field(schema: B) } """); } @@ -99,12 +89,10 @@ interface Product @inaccessible { ], """ interface Product - @fusion__type(schema: A) - @fusion__type(schema: B) - @fusion__inaccessible { - id: ID! - @fusion__field(schema: A) - @fusion__field(schema: B) + @fusion__type(schema: A) + @fusion__type(schema: B) + @fusion__inaccessible { + id: ID! @fusion__field(schema: A) @fusion__field(schema: B) } """); } @@ -148,38 +136,28 @@ interface Product implements I1 & I2 & I3 { """ ], """ - interface I1 - @fusion__type(schema: A) - @fusion__type(schema: B) { - id: ID! - @fusion__field(schema: A) - @fusion__field(schema: B) + interface I1 @fusion__type(schema: A) @fusion__type(schema: B) { + id: ID! @fusion__field(schema: A) @fusion__field(schema: B) } interface I2 - @fusion__type(schema: A) - @fusion__type(schema: B) - @fusion__inaccessible { - id: ID! - @fusion__field(schema: A) - @fusion__field(schema: B) + @fusion__type(schema: A) + @fusion__type(schema: B) + @fusion__inaccessible { + id: ID! @fusion__field(schema: A) @fusion__field(schema: B) } - interface I3 - @fusion__type(schema: B) { - id: ID! - @fusion__field(schema: B) + interface I3 @fusion__type(schema: B) { + id: ID! @fusion__field(schema: B) } interface Product implements I1 & I3 - @fusion__type(schema: A) - @fusion__type(schema: B) - @fusion__implements(schema: A, interface: "I1") - @fusion__implements(schema: B, interface: "I1") - @fusion__implements(schema: B, interface: "I3") { - id: ID! - @fusion__field(schema: A) - @fusion__field(schema: B) + @fusion__type(schema: A) + @fusion__type(schema: B) + @fusion__implements(schema: A, interface: "I1") + @fusion__implements(schema: B, interface: "I1") + @fusion__implements(schema: B, interface: "I3") { + id: ID! @fusion__field(schema: A) @fusion__field(schema: B) } """); } @@ -205,27 +183,22 @@ interface Product @key(fields: "id") @key(fields: "name") { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) { - productById(id: ID! - @fusion__inputField(schema: A)): Product - @fusion__field(schema: A) - productByName(name: String! - @fusion__inputField(schema: A)): Product - @fusion__field(schema: A) + type Query @fusion__type(schema: A) { + productById(id: ID! @fusion__inputField(schema: A)): Product + @fusion__field(schema: A) + productByName(name: String! @fusion__inputField(schema: A)): Product + @fusion__field(schema: A) } interface Product - @fusion__type(schema: A) - @fusion__lookup(schema: A, key: "id", field: "productById(id: ID!): Product", map: ["id"], path: null, internal: false) - @fusion__lookup(schema: A, key: "name", field: "productByName(name: String!): Product", map: ["name"], path: null, internal: false) { - id: ID! - @fusion__field(schema: A) - name: String! - @fusion__field(schema: A) + @fusion__type(schema: A) + @fusion__lookup(schema: A, key: "id", field: "productById(id: ID!): Product", map: ["id"], path: null, internal: false) + @fusion__lookup(schema: A, key: "name", field: "productByName(name: String!): Product", map: ["name"], path: null, internal: false) { + id: ID! @fusion__field(schema: A) + name: String! @fusion__field(schema: A) } """); } @@ -259,43 +232,34 @@ type Cat implements Animal { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) { - animalById(id: ID! - @fusion__inputField(schema: A)): Animal - @fusion__field(schema: A) + type Query @fusion__type(schema: A) { + animalById(id: ID! @fusion__inputField(schema: A)): Animal + @fusion__field(schema: A) } type Cat implements Animal - @fusion__type(schema: A) - @fusion__implements(schema: A, interface: "Animal") - @fusion__lookup(schema: A, key: "id", field: "catById(id: ID!): Cat", map: ["id"], path: "animalById", internal: false) { - catById(id: ID! - @fusion__inputField(schema: A)): Cat - @fusion__field(schema: A) - id: ID! - @fusion__field(schema: A) + @fusion__type(schema: A) + @fusion__implements(schema: A, interface: "Animal") + @fusion__lookup(schema: A, key: "id", field: "catById(id: ID!): Cat", map: ["id"], path: "animalById", internal: false) { + catById(id: ID! @fusion__inputField(schema: A)): Cat @fusion__field(schema: A) + id: ID! @fusion__field(schema: A) } type Dog implements Animal - @fusion__type(schema: A) - @fusion__implements(schema: A, interface: "Animal") - @fusion__lookup(schema: A, key: "id", field: "dogById(id: ID!): Dog", map: ["id"], path: "animalById", internal: false) { - dogById(id: ID! - @fusion__inputField(schema: A)): Dog - @fusion__field(schema: A) - id: ID! - @fusion__field(schema: A) + @fusion__type(schema: A) + @fusion__implements(schema: A, interface: "Animal") + @fusion__lookup(schema: A, key: "id", field: "dogById(id: ID!): Dog", map: ["id"], path: "animalById", internal: false) { + dogById(id: ID! @fusion__inputField(schema: A)): Dog @fusion__field(schema: A) + id: ID! @fusion__field(schema: A) } interface Animal - @fusion__type(schema: A) - @fusion__lookup(schema: A, key: "id", field: "animalById(id: ID!): Animal", map: ["id"], path: null, internal: false) { - id: ID! - @fusion__field(schema: A) + @fusion__type(schema: A) + @fusion__lookup(schema: A, key: "id", field: "animalById(id: ID!): Animal", map: ["id"], path: null, internal: false) { + id: ID! @fusion__field(schema: A) } """); } diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.ListSizeDirective.Tests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.ListSizeDirective.Tests.cs index b6ba0c29345..c236626dec9 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.ListSizeDirective.Tests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.ListSizeDirective.Tests.cs @@ -30,18 +30,16 @@ type Query { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) - @fusion__type(schema: B) { - field: [Int] - @listSize(assumedSize: 5) - @fusion__field(schema: A) - @fusion__field(schema: B) - @fusion__listSize(schema: A, assumedSize: 5) - @fusion__listSize(schema: B, assumedSize: 5) + type Query @fusion__type(schema: A) @fusion__type(schema: B) { + field: [Int] + @listSize(assumedSize: 5) + @fusion__field(schema: A) + @fusion__field(schema: B) + @fusion__listSize(schema: A, assumedSize: 5) + @fusion__listSize(schema: B, assumedSize: 5) } """, modifySchema: s_removeListSizeDirective); @@ -72,15 +70,11 @@ directive @listSize(limit: Int!) on SCALAR ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) - @fusion__type(schema: B) { - field: [Int] - @fusion__field(schema: A) - @fusion__field(schema: B) + type Query @fusion__type(schema: A) @fusion__type(schema: B) { + field: [Int] @fusion__field(schema: A) @fusion__field(schema: B) } """, modifySchema: s_removeListSizeDirective); @@ -115,30 +109,28 @@ type Query { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) - @fusion__type(schema: B) { - field1: [Int] - @listSize(assumedSize: 5) - @fusion__field(schema: A) - @fusion__field(schema: B) - @fusion__listSize(schema: A) - @fusion__listSize(schema: B, assumedSize: 5) - field2: [Int] - @listSize(assumedSize: 5) - @fusion__field(schema: A) - @fusion__field(schema: B) - @fusion__listSize(schema: A, assumedSize: null) - @fusion__listSize(schema: B, assumedSize: 5) - field3: [Int] - @listSize(assumedSize: 10) - @fusion__field(schema: A) - @fusion__field(schema: B) - @fusion__listSize(schema: A, assumedSize: 10) - @fusion__listSize(schema: B, assumedSize: 5) + type Query @fusion__type(schema: A) @fusion__type(schema: B) { + field1: [Int] + @listSize(assumedSize: 5) + @fusion__field(schema: A) + @fusion__field(schema: B) + @fusion__listSize(schema: A) + @fusion__listSize(schema: B, assumedSize: 5) + field2: [Int] + @listSize(assumedSize: 5) + @fusion__field(schema: A) + @fusion__field(schema: B) + @fusion__listSize(schema: A, assumedSize: null) + @fusion__listSize(schema: B, assumedSize: 5) + field3: [Int] + @listSize(assumedSize: 10) + @fusion__field(schema: A) + @fusion__field(schema: B) + @fusion__listSize(schema: A, assumedSize: 10) + @fusion__listSize(schema: B, assumedSize: 5) } """, modifySchema: s_removeListSizeDirective); @@ -173,30 +165,28 @@ type Query { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) - @fusion__type(schema: B) { - field1: [Int] - @listSize(slicingArguments: ["first", "last"]) - @fusion__field(schema: A) - @fusion__field(schema: B) - @fusion__listSize(schema: A) - @fusion__listSize(schema: B, slicingArguments: ["first", "last"]) - field2: [Int] - @listSize(slicingArguments: ["first", "last"]) - @fusion__field(schema: A) - @fusion__field(schema: B) - @fusion__listSize(schema: A, slicingArguments: null) - @fusion__listSize(schema: B, slicingArguments: ["first", "last"]) - field3: [Int] - @listSize(slicingArguments: ["first", "last", "another"]) - @fusion__field(schema: A) - @fusion__field(schema: B) - @fusion__listSize(schema: A, slicingArguments: ["first", "last"]) - @fusion__listSize(schema: B, slicingArguments: ["first", "last", "another"]) + type Query @fusion__type(schema: A) @fusion__type(schema: B) { + field1: [Int] + @listSize(slicingArguments: ["first", "last"]) + @fusion__field(schema: A) + @fusion__field(schema: B) + @fusion__listSize(schema: A) + @fusion__listSize(schema: B, slicingArguments: ["first", "last"]) + field2: [Int] + @listSize(slicingArguments: ["first", "last"]) + @fusion__field(schema: A) + @fusion__field(schema: B) + @fusion__listSize(schema: A, slicingArguments: null) + @fusion__listSize(schema: B, slicingArguments: ["first", "last"]) + field3: [Int] + @listSize(slicingArguments: ["first", "last", "another"]) + @fusion__field(schema: A) + @fusion__field(schema: B) + @fusion__listSize(schema: A, slicingArguments: ["first", "last"]) + @fusion__listSize(schema: B, slicingArguments: ["first", "last", "another"]) } """, modifySchema: s_removeListSizeDirective); @@ -231,30 +221,28 @@ type Query { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) - @fusion__type(schema: B) { - field1: [Int] - @listSize(sizedFields: ["edges", "nodes"]) - @fusion__field(schema: A) - @fusion__field(schema: B) - @fusion__listSize(schema: A) - @fusion__listSize(schema: B, sizedFields: ["edges", "nodes"]) - field2: [Int] - @listSize(sizedFields: ["edges", "nodes"]) - @fusion__field(schema: A) - @fusion__field(schema: B) - @fusion__listSize(schema: A, sizedFields: null) - @fusion__listSize(schema: B, sizedFields: ["edges", "nodes"]) - field3: [Int] - @listSize(sizedFields: ["edges", "nodes", "another"]) - @fusion__field(schema: A) - @fusion__field(schema: B) - @fusion__listSize(schema: A, sizedFields: ["edges", "nodes"]) - @fusion__listSize(schema: B, sizedFields: ["edges", "nodes", "another"]) + type Query @fusion__type(schema: A) @fusion__type(schema: B) { + field1: [Int] + @listSize(sizedFields: ["edges", "nodes"]) + @fusion__field(schema: A) + @fusion__field(schema: B) + @fusion__listSize(schema: A) + @fusion__listSize(schema: B, sizedFields: ["edges", "nodes"]) + field2: [Int] + @listSize(sizedFields: ["edges", "nodes"]) + @fusion__field(schema: A) + @fusion__field(schema: B) + @fusion__listSize(schema: A, sizedFields: null) + @fusion__listSize(schema: B, sizedFields: ["edges", "nodes"]) + field3: [Int] + @listSize(sizedFields: ["edges", "nodes", "another"]) + @fusion__field(schema: A) + @fusion__field(schema: B) + @fusion__listSize(schema: A, sizedFields: ["edges", "nodes"]) + @fusion__listSize(schema: B, sizedFields: ["edges", "nodes", "another"]) } """, modifySchema: s_removeListSizeDirective); @@ -291,36 +279,34 @@ type Query { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) - @fusion__type(schema: B) { - field1: [Int] - @listSize(requireOneSlicingArgument: true) - @fusion__field(schema: A) - @fusion__field(schema: B) - @fusion__listSize(schema: A) - @fusion__listSize(schema: B, requireOneSlicingArgument: true) - field2: [Int] - @listSize(requireOneSlicingArgument: true) - @fusion__field(schema: A) - @fusion__field(schema: B) - @fusion__listSize(schema: A, requireOneSlicingArgument: null) - @fusion__listSize(schema: B, requireOneSlicingArgument: true) - field3: [Int] - @listSize(requireOneSlicingArgument: true) - @fusion__field(schema: A) - @fusion__field(schema: B) - @fusion__listSize(schema: A, requireOneSlicingArgument: true) - @fusion__listSize(schema: B, requireOneSlicingArgument: false) - field4: [Int] - @listSize(requireOneSlicingArgument: false) - @fusion__field(schema: A) - @fusion__field(schema: B) - @fusion__listSize(schema: A, requireOneSlicingArgument: false) - @fusion__listSize(schema: B, requireOneSlicingArgument: false) + type Query @fusion__type(schema: A) @fusion__type(schema: B) { + field1: [Int] + @listSize(requireOneSlicingArgument: true) + @fusion__field(schema: A) + @fusion__field(schema: B) + @fusion__listSize(schema: A) + @fusion__listSize(schema: B, requireOneSlicingArgument: true) + field2: [Int] + @listSize(requireOneSlicingArgument: true) + @fusion__field(schema: A) + @fusion__field(schema: B) + @fusion__listSize(schema: A, requireOneSlicingArgument: null) + @fusion__listSize(schema: B, requireOneSlicingArgument: true) + field3: [Int] + @listSize(requireOneSlicingArgument: true) + @fusion__field(schema: A) + @fusion__field(schema: B) + @fusion__listSize(schema: A, requireOneSlicingArgument: true) + @fusion__listSize(schema: B, requireOneSlicingArgument: false) + field4: [Int] + @listSize(requireOneSlicingArgument: false) + @fusion__field(schema: A) + @fusion__field(schema: B) + @fusion__listSize(schema: A, requireOneSlicingArgument: false) + @fusion__listSize(schema: B, requireOneSlicingArgument: false) } """, modifySchema: s_removeListSizeDirective); @@ -355,30 +341,28 @@ type Query { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) - @fusion__type(schema: B) { - field1: [Int] - @listSize(slicingArgumentDefaultValue: 5) - @fusion__field(schema: A) - @fusion__field(schema: B) - @fusion__listSize(schema: A) - @fusion__listSize(schema: B, slicingArgumentDefaultValue: 5) - field2: [Int] - @listSize(slicingArgumentDefaultValue: 5) - @fusion__field(schema: A) - @fusion__field(schema: B) - @fusion__listSize(schema: A, slicingArgumentDefaultValue: null) - @fusion__listSize(schema: B, slicingArgumentDefaultValue: 5) - field3: [Int] - @listSize(slicingArgumentDefaultValue: 10) - @fusion__field(schema: A) - @fusion__field(schema: B) - @fusion__listSize(schema: A, slicingArgumentDefaultValue: 10) - @fusion__listSize(schema: B, slicingArgumentDefaultValue: 5) + type Query @fusion__type(schema: A) @fusion__type(schema: B) { + field1: [Int] + @listSize(slicingArgumentDefaultValue: 5) + @fusion__field(schema: A) + @fusion__field(schema: B) + @fusion__listSize(schema: A) + @fusion__listSize(schema: B, slicingArgumentDefaultValue: 5) + field2: [Int] + @listSize(slicingArgumentDefaultValue: 5) + @fusion__field(schema: A) + @fusion__field(schema: B) + @fusion__listSize(schema: A, slicingArgumentDefaultValue: null) + @fusion__listSize(schema: B, slicingArgumentDefaultValue: 5) + field3: [Int] + @listSize(slicingArgumentDefaultValue: 10) + @fusion__field(schema: A) + @fusion__field(schema: B) + @fusion__listSize(schema: A, slicingArgumentDefaultValue: 10) + @fusion__listSize(schema: B, slicingArgumentDefaultValue: 5) } """, modifySchema: s_removeListSizeDirective); diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.McpToolAnnotationsDirective.Tests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.McpToolAnnotationsDirective.Tests.cs index 27d57f65d1b..9b8bc49e165 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.McpToolAnnotationsDirective.Tests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.McpToolAnnotationsDirective.Tests.cs @@ -35,19 +35,21 @@ directive @mcpToolAnnotations( ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) - @fusion__type(schema: B) { - field: Int - @mcpToolAnnotations(openWorldHint: false) - @fusion__field(schema: A) - @fusion__field(schema: B) + type Query @fusion__type(schema: A) @fusion__type(schema: B) { + field: Int + @mcpToolAnnotations(openWorldHint: false) + @fusion__field(schema: A) + @fusion__field(schema: B) } - directive @mcpToolAnnotations(destructiveHint: Boolean idempotentHint: Boolean openWorldHint: Boolean) on FIELD_DEFINITION + directive @mcpToolAnnotations( + destructiveHint: Boolean + idempotentHint: Boolean + openWorldHint: Boolean + ) on FIELD_DEFINITION """); } @@ -77,15 +79,11 @@ directive @mcpToolAnnotations on FIELD_DEFINITION ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) - @fusion__type(schema: B) { - field: Int - @fusion__field(schema: A) - @fusion__field(schema: B) + type Query @fusion__type(schema: A) @fusion__type(schema: B) { + field: Int @fusion__field(schema: A) @fusion__field(schema: B) } """); } @@ -134,37 +132,37 @@ directive @mcpToolAnnotations( ], """ schema { - query: Query - mutation: Mutation + query: Query + mutation: Mutation } - type Query - @fusion__type(schema: A) - @fusion__type(schema: B) { - field1: Int - @mcpToolAnnotations - @fusion__field(schema: A) - @fusion__field(schema: B) - field2: Int - @mcpToolAnnotations - @fusion__field(schema: A) - @fusion__field(schema: B) + type Query @fusion__type(schema: A) @fusion__type(schema: B) { + field1: Int + @mcpToolAnnotations + @fusion__field(schema: A) + @fusion__field(schema: B) + field2: Int + @mcpToolAnnotations + @fusion__field(schema: A) + @fusion__field(schema: B) } - type Mutation - @fusion__type(schema: A) - @fusion__type(schema: B) { - field1: Int - @mcpToolAnnotations - @fusion__field(schema: A) - @fusion__field(schema: B) - field2: Int - @mcpToolAnnotations - @fusion__field(schema: A) - @fusion__field(schema: B) + type Mutation @fusion__type(schema: A) @fusion__type(schema: B) { + field1: Int + @mcpToolAnnotations + @fusion__field(schema: A) + @fusion__field(schema: B) + field2: Int + @mcpToolAnnotations + @fusion__field(schema: A) + @fusion__field(schema: B) } - directive @mcpToolAnnotations(destructiveHint: Boolean idempotentHint: Boolean openWorldHint: Boolean) on FIELD_DEFINITION + directive @mcpToolAnnotations( + destructiveHint: Boolean + idempotentHint: Boolean + openWorldHint: Boolean + ) on FIELD_DEFINITION """); } @@ -224,61 +222,61 @@ directive @mcpToolAnnotations( ], """ schema { - query: Query - mutation: Mutation + query: Query + mutation: Mutation } - type Query - @fusion__type(schema: A) - @fusion__type(schema: B) { - destructiveFalseAndFalse: Int - @mcpToolAnnotations(destructiveHint: false) - @fusion__field(schema: A) - @fusion__field(schema: B) - destructiveFalseAndNull: Int - @mcpToolAnnotations(destructiveHint: false) - @fusion__field(schema: A) - @fusion__field(schema: B) - destructiveNullAndNull: Int - @mcpToolAnnotations - @fusion__field(schema: A) - @fusion__field(schema: B) - destructiveTrueAndNull: Int - @mcpToolAnnotations(destructiveHint: true) - @fusion__field(schema: A) - @fusion__field(schema: B) - destructiveTrueAndTrue: Int - @mcpToolAnnotations(destructiveHint: true) - @fusion__field(schema: A) - @fusion__field(schema: B) + type Query @fusion__type(schema: A) @fusion__type(schema: B) { + destructiveFalseAndFalse: Int + @mcpToolAnnotations(destructiveHint: false) + @fusion__field(schema: A) + @fusion__field(schema: B) + destructiveFalseAndNull: Int + @mcpToolAnnotations(destructiveHint: false) + @fusion__field(schema: A) + @fusion__field(schema: B) + destructiveNullAndNull: Int + @mcpToolAnnotations + @fusion__field(schema: A) + @fusion__field(schema: B) + destructiveTrueAndNull: Int + @mcpToolAnnotations(destructiveHint: true) + @fusion__field(schema: A) + @fusion__field(schema: B) + destructiveTrueAndTrue: Int + @mcpToolAnnotations(destructiveHint: true) + @fusion__field(schema: A) + @fusion__field(schema: B) } - type Mutation - @fusion__type(schema: A) - @fusion__type(schema: B) { - destructiveFalseAndFalse: Int - @mcpToolAnnotations(destructiveHint: false) - @fusion__field(schema: A) - @fusion__field(schema: B) - destructiveFalseAndNull: Int - @mcpToolAnnotations(destructiveHint: true) - @fusion__field(schema: A) - @fusion__field(schema: B) - destructiveNullAndNull: Int - @mcpToolAnnotations - @fusion__field(schema: A) - @fusion__field(schema: B) - destructiveTrueAndNull: Int - @mcpToolAnnotations(destructiveHint: true) - @fusion__field(schema: A) - @fusion__field(schema: B) - destructiveTrueAndTrue: Int - @mcpToolAnnotations(destructiveHint: true) - @fusion__field(schema: A) - @fusion__field(schema: B) + type Mutation @fusion__type(schema: A) @fusion__type(schema: B) { + destructiveFalseAndFalse: Int + @mcpToolAnnotations(destructiveHint: false) + @fusion__field(schema: A) + @fusion__field(schema: B) + destructiveFalseAndNull: Int + @mcpToolAnnotations(destructiveHint: true) + @fusion__field(schema: A) + @fusion__field(schema: B) + destructiveNullAndNull: Int + @mcpToolAnnotations + @fusion__field(schema: A) + @fusion__field(schema: B) + destructiveTrueAndNull: Int + @mcpToolAnnotations(destructiveHint: true) + @fusion__field(schema: A) + @fusion__field(schema: B) + destructiveTrueAndTrue: Int + @mcpToolAnnotations(destructiveHint: true) + @fusion__field(schema: A) + @fusion__field(schema: B) } - directive @mcpToolAnnotations(destructiveHint: Boolean idempotentHint: Boolean openWorldHint: Boolean) on FIELD_DEFINITION + directive @mcpToolAnnotations( + destructiveHint: Boolean + idempotentHint: Boolean + openWorldHint: Boolean + ) on FIELD_DEFINITION """); } @@ -338,61 +336,61 @@ directive @mcpToolAnnotations( ], """ schema { - query: Query - mutation: Mutation + query: Query + mutation: Mutation } - type Query - @fusion__type(schema: A) - @fusion__type(schema: B) { - idempotentFalseAndFalse: Int - @mcpToolAnnotations(idempotentHint: false) - @fusion__field(schema: A) - @fusion__field(schema: B) - idempotentFalseAndNull: Int - @mcpToolAnnotations(idempotentHint: false) - @fusion__field(schema: A) - @fusion__field(schema: B) - idempotentNullAndNull: Int - @mcpToolAnnotations - @fusion__field(schema: A) - @fusion__field(schema: B) - idempotentTrueAndNull: Int - @mcpToolAnnotations(idempotentHint: true) - @fusion__field(schema: A) - @fusion__field(schema: B) - idempotentTrueAndTrue: Int - @mcpToolAnnotations(idempotentHint: true) - @fusion__field(schema: A) - @fusion__field(schema: B) + type Query @fusion__type(schema: A) @fusion__type(schema: B) { + idempotentFalseAndFalse: Int + @mcpToolAnnotations(idempotentHint: false) + @fusion__field(schema: A) + @fusion__field(schema: B) + idempotentFalseAndNull: Int + @mcpToolAnnotations(idempotentHint: false) + @fusion__field(schema: A) + @fusion__field(schema: B) + idempotentNullAndNull: Int + @mcpToolAnnotations + @fusion__field(schema: A) + @fusion__field(schema: B) + idempotentTrueAndNull: Int + @mcpToolAnnotations(idempotentHint: true) + @fusion__field(schema: A) + @fusion__field(schema: B) + idempotentTrueAndTrue: Int + @mcpToolAnnotations(idempotentHint: true) + @fusion__field(schema: A) + @fusion__field(schema: B) } - type Mutation - @fusion__type(schema: A) - @fusion__type(schema: B) { - idempotentFalseAndFalse: Int - @mcpToolAnnotations(idempotentHint: false) - @fusion__field(schema: A) - @fusion__field(schema: B) - idempotentFalseAndNull: Int - @mcpToolAnnotations(idempotentHint: false) - @fusion__field(schema: A) - @fusion__field(schema: B) - idempotentNullAndNull: Int - @mcpToolAnnotations - @fusion__field(schema: A) - @fusion__field(schema: B) - idempotentTrueAndNull: Int - @mcpToolAnnotations(idempotentHint: false) - @fusion__field(schema: A) - @fusion__field(schema: B) - idempotentTrueAndTrue: Int - @mcpToolAnnotations(idempotentHint: true) - @fusion__field(schema: A) - @fusion__field(schema: B) + type Mutation @fusion__type(schema: A) @fusion__type(schema: B) { + idempotentFalseAndFalse: Int + @mcpToolAnnotations(idempotentHint: false) + @fusion__field(schema: A) + @fusion__field(schema: B) + idempotentFalseAndNull: Int + @mcpToolAnnotations(idempotentHint: false) + @fusion__field(schema: A) + @fusion__field(schema: B) + idempotentNullAndNull: Int + @mcpToolAnnotations + @fusion__field(schema: A) + @fusion__field(schema: B) + idempotentTrueAndNull: Int + @mcpToolAnnotations(idempotentHint: false) + @fusion__field(schema: A) + @fusion__field(schema: B) + idempotentTrueAndTrue: Int + @mcpToolAnnotations(idempotentHint: true) + @fusion__field(schema: A) + @fusion__field(schema: B) } - directive @mcpToolAnnotations(destructiveHint: Boolean idempotentHint: Boolean openWorldHint: Boolean) on FIELD_DEFINITION + directive @mcpToolAnnotations( + destructiveHint: Boolean + idempotentHint: Boolean + openWorldHint: Boolean + ) on FIELD_DEFINITION """); } @@ -452,61 +450,61 @@ directive @mcpToolAnnotations( ], """ schema { - query: Query - mutation: Mutation + query: Query + mutation: Mutation } - type Query - @fusion__type(schema: A) - @fusion__type(schema: B) { - openWorldFalseAndFalse: Int - @mcpToolAnnotations(openWorldHint: false) - @fusion__field(schema: A) - @fusion__field(schema: B) - openWorldFalseAndNull: Int - @mcpToolAnnotations(openWorldHint: true) - @fusion__field(schema: A) - @fusion__field(schema: B) - openWorldNullAndNull: Int - @mcpToolAnnotations - @fusion__field(schema: A) - @fusion__field(schema: B) - openWorldTrueAndNull: Int - @mcpToolAnnotations(openWorldHint: true) - @fusion__field(schema: A) - @fusion__field(schema: B) - openWorldTrueAndTrue: Int - @mcpToolAnnotations(openWorldHint: true) - @fusion__field(schema: A) - @fusion__field(schema: B) + type Query @fusion__type(schema: A) @fusion__type(schema: B) { + openWorldFalseAndFalse: Int + @mcpToolAnnotations(openWorldHint: false) + @fusion__field(schema: A) + @fusion__field(schema: B) + openWorldFalseAndNull: Int + @mcpToolAnnotations(openWorldHint: true) + @fusion__field(schema: A) + @fusion__field(schema: B) + openWorldNullAndNull: Int + @mcpToolAnnotations + @fusion__field(schema: A) + @fusion__field(schema: B) + openWorldTrueAndNull: Int + @mcpToolAnnotations(openWorldHint: true) + @fusion__field(schema: A) + @fusion__field(schema: B) + openWorldTrueAndTrue: Int + @mcpToolAnnotations(openWorldHint: true) + @fusion__field(schema: A) + @fusion__field(schema: B) } - type Mutation - @fusion__type(schema: A) - @fusion__type(schema: B) { - openWorldFalseAndFalse: Int - @mcpToolAnnotations(openWorldHint: false) - @fusion__field(schema: A) - @fusion__field(schema: B) - openWorldFalseAndNull: Int - @mcpToolAnnotations(openWorldHint: true) - @fusion__field(schema: A) - @fusion__field(schema: B) - openWorldNullAndNull: Int - @mcpToolAnnotations - @fusion__field(schema: A) - @fusion__field(schema: B) - openWorldTrueAndNull: Int - @mcpToolAnnotations(openWorldHint: true) - @fusion__field(schema: A) - @fusion__field(schema: B) - openWorldTrueAndTrue: Int - @mcpToolAnnotations(openWorldHint: true) - @fusion__field(schema: A) - @fusion__field(schema: B) + type Mutation @fusion__type(schema: A) @fusion__type(schema: B) { + openWorldFalseAndFalse: Int + @mcpToolAnnotations(openWorldHint: false) + @fusion__field(schema: A) + @fusion__field(schema: B) + openWorldFalseAndNull: Int + @mcpToolAnnotations(openWorldHint: true) + @fusion__field(schema: A) + @fusion__field(schema: B) + openWorldNullAndNull: Int + @mcpToolAnnotations + @fusion__field(schema: A) + @fusion__field(schema: B) + openWorldTrueAndNull: Int + @mcpToolAnnotations(openWorldHint: true) + @fusion__field(schema: A) + @fusion__field(schema: B) + openWorldTrueAndTrue: Int + @mcpToolAnnotations(openWorldHint: true) + @fusion__field(schema: A) + @fusion__field(schema: B) } - directive @mcpToolAnnotations(destructiveHint: Boolean idempotentHint: Boolean openWorldHint: Boolean) on FIELD_DEFINITION + directive @mcpToolAnnotations( + destructiveHint: Boolean + idempotentHint: Boolean + openWorldHint: Boolean + ) on FIELD_DEFINITION """); } } diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Object.Tests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Object.Tests.cs index a5947ba6853..b66d88f7d84 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Object.Tests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Object.Tests.cs @@ -26,16 +26,10 @@ type Product @key(fields: "id") { """ ], """ - type Product - @fusion__type(schema: A) - @fusion__type(schema: B) { - id: ID! - @fusion__field(schema: A) - @fusion__field(schema: B) - name: String - @fusion__field(schema: A) - price: Int - @fusion__field(schema: B) + type Product @fusion__type(schema: A) @fusion__type(schema: B) { + id: ID! @fusion__field(schema: A) @fusion__field(schema: B) + name: String @fusion__field(schema: A) + price: Int @fusion__field(schema: B) } """); } @@ -70,14 +64,9 @@ type Order @key(fields: "id") { ], """ "First Description" - type Order - @fusion__type(schema: A) - @fusion__type(schema: B) { - id: ID! - @fusion__field(schema: A) - @fusion__field(schema: B) - total: Float - @fusion__field(schema: B) + type Order @fusion__type(schema: A) @fusion__type(schema: B) { + id: ID! @fusion__field(schema: A) @fusion__field(schema: B) + total: Float @fusion__field(schema: B) } """); } @@ -105,12 +94,9 @@ type Product @key(fields: "id") @internal { """ ], """ - type Product - @fusion__type(schema: A) { - id: ID! - @fusion__field(schema: A) - name: String - @fusion__field(schema: A) + type Product @fusion__type(schema: A) { + id: ID! @fusion__field(schema: A) + name: String @fusion__field(schema: A) } """); } @@ -137,12 +123,10 @@ type Product @inaccessible { ], """ type Product - @fusion__type(schema: A) - @fusion__type(schema: B) - @fusion__inaccessible { - id: ID! - @fusion__field(schema: A) - @fusion__field(schema: B) + @fusion__type(schema: A) + @fusion__type(schema: B) + @fusion__inaccessible { + id: ID! @fusion__field(schema: A) @fusion__field(schema: B) } """); } @@ -187,37 +171,27 @@ type Product implements I1 & I2 & I3 { ], """ type Product implements I1 & I3 - @fusion__type(schema: A) - @fusion__type(schema: B) - @fusion__implements(schema: A, interface: "I1") - @fusion__implements(schema: B, interface: "I1") - @fusion__implements(schema: B, interface: "I3") { - id: ID! - @fusion__field(schema: A) - @fusion__field(schema: B) + @fusion__type(schema: A) + @fusion__type(schema: B) + @fusion__implements(schema: A, interface: "I1") + @fusion__implements(schema: B, interface: "I1") + @fusion__implements(schema: B, interface: "I3") { + id: ID! @fusion__field(schema: A) @fusion__field(schema: B) } - interface I1 - @fusion__type(schema: A) - @fusion__type(schema: B) { - id: ID! - @fusion__field(schema: A) - @fusion__field(schema: B) + interface I1 @fusion__type(schema: A) @fusion__type(schema: B) { + id: ID! @fusion__field(schema: A) @fusion__field(schema: B) } interface I2 - @fusion__type(schema: A) - @fusion__type(schema: B) - @fusion__inaccessible { - id: ID! - @fusion__field(schema: A) - @fusion__field(schema: B) + @fusion__type(schema: A) + @fusion__type(schema: B) + @fusion__inaccessible { + id: ID! @fusion__field(schema: A) @fusion__field(schema: B) } - interface I3 - @fusion__type(schema: B) { - id: ID! - @fusion__field(schema: B) + interface I3 @fusion__type(schema: B) { + id: ID! @fusion__field(schema: B) } """); } @@ -244,29 +218,23 @@ type Product @key(fields: "id") @key(fields: "name") { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) { - productById(id: ID! - @fusion__inputField(schema: A)): Product - @fusion__field(schema: A) - productByName(name: String! - @fusion__inputField(schema: A)): Product - @fusion__field(schema: A) - version: Int - @fusion__field(schema: A) + type Query @fusion__type(schema: A) { + productById(id: ID! @fusion__inputField(schema: A)): Product + @fusion__field(schema: A) + productByName(name: String! @fusion__inputField(schema: A)): Product + @fusion__field(schema: A) + version: Int @fusion__field(schema: A) } type Product - @fusion__type(schema: A) - @fusion__lookup(schema: A, key: "id", field: "productById(id: ID!): Product", map: ["id"], path: null, internal: false) - @fusion__lookup(schema: A, key: "name", field: "productByName(name: String!): Product", map: ["name"], path: null, internal: false) { - id: ID! - @fusion__field(schema: A) - name: String! - @fusion__field(schema: A) + @fusion__type(schema: A) + @fusion__lookup(schema: A, key: "id", field: "productById(id: ID!): Product", map: ["id"], path: null, internal: false) + @fusion__lookup(schema: A, key: "name", field: "productByName(name: String!): Product", map: ["name"], path: null, internal: false) { + id: ID! @fusion__field(schema: A) + name: String! @fusion__field(schema: A) } """); } @@ -298,40 +266,32 @@ type ProductPrice @key(fields: "regionName product { id }") { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) { - productById(id: ID! - @fusion__inputField(schema: A)): Product - @fusion__field(schema: A) - productBySku(sku: String! - @fusion__inputField(schema: A)): Product - @fusion__field(schema: A) + type Query @fusion__type(schema: A) { + productById(id: ID! @fusion__inputField(schema: A)): Product + @fusion__field(schema: A) + productBySku(sku: String! @fusion__inputField(schema: A)): Product + @fusion__field(schema: A) } type Product - @fusion__type(schema: A) - @fusion__lookup(schema: A, key: "id", field: "productById(id: ID!): Product", map: ["id"], path: null, internal: false) - @fusion__lookup(schema: A, key: "sku", field: "productBySku(sku: String!): Product", map: ["sku"], path: null, internal: false) { - id: ID! - @fusion__field(schema: A) - price(regionName: String! - @fusion__inputField(schema: A)): ProductPrice - @fusion__field(schema: A) + @fusion__type(schema: A) + @fusion__lookup(schema: A, key: "id", field: "productById(id: ID!): Product", map: ["id"], path: null, internal: false) + @fusion__lookup(schema: A, key: "sku", field: "productBySku(sku: String!): Product", map: ["sku"], path: null, internal: false) { + id: ID! @fusion__field(schema: A) + price(regionName: String! @fusion__inputField(schema: A)): ProductPrice + @fusion__field(schema: A) } type ProductPrice - @fusion__type(schema: A) - @fusion__lookup(schema: A, key: "regionName", field: "price(regionName: String!): ProductPrice", map: ["regionName"], path: "productById", internal: false) - @fusion__lookup(schema: A, key: "regionName", field: "price(regionName: String!): ProductPrice", map: ["regionName"], path: "productBySku", internal: false) { - product: Product - @fusion__field(schema: A) - regionName: String! - @fusion__field(schema: A) - value: Float! - @fusion__field(schema: A) + @fusion__type(schema: A) + @fusion__lookup(schema: A, key: "regionName", field: "price(regionName: String!): ProductPrice", map: ["regionName"], path: "productById", internal: false) + @fusion__lookup(schema: A, key: "regionName", field: "price(regionName: String!): ProductPrice", map: ["regionName"], path: "productBySku", internal: false) { + product: Product @fusion__field(schema: A) + regionName: String! @fusion__field(schema: A) + value: Float! @fusion__field(schema: A) } """); } @@ -365,41 +325,32 @@ type Product @key(fields: "id") { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) { - lookups1: Lookups1! - @fusion__field(schema: A) - productById(id: ID! - @fusion__inputField(schema: A)): Product - @fusion__field(schema: A) + type Query @fusion__type(schema: A) { + lookups1: Lookups1! @fusion__field(schema: A) + productById(id: ID! @fusion__inputField(schema: A)): Product + @fusion__field(schema: A) } - type Lookups1 - @fusion__type(schema: A) { - lookups2: Lookups2! - @fusion__field(schema: A) - productBySku(sku: String! - @fusion__inputField(schema: A)): Product - @fusion__field(schema: A) + type Lookups1 @fusion__type(schema: A) { + lookups2: Lookups2! @fusion__field(schema: A) + productBySku(sku: String! @fusion__inputField(schema: A)): Product + @fusion__field(schema: A) } - type Lookups2 - @fusion__type(schema: A) { - productByName(name: String! - @fusion__inputField(schema: A)): Product - @fusion__field(schema: A) + type Lookups2 @fusion__type(schema: A) { + productByName(name: String! @fusion__inputField(schema: A)): Product + @fusion__field(schema: A) } type Product - @fusion__type(schema: A) - @fusion__lookup(schema: A, key: "id", field: "productById(id: ID!): Product", map: ["id"], path: null, internal: false) - @fusion__lookup(schema: A, key: "sku", field: "productBySku(sku: String!): Product", map: ["sku"], path: "lookups1", internal: false) - @fusion__lookup(schema: A, key: "name", field: "productByName(name: String!): Product", map: ["name"], path: "lookups1.lookups2", internal: false) { - id: ID! - @fusion__field(schema: A) + @fusion__type(schema: A) + @fusion__lookup(schema: A, key: "id", field: "productById(id: ID!): Product", map: ["id"], path: null, internal: false) + @fusion__lookup(schema: A, key: "sku", field: "productBySku(sku: String!): Product", map: ["sku"], path: "lookups1", internal: false) + @fusion__lookup(schema: A, key: "name", field: "productByName(name: String!): Product", map: ["name"], path: "lookups1.lookups2", internal: false) { + id: ID! @fusion__field(schema: A) } """); } @@ -428,29 +379,23 @@ type Address { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) { - personByAddressId(id: ID! - @fusion__inputField(schema: A)): Person - @fusion__field(schema: A) + type Query @fusion__type(schema: A) { + personByAddressId(id: ID! @fusion__inputField(schema: A)): Person + @fusion__field(schema: A) } - type Address - @fusion__type(schema: A) { - id: ID! - @fusion__field(schema: A) + type Address @fusion__type(schema: A) { + id: ID! @fusion__field(schema: A) } type Person - @fusion__type(schema: A) - @fusion__lookup(schema: A, key: "address { id }", field: "personByAddressId(id: ID!): Person", map: ["address.id"], path: null, internal: false) { - address: Address - @fusion__field(schema: A) - id: ID! - @fusion__field(schema: A) + @fusion__type(schema: A) + @fusion__lookup(schema: A, key: "address { id }", field: "personByAddressId(id: ID!): Person", map: ["address.id"], path: null, internal: false) { + address: Address @fusion__field(schema: A) + id: ID! @fusion__field(schema: A) } """); } @@ -484,29 +429,23 @@ type Person @key(fields: "sku") { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) - @fusion__type(schema: B) { - personById(id: ID! - @fusion__inputField(schema: A)): Person - @fusion__field(schema: A) - personBySku(sku: String! - @fusion__inputField(schema: B)): Person - @fusion__field(schema: B) + type Query @fusion__type(schema: A) @fusion__type(schema: B) { + personById(id: ID! @fusion__inputField(schema: A)): Person + @fusion__field(schema: A) + personBySku(sku: String! @fusion__inputField(schema: B)): Person + @fusion__field(schema: B) } type Person - @fusion__type(schema: A) - @fusion__type(schema: B) - @fusion__lookup(schema: A, key: "id", field: "personById(id: ID!): Person", map: ["id"], path: null, internal: false) - @fusion__lookup(schema: B, key: "sku", field: "personBySku(sku: String!): Person", map: ["sku"], path: null, internal: false) { - id: ID! - @fusion__field(schema: A) - sku: String! - @fusion__field(schema: B) + @fusion__type(schema: A) + @fusion__type(schema: B) + @fusion__lookup(schema: A, key: "id", field: "personById(id: ID!): Person", map: ["id"], path: null, internal: false) + @fusion__lookup(schema: B, key: "sku", field: "personBySku(sku: String!): Person", map: ["sku"], path: null, internal: false) { + id: ID! @fusion__field(schema: A) + sku: String! @fusion__field(schema: B) } """); } @@ -530,24 +469,21 @@ type Product { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) { - productByIdAndCategoryId(categoryId: Int - @fusion__inputField(schema: A) id: ID! - @fusion__inputField(schema: A)): Product! - @fusion__field(schema: A) + type Query @fusion__type(schema: A) { + productByIdAndCategoryId( + categoryId: Int @fusion__inputField(schema: A) + id: ID! @fusion__inputField(schema: A) + ): Product! @fusion__field(schema: A) } type Product - @fusion__type(schema: A) - @fusion__lookup(schema: A, key: "id categoryId", field: "productByIdAndCategoryId(id: ID! categoryId: Int): Product!", map: ["id", "categoryId"], path: null, internal: false) { - categoryId: Int - @fusion__field(schema: A) - id: ID! - @fusion__field(schema: A) + @fusion__type(schema: A) + @fusion__lookup(schema: A, key: "id categoryId", field: "productByIdAndCategoryId(id: ID! categoryId: Int): Product!", map: ["id", "categoryId"], path: null, internal: false) { + categoryId: Int @fusion__field(schema: A) + id: ID! @fusion__field(schema: A) } """); } @@ -593,60 +529,46 @@ input BrandByInput2 @oneOf { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) { - brand1(by: BrandByInput1! - @fusion__inputField(schema: A)): Brand - @fusion__field(schema: A) - brand2(and: BrandByInput1! - @fusion__inputField(schema: A) name: String! - @fusion__inputField(schema: A)): Brand - @fusion__field(schema: A) - brand3(and: BrandByInput2! - @fusion__inputField(schema: A) by: BrandByInput1! - @fusion__inputField(schema: A)): Brand - @fusion__field(schema: A) + type Query @fusion__type(schema: A) { + brand1(by: BrandByInput1! @fusion__inputField(schema: A)): Brand + @fusion__field(schema: A) + brand2( + and: BrandByInput1! @fusion__inputField(schema: A) + name: String! @fusion__inputField(schema: A) + ): Brand @fusion__field(schema: A) + brand3( + and: BrandByInput2! @fusion__inputField(schema: A) + by: BrandByInput1! @fusion__inputField(schema: A) + ): Brand @fusion__field(schema: A) } type Brand - @fusion__type(schema: A) - @fusion__lookup(schema: A, key: "id", field: "brand1(by: BrandByInput1!): Brand", map: ["{ id }"], path: null, internal: false) - @fusion__lookup(schema: A, key: "key", field: "brand1(by: BrandByInput1!): Brand", map: ["{ key }"], path: null, internal: false) - @fusion__lookup(schema: A, key: "name id", field: "brand2(name: String! and: BrandByInput1!): Brand", map: ["name", "{ id }"], path: null, internal: false) - @fusion__lookup(schema: A, key: "name key", field: "brand2(name: String! and: BrandByInput1!): Brand", map: ["name", "{ key }"], path: null, internal: false) - @fusion__lookup(schema: A, key: "id name", field: "brand3(by: BrandByInput1! and: BrandByInput2!): Brand", map: ["{ id }", "{ name }"], path: null, internal: false) - @fusion__lookup(schema: A, key: "key name", field: "brand3(by: BrandByInput1! and: BrandByInput2!): Brand", map: ["{ key }", "{ name }"], path: null, internal: false) - @fusion__lookup(schema: A, key: "id title", field: "brand3(by: BrandByInput1! and: BrandByInput2!): Brand", map: ["{ id }", "{ title }"], path: null, internal: false) - @fusion__lookup(schema: A, key: "key title", field: "brand3(by: BrandByInput1! and: BrandByInput2!): Brand", map: ["{ key }", "{ title }"], path: null, internal: false) { - id: Int! - @fusion__field(schema: A) - key: String! - @fusion__field(schema: A) - name: String! - @fusion__field(schema: A) - title: String - @fusion__field(schema: A) - } - - input BrandByInput1 - @oneOf - @fusion__type(schema: A) { - id: Int - @fusion__inputField(schema: A) - key: String - @fusion__inputField(schema: A) - } - - input BrandByInput2 - @oneOf - @fusion__type(schema: A) { - name: String - @fusion__inputField(schema: A) - title: String - @fusion__inputField(schema: A) + @fusion__type(schema: A) + @fusion__lookup(schema: A, key: "id", field: "brand1(by: BrandByInput1!): Brand", map: ["{ id }"], path: null, internal: false) + @fusion__lookup(schema: A, key: "key", field: "brand1(by: BrandByInput1!): Brand", map: ["{ key }"], path: null, internal: false) + @fusion__lookup(schema: A, key: "name id", field: "brand2(name: String! and: BrandByInput1!): Brand", map: ["name", "{ id }"], path: null, internal: false) + @fusion__lookup(schema: A, key: "name key", field: "brand2(name: String! and: BrandByInput1!): Brand", map: ["name", "{ key }"], path: null, internal: false) + @fusion__lookup(schema: A, key: "id name", field: "brand3(by: BrandByInput1! and: BrandByInput2!): Brand", map: ["{ id }", "{ name }"], path: null, internal: false) + @fusion__lookup(schema: A, key: "key name", field: "brand3(by: BrandByInput1! and: BrandByInput2!): Brand", map: ["{ key }", "{ name }"], path: null, internal: false) + @fusion__lookup(schema: A, key: "id title", field: "brand3(by: BrandByInput1! and: BrandByInput2!): Brand", map: ["{ id }", "{ title }"], path: null, internal: false) + @fusion__lookup(schema: A, key: "key title", field: "brand3(by: BrandByInput1! and: BrandByInput2!): Brand", map: ["{ key }", "{ title }"], path: null, internal: false) { + id: Int! @fusion__field(schema: A) + key: String! @fusion__field(schema: A) + name: String! @fusion__field(schema: A) + title: String @fusion__field(schema: A) + } + + input BrandByInput1 @oneOf @fusion__type(schema: A) { + id: Int @fusion__inputField(schema: A) + key: String @fusion__inputField(schema: A) + } + + input BrandByInput2 @oneOf @fusion__type(schema: A) { + name: String @fusion__inputField(schema: A) + title: String @fusion__inputField(schema: A) } """); } @@ -670,20 +592,17 @@ type Product @key(fields: "id") { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) { - product: Product - @fusion__field(schema: A) + type Query @fusion__type(schema: A) { + product: Product @fusion__field(schema: A) } type Product - @fusion__type(schema: A) - @fusion__lookup(schema: A, key: "id", field: "productById(id: ID!): Product", map: ["id"], path: null, internal: true) { - id: ID! - @fusion__field(schema: A) + @fusion__type(schema: A) + @fusion__lookup(schema: A, key: "id", field: "productById(id: ID!): Product", map: ["id"], path: null, internal: true) { + id: ID! @fusion__field(schema: A) } """); } @@ -707,22 +626,19 @@ type Product @key(fields: "id") { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) { - "Fetches a product" - productById("The product id" id: ID! - @fusion__inputField(schema: A)): Product - @fusion__field(schema: A) + type Query @fusion__type(schema: A) { + "Fetches a product" + productById("The product id" id: ID! @fusion__inputField(schema: A)): Product + @fusion__field(schema: A) } type Product - @fusion__type(schema: A) - @fusion__lookup(schema: A, key: "id", field: "productById(id: ID!): Product", map: ["id"], path: null, internal: false) { - id: ID! - @fusion__field(schema: A) + @fusion__type(schema: A) + @fusion__lookup(schema: A, key: "id", field: "productById(id: ID!): Product", map: ["id"], path: null, internal: false) { + id: ID! @fusion__field(schema: A) } """); } diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.OneOfDirective.Tests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.OneOfDirective.Tests.cs index 6525c2bac6f..5bb07132673 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.OneOfDirective.Tests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.OneOfDirective.Tests.cs @@ -28,13 +28,8 @@ directive @oneOf on INPUT_OBJECT """ ], """ - input Foo - @oneOf - @fusion__type(schema: A) - @fusion__type(schema: B) { - field: Int - @fusion__inputField(schema: A) - @fusion__inputField(schema: B) + input Foo @oneOf @fusion__type(schema: A) @fusion__type(schema: B) { + field: Int @fusion__inputField(schema: A) @fusion__inputField(schema: B) } """); } @@ -59,13 +54,8 @@ input Foo @oneOf { """ ], """ - input Foo - @oneOf - @fusion__type(schema: A) - @fusion__type(schema: B) { - field: Int - @fusion__inputField(schema: A) - @fusion__inputField(schema: B) + input Foo @oneOf @fusion__type(schema: A) @fusion__type(schema: B) { + field: Int @fusion__inputField(schema: A) @fusion__inputField(schema: B) } """); } @@ -94,12 +84,8 @@ directive @oneOf(id: Int) on INPUT_OBJECT """ ], """ - input Foo - @fusion__type(schema: A) - @fusion__type(schema: B) { - field: Int - @fusion__inputField(schema: A) - @fusion__inputField(schema: B) + input Foo @fusion__type(schema: A) @fusion__type(schema: B) { + field: Int @fusion__inputField(schema: A) @fusion__inputField(schema: B) } """); } diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.OutputField.Tests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.OutputField.Tests.cs index 6634dea1e2b..46388fed720 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.OutputField.Tests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.OutputField.Tests.cs @@ -26,15 +26,11 @@ type Product { """ ], """ - type Product - @fusion__type(schema: A) - @fusion__type(schema: B) { - "Computes a discount as a percentage of the product's list price." - discountPercentage(percent: Int = 10 - @fusion__inputField(schema: A) - @fusion__inputField(schema: B)): Int - @fusion__field(schema: A, sourceType: "Int!") - @fusion__field(schema: B) + type Product @fusion__type(schema: A) @fusion__type(schema: B) { + "Computes a discount as a percentage of the product's list price." + discountPercentage( + percent: Int = 10 @fusion__inputField(schema: A) @fusion__inputField(schema: B) + ): Int @fusion__field(schema: A, sourceType: "Int!") @fusion__field(schema: B) } """); } @@ -60,12 +56,8 @@ type Product { """ ], """ - type Product - @fusion__type(schema: A) - @fusion__type(schema: B) { - discountPercentage: Int - @fusion__field(schema: A) - @fusion__field(schema: B) + type Product @fusion__type(schema: A) @fusion__type(schema: B) { + discountPercentage: Int @fusion__field(schema: A) @fusion__field(schema: B) } """); } @@ -91,15 +83,10 @@ type Product { """ ], """ - type Product - @fusion__type(schema: A) - @fusion__type(schema: B) { - discountPercentage(percent: Int - @fusion__inputField(schema: A) - @fusion__inputField(schema: B) - @fusion__inaccessible): Int - @fusion__field(schema: A) - @fusion__field(schema: B) + type Product @fusion__type(schema: A) @fusion__type(schema: B) { + discountPercentage( + percent: Int @fusion__inputField(schema: A) @fusion__inputField(schema: B) @fusion__inaccessible + ): Int @fusion__field(schema: A) @fusion__field(schema: B) } """); } @@ -126,15 +113,12 @@ type Product { """ ], """ - type Product - @fusion__type(schema: A) - @fusion__type(schema: B) { - discountPercentage: Int - @fusion__field(schema: A) - @fusion__field(schema: B) - @fusion__requires(schema: B, requirements: "percent", field: "discountPercentage(percent: Int): Int", map: ["percent"]) - percent: Int - @fusion__field(schema: A) + type Product @fusion__type(schema: A) @fusion__type(schema: B) { + discountPercentage: Int + @fusion__field(schema: A) + @fusion__field(schema: B) + @fusion__requires(schema: B, requirements: "percent", field: "discountPercentage(percent: Int): Int", map: ["percent"]) + percent: Int @fusion__field(schema: A) } """); } @@ -162,11 +146,8 @@ type Product { """ ], """ - type Product - @fusion__type(schema: A) - @fusion__type(schema: B) { - discountPercentage: Int - @fusion__field(schema: A) + type Product @fusion__type(schema: A) @fusion__type(schema: B) { + discountPercentage: Int @fusion__field(schema: A) } """); } @@ -193,11 +174,8 @@ type Product { """ ], """ - type Product - @fusion__type(schema: A) - @fusion__type(schema: B) { - name: String! - @fusion__field(schema: A) + type Product @fusion__type(schema: A) @fusion__type(schema: B) { + name: String! @fusion__field(schema: A) } """); } @@ -223,13 +201,11 @@ type Product { """ ], """ - type Product - @fusion__type(schema: A) - @fusion__type(schema: B) { - discountPercentage: Int - @fusion__field(schema: A) - @fusion__field(schema: B) - @fusion__inaccessible + type Product @fusion__type(schema: A) @fusion__type(schema: B) { + discountPercentage: Int + @fusion__field(schema: A) + @fusion__field(schema: B) + @fusion__inaccessible } """); } @@ -264,20 +240,16 @@ type Product @key(fields: "id") { ], """ type Product - @fusion__type(schema: A) - @fusion__type(schema: B) - @fusion__type(schema: C) { - id: ID! - @fusion__field(schema: A) - @fusion__field(schema: B, partial: true) - @fusion__field(schema: C, partial: true) - name: String! - @fusion__field(schema: A) - price: Float! - @fusion__field(schema: C) - tax: Float! - @fusion__field(schema: B) - @fusion__field(schema: C) + @fusion__type(schema: A) + @fusion__type(schema: B) + @fusion__type(schema: C) { + id: ID! + @fusion__field(schema: A) + @fusion__field(schema: B, partial: true) + @fusion__field(schema: C, partial: true) + name: String! @fusion__field(schema: A) + price: Float! @fusion__field(schema: C) + tax: Float! @fusion__field(schema: B) @fusion__field(schema: C) } """); } @@ -309,35 +281,24 @@ type Query { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) { - reviews: [Review!] - @fusion__field(schema: A) - users: [User!] - @fusion__field(schema: A) + type Query @fusion__type(schema: A) { + reviews: [Review!] @fusion__field(schema: A) + users: [User!] @fusion__field(schema: A) } - type Review - @fusion__type(schema: A) { - author: User - @fusion__field(schema: A, provides: "email") - body: String! - @fusion__field(schema: A) - id: ID! - @fusion__field(schema: A) + type Review @fusion__type(schema: A) { + author: User @fusion__field(schema: A, provides: "email") + body: String! @fusion__field(schema: A) + id: ID! @fusion__field(schema: A) } - type User - @fusion__type(schema: A) { - email: String! - @fusion__field(schema: A, partial: true) - id: ID! - @fusion__field(schema: A) - name: String! - @fusion__field(schema: A) + type User @fusion__type(schema: A) { + email: String! @fusion__field(schema: A, partial: true) + id: ID! @fusion__field(schema: A) + name: String! @fusion__field(schema: A) } """); } @@ -363,13 +324,11 @@ type Product { """ ], """ - type Product - @fusion__type(schema: A) - @fusion__type(schema: B) { - name: String - @fusion__field(schema: A) - @fusion__field(schema: B) - @deprecated(reason: "Some reason") + type Product @fusion__type(schema: A) @fusion__type(schema: B) { + name: String + @fusion__field(schema: A) + @fusion__field(schema: B) + @deprecated(reason: "Some reason") } """); } @@ -395,13 +354,11 @@ type Product { """ ], """ - type Product - @fusion__type(schema: A) - @fusion__type(schema: B) { - name: String - @fusion__field(schema: A) - @fusion__field(schema: B) - @deprecated(reason: "Some reason") + type Product @fusion__type(schema: A) @fusion__type(schema: B) { + name: String + @fusion__field(schema: A) + @fusion__field(schema: B) + @deprecated(reason: "Some reason") } """); } @@ -427,13 +384,11 @@ type Product { """ ], """ - type Product - @fusion__type(schema: A) - @fusion__type(schema: B) { - name: String - @fusion__field(schema: A) - @fusion__field(schema: B) - @deprecated(reason: "No longer supported.") + type Product @fusion__type(schema: A) @fusion__type(schema: B) { + name: String + @fusion__field(schema: A) + @fusion__field(schema: B) + @deprecated(reason: "No longer supported.") } """); } diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Scalar.Tests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Scalar.Tests.cs index 91d314d922d..b4cf47eec4e 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Scalar.Tests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Scalar.Tests.cs @@ -21,9 +21,7 @@ scalar Date ], """ "A scalar representing a calendar date." - scalar Date - @fusion__type(schema: A) - @fusion__type(schema: B) + scalar Date @fusion__type(schema: A) @fusion__type(schema: B) """); } @@ -71,9 +69,7 @@ scalar Date ], """ "The first non-null description." - scalar Date - @fusion__type(schema: A) - @fusion__type(schema: B) + scalar Date @fusion__type(schema: A) @fusion__type(schema: B) """); } @@ -93,9 +89,7 @@ scalar Date """ ], """ - scalar Date - @fusion__type(schema: A) - @fusion__type(schema: B) + scalar Date @fusion__type(schema: A) @fusion__type(schema: B) """); } diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.SerializeAsDirective.Tests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.SerializeAsDirective.Tests.cs index 7e859e2d177..99dfcb7df4c 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.SerializeAsDirective.Tests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.SerializeAsDirective.Tests.cs @@ -70,9 +70,7 @@ directive @serializeAs(regex: String) repeatable on SCALAR """ ], """ - scalar Foo - @fusion__type(schema: A) - @fusion__type(schema: B) + scalar Foo @fusion__type(schema: A) @fusion__type(schema: B) """, modifySchema: s_removeSerializeAsDirective); } @@ -103,17 +101,11 @@ scalar Baz @serializeAs(type: STRING, pattern: "[0-9]+") """ ], """ - scalar Bar - @fusion__type(schema: A) - @fusion__type(schema: B) + scalar Bar @fusion__type(schema: A) @fusion__type(schema: B) - scalar Baz - @fusion__type(schema: A) - @fusion__type(schema: B) + scalar Baz @fusion__type(schema: A) @fusion__type(schema: B) - scalar Foo - @fusion__type(schema: A) - @fusion__type(schema: B) + scalar Foo @fusion__type(schema: A) @fusion__type(schema: B) """, modifySchema: s_removeSerializeAsDirective); } diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.TagDirective.Tests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.TagDirective.Tests.cs index 8a19322b59f..73983a3ced6 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.TagDirective.Tests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.TagDirective.Tests.cs @@ -24,9 +24,7 @@ directive @tag(name: String!) repeatable on {s_tagLocations} """ ], """ - scalar Foo - @fusion__type(schema: A) - @fusion__type(schema: B) + scalar Foo @fusion__type(schema: A) @fusion__type(schema: B) """, options => options.TagMergeBehavior = DirectiveMergeBehavior.Ignore); } @@ -103,89 +101,75 @@ directive @tag("Some description" name: String!) repeatable on {{s_tagLocations} """ ], $$""" - schema - @tag(name: "a") - @tag(name: "b") { - query: Query + schema @tag(name: "a") @tag(name: "b") { + query: Query } - type Query - @fusion__type(schema: A) - @fusion__type(schema: B) { - field: Int - @fusion__field(schema: A) - @fusion__field(schema: B) + type Query @fusion__type(schema: A) @fusion__type(schema: B) { + field: Int @fusion__field(schema: A) @fusion__field(schema: B) } type FooObject + @tag(name: "a") + @tag(name: "b") + @fusion__type(schema: A) + @fusion__type(schema: B) { + field( + arg: Int @tag(name: "a") @tag(name: "b") @fusion__inputField(schema: A) @fusion__inputField(schema: B) + ): Int @tag(name: "a") @tag(name: "b") - @fusion__type(schema: A) - @fusion__type(schema: B) { - field(arg: Int - @tag(name: "a") - @tag(name: "b") - @fusion__inputField(schema: A) - @fusion__inputField(schema: B)): Int - @tag(name: "a") - @tag(name: "b") - @fusion__field(schema: A) - @fusion__field(schema: B) + @fusion__field(schema: A) + @fusion__field(schema: B) } interface FooInterface + @tag(name: "a") + @tag(name: "b") + @fusion__type(schema: A) + @fusion__type(schema: B) { + field( + arg: Int @tag(name: "a") @tag(name: "b") @fusion__inputField(schema: A) @fusion__inputField(schema: B) + ): Int @tag(name: "a") @tag(name: "b") - @fusion__type(schema: A) - @fusion__type(schema: B) { - field(arg: Int - @tag(name: "a") - @tag(name: "b") - @fusion__inputField(schema: A) - @fusion__inputField(schema: B)): Int - @tag(name: "a") - @tag(name: "b") - @fusion__field(schema: A) - @fusion__field(schema: B) + @fusion__field(schema: A) + @fusion__field(schema: B) } union FooUnion - @tag(name: "a") - @tag(name: "b") - @fusion__type(schema: A) - @fusion__type(schema: B) - @fusion__unionMember(schema: A, member: "FooObject") - @fusion__unionMember(schema: B, member: "FooObject") = FooObject + @tag(name: "a") + @tag(name: "b") + @fusion__type(schema: A) + @fusion__type(schema: B) + @fusion__unionMember(schema: A, member: "FooObject") + @fusion__unionMember(schema: B, member: "FooObject") = FooObject input FooInput - @tag(name: "a") - @tag(name: "b") - @fusion__type(schema: A) - @fusion__type(schema: B) { - field: Int - @tag(name: "a") - @tag(name: "b") - @fusion__inputField(schema: A) - @fusion__inputField(schema: B) + @tag(name: "a") + @tag(name: "b") + @fusion__type(schema: A) + @fusion__type(schema: B) { + field: Int @tag(name: "a") @tag(name: "b") @fusion__inputField(schema: A) @fusion__inputField(schema: B) } enum FooEnum + @tag(name: "a") + @tag(name: "b") + @fusion__type(schema: A) + @fusion__type(schema: B) { + VALUE @tag(name: "a") @tag(name: "b") - @fusion__type(schema: A) - @fusion__type(schema: B) { - VALUE - @tag(name: "a") - @tag(name: "b") - @fusion__enumValue(schema: A) - @fusion__enumValue(schema: B) + @fusion__enumValue(schema: A) + @fusion__enumValue(schema: B) } scalar FooScalar - @tag(name: "a") - @tag(name: "b") - @fusion__type(schema: A) - @fusion__type(schema: B) + @tag(name: "a") + @tag(name: "b") + @fusion__type(schema: A) + @fusion__type(schema: B) directive @tag(name: String!) repeatable on {{s_tagLocations}} """, @@ -212,9 +196,7 @@ directive @tag(id: Int) repeatable on SCALAR """ ], """ - scalar Foo - @fusion__type(schema: A) - @fusion__type(schema: B) + scalar Foo @fusion__type(schema: A) @fusion__type(schema: B) """, options => options.TagMergeBehavior = DirectiveMergeBehavior.Include); } @@ -270,10 +252,7 @@ directive @tag(name: String!) repeatable on {s_tagLocations} """ ], $""" - scalar Foo - @tag(name: "same") - @fusion__type(schema: A) - @fusion__type(schema: B) + scalar Foo @tag(name: "same") @fusion__type(schema: A) @fusion__type(schema: B) directive @tag(name: String!) repeatable on {s_tagLocations} """, diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Union.Tests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Union.Tests.cs index 54a58355c2f..fe5feb00d0a 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Union.Tests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Union.Tests.cs @@ -25,33 +25,25 @@ public void Merge_Unions_MatchesSnapshot() """ ], """ - type Order - @fusion__type(schema: A) - @fusion__type(schema: B) { - id: ID! - @fusion__field(schema: A) - @fusion__field(schema: B) + type Order @fusion__type(schema: A) @fusion__type(schema: B) { + id: ID! @fusion__field(schema: A) @fusion__field(schema: B) } - type Product - @fusion__type(schema: A) { - id: ID! - @fusion__field(schema: A) + type Product @fusion__type(schema: A) { + id: ID! @fusion__field(schema: A) } - type User - @fusion__type(schema: B) { - id: ID! - @fusion__field(schema: B) + type User @fusion__type(schema: B) { + id: ID! @fusion__field(schema: B) } union SearchResult - @fusion__type(schema: A) - @fusion__type(schema: B) - @fusion__unionMember(schema: A, member: "Product") - @fusion__unionMember(schema: A, member: "Order") - @fusion__unionMember(schema: B, member: "Order") - @fusion__unionMember(schema: B, member: "User") = Product | Order | User + @fusion__type(schema: A) + @fusion__type(schema: B) + @fusion__unionMember(schema: A, member: "Product") + @fusion__unionMember(schema: A, member: "Order") + @fusion__unionMember(schema: B, member: "Order") + @fusion__unionMember(schema: B, member: "User") = Product | Order | User """); } @@ -76,20 +68,16 @@ public void Merge_InaccessibleUnion_MatchesSnapshot() """ ], """ - type User - @fusion__type(schema: A) - @fusion__type(schema: B) { - id: ID! - @fusion__field(schema: A) - @fusion__field(schema: B) + type User @fusion__type(schema: A) @fusion__type(schema: B) { + id: ID! @fusion__field(schema: A) @fusion__field(schema: B) } union SearchResult - @fusion__type(schema: A) - @fusion__type(schema: B) - @fusion__unionMember(schema: A, member: "User") - @fusion__unionMember(schema: B, member: "User") - @fusion__inaccessible = User + @fusion__type(schema: A) + @fusion__type(schema: B) + @fusion__unionMember(schema: A, member: "User") + @fusion__unionMember(schema: B, member: "User") + @fusion__inaccessible = User """); } @@ -115,20 +103,16 @@ public void Merge_UnionsUsesFirstNonEmptyDescription_MatchesSnapshot() """ ], """ - type User - @fusion__type(schema: A) - @fusion__type(schema: B) { - id: ID! - @fusion__field(schema: A) - @fusion__field(schema: B) + type User @fusion__type(schema: A) @fusion__type(schema: B) { + id: ID! @fusion__field(schema: A) @fusion__field(schema: B) } "The first non-empty description." union SearchResult - @fusion__type(schema: A) - @fusion__type(schema: B) - @fusion__unionMember(schema: A, member: "User") - @fusion__unionMember(schema: B, member: "User") = User + @fusion__type(schema: A) + @fusion__type(schema: B) + @fusion__unionMember(schema: A, member: "User") + @fusion__unionMember(schema: B, member: "User") = User """); } @@ -156,9 +140,7 @@ public void Merge_UnionsWithInternalMemberType_MatchesSnapshot() ], // lang=text """ - union SearchResult - @fusion__type(schema: A) - @fusion__type(schema: B) = + union SearchResult @fusion__type(schema: A) @fusion__type(schema: B) = """); } @@ -184,26 +166,20 @@ public void Merge_UnionsWithInternalMemberTypeInOneSchema_MatchesSnapshot() """ ], """ - type Order - @fusion__type(schema: A) { - id: ID! - @fusion__field(schema: A) + type Order @fusion__type(schema: A) { + id: ID! @fusion__field(schema: A) } - type Product - @fusion__type(schema: A) - @fusion__type(schema: B) { - id: ID! - @fusion__field(schema: A) - @fusion__field(schema: B) + type Product @fusion__type(schema: A) @fusion__type(schema: B) { + id: ID! @fusion__field(schema: A) @fusion__field(schema: B) } union SearchResult - @fusion__type(schema: A) - @fusion__type(schema: B) - @fusion__unionMember(schema: A, member: "Product") - @fusion__unionMember(schema: B, member: "Product") - @fusion__unionMember(schema: A, member: "Order") = Product | Order + @fusion__type(schema: A) + @fusion__type(schema: B) + @fusion__unionMember(schema: A, member: "Product") + @fusion__unionMember(schema: B, member: "Product") + @fusion__unionMember(schema: A, member: "Order") = Product | Order """); } @@ -227,33 +203,27 @@ type Query { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) { - animalById(id: ID! - @fusion__inputField(schema: A)): Animal - @fusion__field(schema: A) + type Query @fusion__type(schema: A) { + animalById(id: ID! @fusion__inputField(schema: A)): Animal + @fusion__field(schema: A) } - type Cat - @fusion__type(schema: A) { - id: ID! - @fusion__field(schema: A) + type Cat @fusion__type(schema: A) { + id: ID! @fusion__field(schema: A) } - type Dog - @fusion__type(schema: A) { - id: ID! - @fusion__field(schema: A) + type Dog @fusion__type(schema: A) { + id: ID! @fusion__field(schema: A) } union Animal - @fusion__type(schema: A) - @fusion__unionMember(schema: A, member: "Dog") - @fusion__unionMember(schema: A, member: "Cat") - @fusion__lookup(schema: A, key: "id", field: "animalById(id: ID!): Animal", map: ["id"], path: null, internal: false) = Dog | Cat + @fusion__type(schema: A) + @fusion__unionMember(schema: A, member: "Dog") + @fusion__unionMember(schema: A, member: "Cat") + @fusion__lookup(schema: A, key: "id", field: "animalById(id: ID!): Animal", map: ["id"], path: null, internal: false) = Dog | Cat """); } @@ -282,37 +252,31 @@ type Cat { ], """ schema { - query: Query + query: Query } - type Query - @fusion__type(schema: A) { - animalById(id: ID! - @fusion__inputField(schema: A)): Animal - @fusion__field(schema: A) + type Query @fusion__type(schema: A) { + animalById(id: ID! @fusion__inputField(schema: A)): Animal + @fusion__field(schema: A) } type Cat - @fusion__type(schema: A) - @fusion__lookup(schema: A, key: "id", field: "catById(id: ID!): Cat", map: ["id"], path: "animalById", internal: false) { - catById(id: ID! - @fusion__inputField(schema: A)): Cat - @fusion__field(schema: A) + @fusion__type(schema: A) + @fusion__lookup(schema: A, key: "id", field: "catById(id: ID!): Cat", map: ["id"], path: "animalById", internal: false) { + catById(id: ID! @fusion__inputField(schema: A)): Cat @fusion__field(schema: A) } type Dog - @fusion__type(schema: A) - @fusion__lookup(schema: A, key: "id", field: "dogById(id: ID!): Dog", map: ["id"], path: "animalById", internal: false) { - dogById(id: ID! - @fusion__inputField(schema: A)): Dog - @fusion__field(schema: A) + @fusion__type(schema: A) + @fusion__lookup(schema: A, key: "id", field: "dogById(id: ID!): Dog", map: ["id"], path: "animalById", internal: false) { + dogById(id: ID! @fusion__inputField(schema: A)): Dog @fusion__field(schema: A) } union Animal - @fusion__type(schema: A) - @fusion__unionMember(schema: A, member: "Dog") - @fusion__unionMember(schema: A, member: "Cat") - @fusion__lookup(schema: A, key: "id", field: "animalById(id: ID!): Animal", map: ["id"], path: null, internal: false) = Dog | Cat + @fusion__type(schema: A) + @fusion__unionMember(schema: A, member: "Dog") + @fusion__unionMember(schema: A, member: "Cat") + @fusion__lookup(schema: A, key: "id", field: "animalById(id: ID!): Animal", map: ["id"], path: null, internal: false) = Dog | Cat """); } } diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaPreprocessorTests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaPreprocessorTests.cs index ada0efd7a96..15fdb1c6cf5 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaPreprocessorTests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaPreprocessorTests.cs @@ -406,37 +406,35 @@ type Cat implements Pet & Animal { // lang=graphql """ type Cat implements Pet & Animal - @key(fields: "name") - @key(fields: "id") - @key(fields: "age") { - age: Int - id: ID! - name: String + @key(fields: "name") + @key(fields: "id") + @key(fields: "age") { + age: Int + id: ID! + name: String } type Dog implements Pet & Animal - @key(fields: "name") - @key(fields: "id") - @key(fields: "age") { - age: Int - id: ID! - name: String + @key(fields: "name") + @key(fields: "id") + @key(fields: "age") { + age: Int + id: ID! + name: String } - interface Animal - @key(fields: "id") - @key(fields: "age") { - age: Int - id: ID! + interface Animal @key(fields: "id") @key(fields: "age") { + age: Int + id: ID! } interface Pet implements Animal - @key(fields: "name") - @key(fields: "id") - @key(fields: "age") { - age: Int - id: ID! - name: String + @key(fields: "name") + @key(fields: "id") + @key(fields: "age") { + age: Int + id: ID! + name: String } """); } @@ -527,30 +525,22 @@ type Review implements Node { } type Query { - node(id: ID!): Node - @lookup - productById(id: ID!): Product - @lookup - productByName(productName: String! - @is(field: "name")): Product - @lookup + node(id: ID!): Node @lookup + productById(id: ID!): Product @lookup + productByName(productName: String! @is(field: "name")): Product @lookup } - type Product implements Node - @key(fields: "id") - @key(fields: "name") { + type Product implements Node @key(fields: "id") @key(fields: "name") { id: ID! name: String! } - type Review implements Node - @key(fields: "id") { + type Review implements Node @key(fields: "id") { id: ID! title: String! } - interface Node - @key(fields: "id") { + interface Node @key(fields: "id") { id: ID! } """); @@ -610,7 +600,7 @@ type Query { product(id: ID!): Product productByGtin(gtin: String!): Product productById(id: ID!): Product! - productByIdAndOther(id: ID! other: String): Product + productByIdAndOther(id: ID!, other: String): Product productsById(ids: [ID!]!): [Product] } @@ -747,16 +737,12 @@ type Product { } type Query { - productById(id: ID!): Product - @lookup - @shareable + productById(id: ID!): Product @lookup @shareable } - type Product - @key(fields: "id") { + type Product @key(fields: "id") { id: ID! - name: String! - @shareable + name: String! @shareable } """); } diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/__snapshots__/SourceSchemaMergerTests.Merge_FourNamedSchemas_AddsFusionDefinitions.graphql b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/__snapshots__/SourceSchemaMergerTests.Merge_FourNamedSchemas_AddsFusionDefinitions.graphql index b1087325cc2..3995b47f310 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/__snapshots__/SourceSchemaMergerTests.Merge_FourNamedSchemas_AddsFusionDefinitions.graphql +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/__snapshots__/SourceSchemaMergerTests.Merge_FourNamedSchemas_AddsFusionDefinitions.graphql @@ -1,13 +1,9 @@ "The fusion__Schema enum is a generated type used within an execution schema document to refer to a source schema in a type-safe manner." enum fusion__Schema { - EXAMPLE_FOUR_FIVE - @fusion__schema_metadata(name: "ExampleFourFive") - EXAMPLE_ONE - @fusion__schema_metadata(name: "ExampleOne") - EXAMPLE_THREE - @fusion__schema_metadata(name: "Example__Three") - EXAMPLE_TWO - @fusion__schema_metadata(name: "Example_Two") + EXAMPLE_FOUR_FIVE @fusion__schema_metadata(name: "ExampleFourFive") + EXAMPLE_ONE @fusion__schema_metadata(name: "ExampleOne") + EXAMPLE_THREE @fusion__schema_metadata(name: "Example__Three") + EXAMPLE_TWO @fusion__schema_metadata(name: "Example_Two") } "The fusion__FieldDefinition scalar is used to represent a GraphQL field definition specified in the GraphQL spec." @@ -23,37 +19,110 @@ scalar fusion__FieldSelectionPath scalar fusion__FieldSelectionSet "The @fusion__cost directive specifies cost metadata for each source schema." -directive @fusion__cost("The name of the source schema that defined the cost metadata." schema: fusion__Schema! "The weight defined in the source schema." weight: String!) repeatable on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @fusion__cost( + "The name of the source schema that defined the cost metadata." + schema: fusion__Schema! + "The weight defined in the source schema." + weight: String! +) repeatable on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION "The @fusion__enumValue directive specifies which source schema provides an enum value." -directive @fusion__enumValue("The name of the source schema that provides the specified enum value." schema: fusion__Schema!) repeatable on ENUM_VALUE +directive @fusion__enumValue( + "The name of the source schema that provides the specified enum value." + schema: fusion__Schema! +) repeatable on ENUM_VALUE "The @fusion__field directive specifies which source schema provides a field in a composite type and what execution behavior it has." -directive @fusion__field("Indicates that this field is only partially provided and must be combined with `provides`." partial: Boolean! = false "A selection set of fields this field provides in the composite schema." provides: fusion__FieldSelectionSet "The name of the source schema that originally provided this field." schema: fusion__Schema! "The field type in the source schema if it differs in nullability or structure." sourceType: String) repeatable on FIELD_DEFINITION +directive @fusion__field( + "Indicates that this field is only partially provided and must be combined with `provides`." + partial: Boolean! = false + "A selection set of fields this field provides in the composite schema." + provides: fusion__FieldSelectionSet + "The name of the source schema that originally provided this field." + schema: fusion__Schema! + "The field type in the source schema if it differs in nullability or structure." + sourceType: String +) repeatable on FIELD_DEFINITION "The @fusion__implements directive specifies on which source schema an interface is implemented by an object or interface type." -directive @fusion__implements("The name of the interface type." interface: String! "The name of the source schema on which the annotated type implements the specified interface." schema: fusion__Schema!) repeatable on OBJECT | INTERFACE +directive @fusion__implements( + "The name of the interface type." + interface: String! + "The name of the source schema on which the annotated type implements the specified interface." + schema: fusion__Schema! +) repeatable on OBJECT | INTERFACE "The @fusion__inaccessible directive is used to prevent specific type system members from being accessible through the client-facing composite schema, even if they are accessible in the underlying source schemas." directive @fusion__inaccessible on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION "The @fusion__inputField directive specifies which source schema provides an input field in a composite input type." -directive @fusion__inputField("The name of the source schema that originally provided this input field." schema: fusion__Schema! "The field type in the source schema if it differs in nullability or structure." sourceType: String) repeatable on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION +directive @fusion__inputField( + "The name of the source schema that originally provided this input field." + schema: fusion__Schema! + "The field type in the source schema if it differs in nullability or structure." + sourceType: String +) repeatable on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION "The @fusion__listSize directive specifies list size metadata for each source schema." -directive @fusion__listSize("The assumed size of the list as defined in the source schema." assumedSize: Int "The single slicing argument requirement of the list as defined in the source schema." requireOneSlicingArgument: Boolean "The name of the source schema that defined the list size metadata." schema: fusion__Schema! "The sized fields of the list as defined in the source schema." sizedFields: [String!] "The slicing argument default value of the list as defined in the source schema." slicingArgumentDefaultValue: Int "The slicing arguments of the list as defined in the source schema." slicingArguments: [String!]) repeatable on FIELD_DEFINITION +directive @fusion__listSize( + "The assumed size of the list as defined in the source schema." + assumedSize: Int + "The single slicing argument requirement of the list as defined in the source schema." + requireOneSlicingArgument: Boolean + "The name of the source schema that defined the list size metadata." + schema: fusion__Schema! + "The sized fields of the list as defined in the source schema." + sizedFields: [String!] + "The slicing argument default value of the list as defined in the source schema." + slicingArgumentDefaultValue: Int + "The slicing arguments of the list as defined in the source schema." + slicingArguments: [String!] +) repeatable on FIELD_DEFINITION "The @fusion__lookup directive specifies how the distributed executor can resolve data for an entity type from a source schema by a stable key." -directive @fusion__lookup("The GraphQL field definition in the source schema that can be used to look up the entity." field: fusion__FieldDefinition! "Is the lookup meant as an entry point or just to provide more data." internal: Boolean! = false "A selection set on the annotated entity type that describes the stable key for the lookup." key: fusion__FieldSelectionSet! "The map describes how the key values are resolved from the annotated entity type." map: [fusion__FieldSelectionMap!]! "The path to the lookup field relative to the Query type." path: fusion__FieldSelectionPath "The name of the source schema where the annotated entity type can be looked up from." schema: fusion__Schema!) repeatable on OBJECT | INTERFACE | UNION +directive @fusion__lookup( + "The GraphQL field definition in the source schema that can be used to look up the entity." + field: fusion__FieldDefinition! + "Is the lookup meant as an entry point or just to provide more data." + internal: Boolean! = false + "A selection set on the annotated entity type that describes the stable key for the lookup." + key: fusion__FieldSelectionSet! + "The map describes how the key values are resolved from the annotated entity type." + map: [fusion__FieldSelectionMap!]! + "The path to the lookup field relative to the Query type." + path: fusion__FieldSelectionPath + "The name of the source schema where the annotated entity type can be looked up from." + schema: fusion__Schema! +) repeatable on OBJECT | INTERFACE | UNION "The @fusion__requires directive specifies if a field has requirements on a source schema." -directive @fusion__requires("The GraphQL field definition in the source schema that this field depends on." field: fusion__FieldDefinition! "The map describes how the argument values for the source schema are resolved from the arguments of the field exposed in the client-facing composite schema and from required data relative to the current type." map: [fusion__FieldSelectionMap]! "A selection set on the annotated field that describes its requirements." requirements: fusion__FieldSelectionSet! "The name of the source schema where this field has requirements to data on other source schemas." schema: fusion__Schema!) repeatable on FIELD_DEFINITION +directive @fusion__requires( + "The GraphQL field definition in the source schema that this field depends on." + field: fusion__FieldDefinition! + "The map describes how the argument values for the source schema are resolved from the arguments of the field exposed in the client-facing composite schema and from required data relative to the current type." + map: [fusion__FieldSelectionMap]! + "A selection set on the annotated field that describes its requirements." + requirements: fusion__FieldSelectionSet! + "The name of the source schema where this field has requirements to data on other source schemas." + schema: fusion__Schema! +) repeatable on FIELD_DEFINITION "The @fusion__schema_metadata directive is used to provide additional metadata for a source schema." -directive @fusion__schema_metadata("The name of the source schema." name: String!) on ENUM_VALUE +directive @fusion__schema_metadata( + "The name of the source schema." + name: String! +) on ENUM_VALUE "The @fusion__type directive specifies which source schemas provide parts of a composite type." -directive @fusion__type("The name of the source schema that originally provided part of the annotated type." schema: fusion__Schema!) repeatable on SCALAR | OBJECT | INTERFACE | UNION | ENUM | INPUT_OBJECT +directive @fusion__type( + "The name of the source schema that originally provided part of the annotated type." + schema: fusion__Schema! +) repeatable on SCALAR | OBJECT | INTERFACE | UNION | ENUM | INPUT_OBJECT "The @fusion__unionMember directive specifies which source schema provides a member type of a union." -directive @fusion__unionMember("The name of the member type." member: String! "The name of the source schema that provides the specified member type." schema: fusion__Schema!) repeatable on UNION +directive @fusion__unionMember( + "The name of the member type." + member: String! + "The name of the source schema that provides the specified member type." + schema: fusion__Schema! +) repeatable on UNION diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/__snapshots__/SourceSchemaPreprocessorTests.Preprocess_InferKeysFromLookupsEnabled_AppliesInferredKeyDirectives.graphql b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/__snapshots__/SourceSchemaPreprocessorTests.Preprocess_InferKeysFromLookupsEnabled_AppliesInferredKeyDirectives.graphql index 30dd248b80e..ee5e902377b 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/__snapshots__/SourceSchemaPreprocessorTests.Preprocess_InferKeysFromLookupsEnabled_AppliesInferredKeyDirectives.graphql +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/__snapshots__/SourceSchemaPreprocessorTests.Preprocess_InferKeysFromLookupsEnabled_AppliesInferredKeyDirectives.graphql @@ -3,53 +3,39 @@ schema { } type Query { - fruitById(id: ID!): Fruit - @lookup - personByAddressId(id: ID! - @is(field: "address.id")): Person - @lookup - personById(id: ID!): Person - @lookup - petById(id: ID!): Pet - @lookup - productById(id: ID!): Product - @lookup - productByIdAgain(id: ID!): Product - @lookup - productByIdAndCategoryId(categoryId: Int id: ID!): Product - @lookup - productByIdOrCategoryId(idOrCategoryId: IdOrCategoryIdInput! - @is(field: "{ id } | { categoryId }")): Product - @lookup + fruitById(id: ID!): Fruit @lookup + personByAddressId(id: ID! @is(field: "address.id")): Person @lookup + personById(id: ID!): Person @lookup + petById(id: ID!): Pet @lookup + productById(id: ID!): Product @lookup + productByIdAgain(id: ID!): Product @lookup + productByIdAndCategoryId(categoryId: Int, id: ID!): Product @lookup + productByIdOrCategoryId( + idOrCategoryId: IdOrCategoryIdInput! @is(field: "{ id } | { categoryId }") + ): Product @lookup } type Address { id: ID! } -type Apple - @key(fields: "id") { +type Apple @key(fields: "id") { id: ID! } -type Cat implements Pet - @key(fields: "id") { +type Cat implements Pet @key(fields: "id") { id: ID! } -type Dog implements Pet - @key(fields: "id") { +type Dog implements Pet @key(fields: "id") { id: ID! } -type Orange - @key(fields: "id") { +type Orange @key(fields: "id") { id: ID! } -type Person - @key(fields: "id") - @key(fields: "address { id }") { +type Person @key(fields: "id") @key(fields: "address { id }") { address: Address! id: ID! } @@ -62,15 +48,13 @@ type Product id: ID! } -interface Pet - @key(fields: "id") { +interface Pet @key(fields: "id") { id: ID! } union Fruit = Apple | Orange -input IdOrCategoryIdInput - @oneOf { +input IdOrCategoryIdInput @oneOf { categoryId: Int id: ID } diff --git a/src/HotChocolate/Fusion/test/Fusion.Connectors.ApolloFederation.Tests/__snapshots__/SchemaTransformationIntegrationTests.Rewriter_Should_RewriteLookupToEntities_FromTransformedSchema.graphql b/src/HotChocolate/Fusion/test/Fusion.Connectors.ApolloFederation.Tests/__snapshots__/SchemaTransformationIntegrationTests.Rewriter_Should_RewriteLookupToEntities_FromTransformedSchema.graphql new file mode 100644 index 00000000000..547eeb61a2a --- /dev/null +++ b/src/HotChocolate/Fusion/test/Fusion.Connectors.ApolloFederation.Tests/__snapshots__/SchemaTransformationIntegrationTests.Rewriter_Should_RewriteLookupToEntities_FromTransformedSchema.graphql @@ -0,0 +1,9 @@ +query($representations: [_Any!]!) { + _entities(representations: $representations) { + ... on Product { + id + name + price + } + } +} diff --git a/src/HotChocolate/Fusion/test/Fusion.Connectors.ApolloFederation.Tests/__snapshots__/SchemaTransformationIntegrationTests.Transform_FederationSubgraph_Should_ProduceValidCompositeSchema.graphql b/src/HotChocolate/Fusion/test/Fusion.Connectors.ApolloFederation.Tests/__snapshots__/SchemaTransformationIntegrationTests.Transform_FederationSubgraph_Should_ProduceValidCompositeSchema.graphql new file mode 100644 index 00000000000..1e171550a4b --- /dev/null +++ b/src/HotChocolate/Fusion/test/Fusion.Connectors.ApolloFederation.Tests/__snapshots__/SchemaTransformationIntegrationTests.Transform_FederationSubgraph_Should_ProduceValidCompositeSchema.graphql @@ -0,0 +1,21 @@ +schema { + query: Query +} + +type Query { + product(id: Int!): Product + productById(id: Int!): Product @internal @lookup + topProducts: [Product!]! + userByEmail(email: String!): User @internal @lookup +} + +type Product @key(fields: "id") { + id: Int! + name: String! + price: Float! +} + +type User @key(fields: "email") { + email: String! + name: String! +} diff --git a/src/HotChocolate/Fusion/test/Fusion.Diagnostics.Tests/__snapshots__/FusionActivityServerDiagnosticListenerTests.Http_Post_Add_Variables_To_Http_Activity.snap b/src/HotChocolate/Fusion/test/Fusion.Diagnostics.Tests/__snapshots__/FusionActivityServerDiagnosticListenerTests.Http_Post_Add_Variables_To_Http_Activity.snap index b38acc12761..9c5cd1baa57 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Diagnostics.Tests/__snapshots__/FusionActivityServerDiagnosticListenerTests.Http_Post_Add_Variables_To_Http_Activity.snap +++ b/src/HotChocolate/Fusion/test/Fusion.Diagnostics.Tests/__snapshots__/FusionActivityServerDiagnosticListenerTests.Http_Post_Add_Variables_To_Http_Activity.snap @@ -171,7 +171,7 @@ }, { "Key": "graphql.operation.step.plan.id", - "Value": "2e2004d467c0224bdda1498e2e0928dfb9ff9d09fab2308b114252a0857aea80" + "Value": "b4bacbde0607aabd0bf40fc3e0be23f911f12863ecdf92b2af32c5f869b8d371" }, { "Key": "graphql.source.name", @@ -187,7 +187,7 @@ }, { "Key": "graphql.source.operation.hash", - "Value": "sha256:a6738007b3546a7458414ee647c93aa373bc22ca57256f4a4a5c8ef3aa886470" + "Value": "sha256:e9428697b2cd34a844a7960438916fa3792769cf1baba824c5af0e8cd2b7e6d6" } ], "event": [] diff --git a/src/HotChocolate/Fusion/test/Fusion.Diagnostics.Tests/__snapshots__/FusionActivityServerDiagnosticListenerTests.Http_Post_Variables_Are_Not_Automatically_Added_To_Activities.snap b/src/HotChocolate/Fusion/test/Fusion.Diagnostics.Tests/__snapshots__/FusionActivityServerDiagnosticListenerTests.Http_Post_Variables_Are_Not_Automatically_Added_To_Activities.snap index 6160b3d6b1c..98b3fd3b9b2 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Diagnostics.Tests/__snapshots__/FusionActivityServerDiagnosticListenerTests.Http_Post_Variables_Are_Not_Automatically_Added_To_Activities.snap +++ b/src/HotChocolate/Fusion/test/Fusion.Diagnostics.Tests/__snapshots__/FusionActivityServerDiagnosticListenerTests.Http_Post_Variables_Are_Not_Automatically_Added_To_Activities.snap @@ -167,7 +167,7 @@ }, { "Key": "graphql.operation.step.plan.id", - "Value": "2e2004d467c0224bdda1498e2e0928dfb9ff9d09fab2308b114252a0857aea80" + "Value": "b4bacbde0607aabd0bf40fc3e0be23f911f12863ecdf92b2af32c5f869b8d371" }, { "Key": "graphql.source.name", @@ -183,7 +183,7 @@ }, { "Key": "graphql.source.operation.hash", - "Value": "sha256:a6738007b3546a7458414ee647c93aa373bc22ca57256f4a4a5c8ef3aa886470" + "Value": "sha256:e9428697b2cd34a844a7960438916fa3792769cf1baba824c5af0e8cd2b7e6d6" } ], "event": [] diff --git a/src/HotChocolate/Fusion/test/Fusion.Diagnostics.Tests/__snapshots__/FusionActivityServerDiagnosticListenerTests.Http_Post_With_Extensions_Map.snap b/src/HotChocolate/Fusion/test/Fusion.Diagnostics.Tests/__snapshots__/FusionActivityServerDiagnosticListenerTests.Http_Post_With_Extensions_Map.snap index 99ea58b3415..e518e848a9e 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Diagnostics.Tests/__snapshots__/FusionActivityServerDiagnosticListenerTests.Http_Post_With_Extensions_Map.snap +++ b/src/HotChocolate/Fusion/test/Fusion.Diagnostics.Tests/__snapshots__/FusionActivityServerDiagnosticListenerTests.Http_Post_With_Extensions_Map.snap @@ -171,7 +171,7 @@ }, { "Key": "graphql.operation.step.plan.id", - "Value": "2e2004d467c0224bdda1498e2e0928dfb9ff9d09fab2308b114252a0857aea80" + "Value": "b4bacbde0607aabd0bf40fc3e0be23f911f12863ecdf92b2af32c5f869b8d371" }, { "Key": "graphql.source.name", @@ -187,7 +187,7 @@ }, { "Key": "graphql.source.operation.hash", - "Value": "sha256:a6738007b3546a7458414ee647c93aa373bc22ca57256f4a4a5c8ef3aa886470" + "Value": "sha256:e9428697b2cd34a844a7960438916fa3792769cf1baba824c5af0e8cd2b7e6d6" } ], "event": [] diff --git a/src/HotChocolate/Fusion/test/Fusion.Diagnostics.Tests/__snapshots__/FusionActivityServerDiagnosticListenerTests.RequestDetails_All_IncludesAllDetails.snap b/src/HotChocolate/Fusion/test/Fusion.Diagnostics.Tests/__snapshots__/FusionActivityServerDiagnosticListenerTests.RequestDetails_All_IncludesAllDetails.snap index 66272f5f7b1..af67ca1cef2 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Diagnostics.Tests/__snapshots__/FusionActivityServerDiagnosticListenerTests.RequestDetails_All_IncludesAllDetails.snap +++ b/src/HotChocolate/Fusion/test/Fusion.Diagnostics.Tests/__snapshots__/FusionActivityServerDiagnosticListenerTests.RequestDetails_All_IncludesAllDetails.snap @@ -27,7 +27,7 @@ }, { "Key": "graphql.http.request.query.body", - "Value": "query GetGreeting(\n $name: String!\n) {\n greeting(name: $name)\n}" + "Value": "query GetGreeting($name: String!) {\n greeting(name: $name)\n}" }, { "Key": "graphql.http.request.variables", @@ -199,7 +199,7 @@ }, { "Key": "graphql.operation.step.plan.id", - "Value": "593f10ca34b44a1dc334a8064a790d9c81a80225d0bbe7a4aec8e092adec046d" + "Value": "927ffd44733df2159203b1a097608f124eddb72cc45496f3c97e01a5ea40f2b3" }, { "Key": "graphql.source.name", @@ -215,7 +215,7 @@ }, { "Key": "graphql.source.operation.hash", - "Value": "sha256:00692b6fbeb8014bcc1eb8932d5924dc0c5e5ea3e158e34979ec322c2e1b3c40" + "Value": "sha256:107e4091ec962487f26df0844464aa76452bc9039d604d80523fc66325c088bc" } ], "event": [] diff --git a/src/HotChocolate/Fusion/test/Fusion.Diagnostics.Tests/__snapshots__/FusionActivityServerDiagnosticListenerTests.RequestDetails_None_ExcludesAllDetails.snap b/src/HotChocolate/Fusion/test/Fusion.Diagnostics.Tests/__snapshots__/FusionActivityServerDiagnosticListenerTests.RequestDetails_None_ExcludesAllDetails.snap index 7556cd38a76..6c4eb25bf5e 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Diagnostics.Tests/__snapshots__/FusionActivityServerDiagnosticListenerTests.RequestDetails_None_ExcludesAllDetails.snap +++ b/src/HotChocolate/Fusion/test/Fusion.Diagnostics.Tests/__snapshots__/FusionActivityServerDiagnosticListenerTests.RequestDetails_None_ExcludesAllDetails.snap @@ -175,7 +175,7 @@ }, { "Key": "graphql.operation.step.plan.id", - "Value": "593f10ca34b44a1dc334a8064a790d9c81a80225d0bbe7a4aec8e092adec046d" + "Value": "927ffd44733df2159203b1a097608f124eddb72cc45496f3c97e01a5ea40f2b3" }, { "Key": "graphql.source.name", @@ -191,7 +191,7 @@ }, { "Key": "graphql.source.operation.hash", - "Value": "sha256:00692b6fbeb8014bcc1eb8932d5924dc0c5e5ea3e158e34979ec322c2e1b3c40" + "Value": "sha256:107e4091ec962487f26df0844464aa76452bc9039d604d80523fc66325c088bc" } ], "event": [] diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Execution/Types/__snapshots__/SerializeAsTests.SerializeAs_Will_Be_In_The_Schema.graphql b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Execution/Types/__snapshots__/SerializeAsTests.SerializeAs_Will_Be_In_The_Schema.graphql index 80934e8675e..050484f5d68 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Execution/Types/__snapshots__/SerializeAsTests.SerializeAs_Will_Be_In_The_Schema.graphql +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Execution/Types/__snapshots__/SerializeAsTests.SerializeAs_Will_Be_In_The_Schema.graphql @@ -5,7 +5,7 @@ schema { type Query { productById(id: ID!): Product productBySlug(slug: String!): Product - products(after: String before: String first: Int last: Int): ProductConnection + products(after: String, before: String, first: Int, last: Int): ProductConnection reviewById(id: ID!): Review viewer: Viewer } @@ -25,7 +25,7 @@ type Product { id: ID! name: Custom! price: Float! - reviews(after: String before: String first: Int last: Int): ProductReviewConnection + reviews(after: String, before: String, first: Int, last: Int): ProductReviewConnection } type ProductConnection { @@ -66,7 +66,7 @@ type Review { type UserProfile { displayName: String! id: ID! - reviews(after: String before: String first: Int last: Int): UserProfileReviewConnection + reviews(after: String, before: String, first: Int, last: Int): UserProfileReviewConnection } type UserProfileReviewConnection { @@ -82,7 +82,7 @@ type UserProfileReviewEdge { type Viewer { displayName: String! - reviews(after: String before: String first: Int last: Int): ProductReviewConnection + reviews(after: String, before: String, first: Int, last: Int): ProductReviewConnection } enum ScalarSerializationType { @@ -94,7 +94,6 @@ enum ScalarSerializationType { STRING } -scalar Custom - @serializeAs(type: STRING) +scalar Custom @serializeAs(type: STRING) -directive @serializeAs(pattern: String type: [ScalarSerializationType!]!) on SCALAR +directive @serializeAs(pattern: String, type: [ScalarSerializationType!]!) on SCALAR diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Execution/Types/__snapshots__/SerializeAsTests.SerializeAs_Will_Not_Be_In_The_Schema.graphql b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Execution/Types/__snapshots__/SerializeAsTests.SerializeAs_Will_Not_Be_In_The_Schema.graphql index d8dab884c12..efde98735d7 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Execution/Types/__snapshots__/SerializeAsTests.SerializeAs_Will_Not_Be_In_The_Schema.graphql +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Execution/Types/__snapshots__/SerializeAsTests.SerializeAs_Will_Not_Be_In_The_Schema.graphql @@ -5,7 +5,7 @@ schema { type Query { productById(id: ID!): Product productBySlug(slug: String!): Product - products(after: String before: String first: Int last: Int): ProductConnection + products(after: String, before: String, first: Int, last: Int): ProductConnection reviewById(id: ID!): Review viewer: Viewer } @@ -25,7 +25,7 @@ type Product { id: ID! name: Custom! price: Float! - reviews(after: String before: String first: Int last: Int): ProductReviewConnection + reviews(after: String, before: String, first: Int, last: Int): ProductReviewConnection } type ProductConnection { @@ -66,7 +66,7 @@ type Review { type UserProfile { displayName: String! id: ID! - reviews(after: String before: String first: Int last: Int): UserProfileReviewConnection + reviews(after: String, before: String, first: Int, last: Int): UserProfileReviewConnection } type UserProfileReviewConnection { @@ -82,7 +82,7 @@ type UserProfileReviewEdge { type Viewer { displayName: String! - reviews(after: String before: String first: Int last: Int): ProductReviewConnection + reviews(after: String, before: String, first: Int, last: Int): ProductReviewConnection } enum ScalarSerializationType { diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/EntityChainTests.Complex_Entity_Call.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/EntityChainTests.Complex_Entity_Call.yaml index 253ef8b267a..6a32d010378 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/EntityChainTests.Complex_Entity_Call.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/EntityChainTests.Complex_Entity_Call.yaml @@ -45,7 +45,12 @@ nodes: $__fusion_1_id: ID! $__fusion_1_pid: ID! ) { - productByIdPidAndCategory(id: $__fusion_1_id, pid: $__fusion_1_pid, categoryId: $__fusion_1_categoryId, categoryTag: $__fusion_1_categoryTag) { + productByIdPidAndCategory( + id: $__fusion_1_id + pid: $__fusion_1_pid + categoryId: $__fusion_1_categoryId + categoryTag: $__fusion_1_categoryTag + ) { price { price } @@ -73,9 +78,7 @@ nodes: type: Operation schema: link operation: | - query Op_123456789101112_3( - $__fusion_2_id: ID! - ) { + query Op_123456789101112_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { pid } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/EntityChainTests.Parent_Entity_Call_Complex.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/EntityChainTests.Parent_Entity_Call_Complex.yaml index 7e01e322749..bf4e84e5af2 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/EntityChainTests.Parent_Entity_Call_Complex.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/EntityChainTests.Parent_Entity_Call_Complex.yaml @@ -31,9 +31,7 @@ nodes: type: Operation schema: a operation: | - query Op_123456789101112_2( - $__fusion_1_id: ID! - ) { + query Op_123456789101112_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { category { details @@ -52,9 +50,7 @@ nodes: type: Operation schema: c operation: | - query Op_123456789101112_3( - $__fusion_2_id: ID! - ) { + query Op_123456789101112_3($__fusion_2_id: ID!) { categoryById(id: $__fusion_2_id) { id name @@ -72,9 +68,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_4( - $__fusion_3_id: ID! - ) { + query Op_123456789101112_4($__fusion_3_id: ID!) { productById(id: $__fusion_3_id) { category { id diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/InterfaceLookupPlanningTests.Abstract_Customer_Interface_With_Email_Is_Plannable.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/InterfaceLookupPlanningTests.Abstract_Customer_Interface_With_Email_Is_Plannable.yaml index aa5d4d25439..f8b2e41e6fc 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/InterfaceLookupPlanningTests.Abstract_Customer_Interface_With_Email_Is_Plannable.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/InterfaceLookupPlanningTests.Abstract_Customer_Interface_With_Email_Is_Plannable.yaml @@ -40,9 +40,7 @@ nodes: type: Operation schema: de operation: | - query Op_123456789101112_2( - $__fusion_1_id: ID! - ) { + query Op_123456789101112_2($__fusion_1_id: ID!) { de_customerById(id: $__fusion_1_id) { email } @@ -59,9 +57,7 @@ nodes: type: Operation schema: ch operation: | - query Op_123456789101112_3( - $__fusion_2_id: ID! - ) { + query Op_123456789101112_3($__fusion_2_id: ID!) { ch_customerById(id: $__fusion_2_id) { email } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/K6PlanTests.DeepNesting.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/K6PlanTests.DeepNesting.yaml index 93b88651158..5559274b44c 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/K6PlanTests.DeepNesting.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/K6PlanTests.DeepNesting.yaml @@ -116,9 +116,7 @@ nodes: type: Operation schema: d operation: | - query TestQuery_123456789101112_3( - $__fusion_1_id: ID! - ) { + query TestQuery_123456789101112_3($__fusion_1_id: ID!) { user(id: $__fusion_1_id) { reviews { id @@ -156,9 +154,7 @@ nodes: type: Operation schema: d operation: | - query TestQuery_123456789101112_9( - $__fusion_9_upc: ID! - ) { + query TestQuery_123456789101112_9($__fusion_9_upc: ID!) { product(upc: $__fusion_9_upc) { reviews { id @@ -189,9 +185,7 @@ nodes: type: OperationBatch schema: c operation: | - query TestQuery_123456789101112_4( - $__fusion_2_upc: ID! - ) { + query TestQuery_123456789101112_4($__fusion_2_upc: ID!) { product(upc: $__fusion_2_upc) { name price @@ -251,9 +245,7 @@ nodes: type: OperationBatch schema: a operation: | - query TestQuery_123456789101112_6( - $__fusion_5_id: ID! - ) { + query TestQuery_123456789101112_6($__fusion_5_id: ID!) { user(id: $__fusion_5_id) { username name diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/LookupTests.Nested_Lookup.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/LookupTests.Nested_Lookup.yaml index 8fd96dab91d..6f8354cb204 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/LookupTests.Nested_Lookup.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/LookupTests.Nested_Lookup.yaml @@ -27,9 +27,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_2( - $__fusion_1_id: Int! - ) { + query Op_123456789101112_2($__fusion_1_id: Int!) { lookups { brandById(id: $__fusion_1_id) { name diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/LookupTests.Require_Inaccessible_Data.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/LookupTests.Require_Inaccessible_Data.yaml index 3ae7c0ffda9..af07dfb0250 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/LookupTests.Require_Inaccessible_Data.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/LookupTests.Require_Inaccessible_Data.yaml @@ -27,9 +27,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_2( - $__fusion_1_id: Int! - ) { + query Op_123456789101112_2($__fusion_1_id: Int!) { brandById(id: $__fusion_1_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationMergePolicyTests.Snapshot_Aggressive_K6.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationMergePolicyTests.Snapshot_Aggressive_K6.yaml index df32b8cd43b..95e754e61a1 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationMergePolicyTests.Snapshot_Aggressive_K6.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationMergePolicyTests.Snapshot_Aggressive_K6.yaml @@ -116,9 +116,7 @@ nodes: type: Operation schema: c operation: | - query TestQuery_123456789101112_3( - $__fusion_1_id: ID! - ) { + query TestQuery_123456789101112_3($__fusion_1_id: ID!) { user(id: $__fusion_1_id) { reviews { id @@ -156,9 +154,7 @@ nodes: type: Operation schema: c operation: | - query TestQuery_123456789101112_9( - $__fusion_9_upc: ID! - ) { + query TestQuery_123456789101112_9($__fusion_9_upc: ID!) { product(upc: $__fusion_9_upc) { reviews { id @@ -189,9 +185,7 @@ nodes: type: OperationBatch schema: b operation: | - query TestQuery_123456789101112_4( - $__fusion_2_upc: ID! - ) { + query TestQuery_123456789101112_4($__fusion_2_upc: ID!) { product(upc: $__fusion_2_upc) { name price @@ -251,9 +245,7 @@ nodes: type: OperationBatch schema: a operation: | - query TestQuery_123456789101112_6( - $__fusion_5_id: ID! - ) { + query TestQuery_123456789101112_6($__fusion_5_id: ID!) { user(id: $__fusion_5_id) { username name diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationMergePolicyTests.Snapshot_Balanced_K6.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationMergePolicyTests.Snapshot_Balanced_K6.yaml index c4c68bd5440..c7b2d779e4c 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationMergePolicyTests.Snapshot_Balanced_K6.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationMergePolicyTests.Snapshot_Balanced_K6.yaml @@ -116,9 +116,7 @@ nodes: type: Operation schema: c operation: | - query TestQuery_123456789101112_3( - $__fusion_1_id: ID! - ) { + query TestQuery_123456789101112_3($__fusion_1_id: ID!) { user(id: $__fusion_1_id) { reviews { id @@ -156,9 +154,7 @@ nodes: type: Operation schema: c operation: | - query TestQuery_123456789101112_9( - $__fusion_9_upc: ID! - ) { + query TestQuery_123456789101112_9($__fusion_9_upc: ID!) { product(upc: $__fusion_9_upc) { reviews { id @@ -189,9 +185,7 @@ nodes: type: OperationBatch schema: b operation: | - query TestQuery_123456789101112_4( - $__fusion_2_upc: ID! - ) { + query TestQuery_123456789101112_4($__fusion_2_upc: ID!) { product(upc: $__fusion_2_upc) { name price @@ -249,9 +243,7 @@ nodes: type: OperationBatch schema: a operation: | - query TestQuery_123456789101112_6( - $__fusion_5_id: ID! - ) { + query TestQuery_123456789101112_6($__fusion_5_id: ID!) { user(id: $__fusion_5_id) { username name diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationMergePolicyTests.Snapshot_Conservative_K6.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationMergePolicyTests.Snapshot_Conservative_K6.yaml index c4c68bd5440..c7b2d779e4c 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationMergePolicyTests.Snapshot_Conservative_K6.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationMergePolicyTests.Snapshot_Conservative_K6.yaml @@ -116,9 +116,7 @@ nodes: type: Operation schema: c operation: | - query TestQuery_123456789101112_3( - $__fusion_1_id: ID! - ) { + query TestQuery_123456789101112_3($__fusion_1_id: ID!) { user(id: $__fusion_1_id) { reviews { id @@ -156,9 +154,7 @@ nodes: type: Operation schema: c operation: | - query TestQuery_123456789101112_9( - $__fusion_9_upc: ID! - ) { + query TestQuery_123456789101112_9($__fusion_9_upc: ID!) { product(upc: $__fusion_9_upc) { reviews { id @@ -189,9 +185,7 @@ nodes: type: OperationBatch schema: b operation: | - query TestQuery_123456789101112_4( - $__fusion_2_upc: ID! - ) { + query TestQuery_123456789101112_4($__fusion_2_upc: ID!) { product(upc: $__fusion_2_upc) { name price @@ -249,9 +243,7 @@ nodes: type: OperationBatch schema: a operation: | - query TestQuery_123456789101112_6( - $__fusion_5_id: ID! - ) { + query TestQuery_123456789101112_6($__fusion_5_id: ID!) { user(id: $__fusion_5_id) { username name diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerBatchingGroupIdTests.Snapshot_Plan_Shows_BatchingGroup_When_Group_Is_Created.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerBatchingGroupIdTests.Snapshot_Plan_Shows_BatchingGroup_When_Group_Is_Created.yaml index 11af4ca4de1..53afe2ebe5e 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerBatchingGroupIdTests.Snapshot_Plan_Shows_BatchingGroup_When_Group_Is_Created.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerBatchingGroupIdTests.Snapshot_Plan_Shows_BatchingGroup_When_Group_Is_Created.yaml @@ -34,9 +34,7 @@ nodes: type: OperationBatch schema: b operation: | - query Op_123456789101112_2( - $__fusion_1_id: ID! - ) { + query Op_123456789101112_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { rating } @@ -56,9 +54,7 @@ nodes: type: OperationBatch schema: c operation: | - query Op_123456789101112_3( - $__fusion_2_id: ID! - ) { + query Op_123456789101112_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { deliveryEstimate } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Key_Requirement.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Key_Requirement.yaml index b3711db79c6..b8962968115 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Key_Requirement.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Key_Requirement.yaml @@ -28,9 +28,7 @@ nodes: type: Operation schema: c operation: | - query GetTopProducts_123456789101112_2( - $__fusion_1_sku: String! - ) { + query GetTopProducts_123456789101112_2($__fusion_1_sku: String!) { productBySku(sku: $__fusion_1_sku) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Simple_Interface_Lookup.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Simple_Interface_Lookup.yaml index e29ab862031..d3941987c4a 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Simple_Interface_Lookup.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Simple_Interface_Lookup.yaml @@ -27,9 +27,7 @@ nodes: type: Operation schema: b operation: | - query GetTopProducts_123456789101112_2( - $__fusion_1_id: ID! - ) { + query GetTopProducts_123456789101112_2($__fusion_1_id: ID!) { node(id: $__fusion_1_id) { __typename ... on Product { diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Simple_Lookup.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Simple_Lookup.yaml index d3bcc49bf5a..d623a882b2c 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Simple_Lookup.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Simple_Lookup.yaml @@ -27,9 +27,7 @@ nodes: type: Operation schema: b operation: | - query GetTopProducts_123456789101112_2( - $__fusion_1_id: ID! - ) { + query GetTopProducts_123456789101112_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { price } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Simple_Operation_2_Source_Schema.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Simple_Operation_2_Source_Schema.yaml index b8bd63d7c73..85b01729a33 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Simple_Operation_2_Source_Schema.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Simple_Operation_2_Source_Schema.yaml @@ -40,7 +40,11 @@ nodes: $__fusion_2_width: Int! ) { productById(id: $__fusion_1_id) { - estimatedDelivery(postCode: "12345", height: $__fusion_2_height, width: $__fusion_2_width) + estimatedDelivery( + postCode: "12345" + height: $__fusion_2_height + width: $__fusion_2_width + ) } } source: $.productById diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Simple_Operation_3_Source_Schema.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Simple_Operation_3_Source_Schema.yaml index d36cae64f38..8a21489cece 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Simple_Operation_3_Source_Schema.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Simple_Operation_3_Source_Schema.yaml @@ -34,9 +34,7 @@ nodes: type: Operation schema: REVIEWS operation: | - query Op_123456789101112_2( - $__fusion_1_id: ID! - ) { + query Op_123456789101112_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { reviews(first: 10) { nodes { @@ -61,9 +59,7 @@ nodes: type: Operation schema: ACCOUNTS operation: | - query Op_123456789101112_3( - $__fusion_2_id: ID! - ) { + query Op_123456789101112_3($__fusion_2_id: ID!) { userById(id: $__fusion_2_id) { displayName } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Simple_Union_Lookup.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Simple_Union_Lookup.yaml index 7ea6ab6df06..b4dce3507cf 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Simple_Union_Lookup.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/OperationPlannerTests.Plan_Simple_Union_Lookup.yaml @@ -27,9 +27,7 @@ nodes: type: Operation schema: b operation: | - query GetTopProducts_123456789101112_2( - $__fusion_1_id: ID! - ) { + query GetTopProducts_123456789101112_2($__fusion_1_id: ID!) { lookupUnionById(id: $__fusion_1_id) { __typename ... on Product { diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Issues_Issue_190_Inline_Fragment.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Issues_Issue_190_Inline_Fragment.yaml index bcee156c627..e749d4ed5ad 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Issues_Issue_190_Inline_Fragment.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Issues_Issue_190_Inline_Fragment.yaml @@ -1,8 +1,6 @@ operation: - document: | - query( - $included: Boolean! - ) { + query($included: Boolean!) { recommender @include(if: $included) { id results { diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Issues_Issue_190_With_Typename.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Issues_Issue_190_With_Typename.yaml index 5b552cfc2ce..de3a8719190 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Issues_Issue_190_With_Typename.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Issues_Issue_190_With_Typename.yaml @@ -1,8 +1,6 @@ operation: - document: | - query( - $included: Boolean! - ) { + query($included: Boolean!) { recommender @include(if: $included) { id results { diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Issues_Issue_190_Without_Typename.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Issues_Issue_190_Without_Typename.yaml index bcee156c627..e749d4ed5ad 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Issues_Issue_190_Without_Typename.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Issues_Issue_190_Without_Typename.yaml @@ -1,8 +1,6 @@ operation: - document: | - query( - $included: Boolean! - ) { + query($included: Boolean!) { recommender @include(if: $included) { id results { diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Issues_Issue_281.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Issues_Issue_281.yaml index 2794c593da5..90dcfcdbbb7 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Issues_Issue_281.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Issues_Issue_281.yaml @@ -54,9 +54,7 @@ nodes: type: Operation schema: c operation: | - query Op_123456789101112_2( - $__fusion_1_pid: ID! - ) { + query Op_123456789101112_2($__fusion_1_pid: ID!) { productByPid(pid: $__fusion_1_pid) { c pid @@ -74,9 +72,7 @@ nodes: type: Operation schema: d operation: | - query Op_123456789101112_3( - $__fusion_2_pid: ID! - ) { + query Op_123456789101112_3($__fusion_2_pid: ID!) { productByPid(pid: $__fusion_2_pid) { d } @@ -93,9 +89,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_4( - $__fusion_3_id: ID! - ) { + query Op_123456789101112_4($__fusion_3_id: ID!) { productById(id: $__fusion_3_id) { pid } @@ -113,9 +107,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_5( - $__fusion_4_id: ID! - ) { + query Op_123456789101112_5($__fusion_4_id: ID!) { productById(id: $__fusion_4_id) { b } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Provides_Simple_Provides.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Provides_Simple_Provides.yaml index 925252115f7..68dd3cf7c2b 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Provides_Simple_Provides.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Provides_Simple_Provides.yaml @@ -27,9 +27,7 @@ nodes: type: Operation schema: reviews operation: | - query Op_123456789101112_2( - $__fusion_1_upc: String! - ) { + query Op_123456789101112_2($__fusion_1_upc: String!) { productByUpc(upc: $__fusion_1_upc) { reviews { author { diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Requires_Provides_Simple_Requires_Provides.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Requires_Provides_Simple_Requires_Provides.yaml index d24cd21f061..feaedfc8708 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Requires_Provides_Simple_Requires_Provides.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Requires_Provides_Simple_Requires_Provides.yaml @@ -33,9 +33,7 @@ nodes: type: Operation schema: reviews operation: | - query Op_123456789101112_2( - $__fusion_1_id: ID! - ) { + query Op_123456789101112_2($__fusion_1_id: ID!) { userById(id: $__fusion_1_id) { reviews { id @@ -61,9 +59,7 @@ nodes: type: Operation schema: inventory operation: | - query Op_123456789101112_3( - $__fusion_2_upc: String! - ) { + query Op_123456789101112_3($__fusion_2_upc: String!) { productByUpc(upc: $__fusion_2_upc) { inStock } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Union_Union_Overfetching_Test.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Union_Union_Overfetching_Test.yaml index 92b68f1b9ce..b1ff2c71510 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Union_Union_Overfetching_Test.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerAdvancedAdaptationTests.Union_Union_Overfetching_Test.yaml @@ -45,9 +45,7 @@ nodes: type: Operation schema: c operation: | - query Op_123456789101112_2( - $__fusion_1_id: ID! - ) { + query Op_123456789101112_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { c } @@ -64,9 +62,7 @@ nodes: type: Operation schema: d operation: | - query Op_123456789101112_3( - $__fusion_2_id: ID! - ) { + query Op_123456789101112_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { d } @@ -83,9 +79,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_4( - $__fusion_3_id: ID! - ) { + query Op_123456789101112_4($__fusion_3_id: ID!) { productById(id: $__fusion_3_id) { b } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Fragments_Fragment_Spread.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Fragments_Fragment_Spread.yaml index fcb76b2b594..aec991032bc 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Fragments_Fragment_Spread.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Fragments_Fragment_Spread.yaml @@ -28,9 +28,7 @@ nodes: type: Operation schema: cost operation: | - query Op_123456789101112_2( - $__fusion_1_uuid: ID! - ) { + query Op_123456789101112_2($__fusion_1_uuid: ID!) { productByUuid(uuid: $__fusion_1_uuid) { price { amount @@ -50,9 +48,7 @@ nodes: type: Operation schema: info operation: | - query Op_123456789101112_3( - $__fusion_2_id: ID! - ) { + query Op_123456789101112_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { isAvailable } @@ -70,9 +66,7 @@ nodes: type: Operation schema: info operation: | - query Op_123456789101112_4( - $__fusion_3_id: ID! - ) { + query Op_123456789101112_4($__fusion_3_id: ID!) { productById(id: $__fusion_3_id) { uuid } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Fragments_Simple_Inline_Fragment.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Fragments_Simple_Inline_Fragment.yaml index fcb76b2b594..aec991032bc 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Fragments_Simple_Inline_Fragment.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Fragments_Simple_Inline_Fragment.yaml @@ -28,9 +28,7 @@ nodes: type: Operation schema: cost operation: | - query Op_123456789101112_2( - $__fusion_1_uuid: ID! - ) { + query Op_123456789101112_2($__fusion_1_uuid: ID!) { productByUuid(uuid: $__fusion_1_uuid) { price { amount @@ -50,9 +48,7 @@ nodes: type: Operation schema: info operation: | - query Op_123456789101112_3( - $__fusion_2_id: ID! - ) { + query Op_123456789101112_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { isAvailable } @@ -70,9 +66,7 @@ nodes: type: Operation schema: info operation: | - query Op_123456789101112_4( - $__fusion_3_id: ID! - ) { + query Op_123456789101112_4($__fusion_3_id: ID!) { productById(id: $__fusion_3_id) { uuid } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Include_Skip_Basic_Include.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Include_Skip_Basic_Include.yaml index 5646bd2588b..56a05ab99fe 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Include_Skip_Basic_Include.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Include_Skip_Basic_Include.yaml @@ -1,8 +1,6 @@ operation: - document: | - query( - $include: Boolean - ) { + query($include: Boolean) { product { price price @fusion__requirement @@ -56,10 +54,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_4( - $__fusion_4_id: ID! - $__fusion_5_price: Float! - ) { + query Op_123456789101112_4($__fusion_4_id: ID!, $__fusion_5_price: Float!) { productById(id: $__fusion_4_id) { isExpensive(price: $__fusion_5_price) } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Include_Skip_Basic_Skip.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Include_Skip_Basic_Skip.yaml index bf8de6bbc9b..4c2ece076be 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Include_Skip_Basic_Skip.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Include_Skip_Basic_Skip.yaml @@ -1,8 +1,6 @@ operation: - document: | - query( - $skip: Boolean = false - ) { + query($skip: Boolean = false) { product { price price @fusion__requirement @@ -56,10 +54,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_4( - $__fusion_4_id: ID! - $__fusion_5_price: Float! - ) { + query Op_123456789101112_4($__fusion_4_id: ID!, $__fusion_5_price: Float!) { productById(id: $__fusion_4_id) { isExpensive(price: $__fusion_5_price) } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Include_Skip_Include_At_Root_Fetch.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Include_Skip_Include_At_Root_Fetch.yaml index 9e06d4af83b..b88ad10c5d0 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Include_Skip_Include_At_Root_Fetch.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Include_Skip_Include_At_Root_Fetch.yaml @@ -1,8 +1,6 @@ operation: - document: | - query( - $include: Boolean - ) { + query($include: Boolean) { product { id price @include(if: $include) @@ -16,9 +14,7 @@ nodes: type: Operation schema: a operation: | - query Op_123456789101112_1( - $include: Boolean - ) { + query Op_123456789101112_1($include: Boolean) { product { id price @include(if: $include) diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Include_Skip_Include_Fragment.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Include_Skip_Include_Fragment.yaml index 5646bd2588b..56a05ab99fe 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Include_Skip_Include_Fragment.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Include_Skip_Include_Fragment.yaml @@ -1,8 +1,6 @@ operation: - document: | - query( - $include: Boolean - ) { + query($include: Boolean) { product { price price @fusion__requirement @@ -56,10 +54,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_4( - $__fusion_4_id: ID! - $__fusion_5_price: Float! - ) { + query Op_123456789101112_4($__fusion_4_id: ID!, $__fusion_5_price: Float!) { productById(id: $__fusion_4_id) { isExpensive(price: $__fusion_5_price) } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Include_Skip_Include_Fragment_At_Root_Fetch.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Include_Skip_Include_Fragment_At_Root_Fetch.yaml index 9e06d4af83b..b88ad10c5d0 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Include_Skip_Include_Fragment_At_Root_Fetch.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Include_Skip_Include_Fragment_At_Root_Fetch.yaml @@ -1,8 +1,6 @@ operation: - document: | - query( - $include: Boolean - ) { + query($include: Boolean) { product { id price @include(if: $include) @@ -16,9 +14,7 @@ nodes: type: Operation schema: a operation: | - query Op_123456789101112_1( - $include: Boolean - ) { + query Op_123456789101112_1($include: Boolean) { product { id price @include(if: $include) diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Mutations.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Mutations.yaml index eb3b9cea3b8..4a69074d64b 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Mutations.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/PlannerBehaviorTests.Mutations.yaml @@ -29,10 +29,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_2( - $__fusion_1_id: ID! - $__fusion_2_price: Float! - ) { + query Op_123456789101112_2($__fusion_1_id: ID!, $__fusion_2_price: Float!) { productById(id: $__fusion_1_id) { isAvailable isExpensive(price: $__fusion_2_price) diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Multiple_Plain_Field_And_Requires_With_Args_That_Conflicts.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Multiple_Plain_Field_And_Requires_With_Args_That_Conflicts.yaml index 55948f35646..aed857ef32a 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Multiple_Plain_Field_And_Requires_With_Args_That_Conflicts.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Multiple_Plain_Field_And_Requires_With_Args_That_Conflicts.yaml @@ -27,10 +27,7 @@ nodes: type: Operation schema: a operation: | - query Op_123456789101112_2( - $__fusion_1_otherField: String! - $__fusion_2_id: ID! - ) { + query Op_123456789101112_2($__fusion_1_otherField: String!, $__fusion_2_id: ID!) { testById(id: $__fusion_2_id) { anotherWithRequiresAndArgs(otherField: $__fusion_1_otherField) } @@ -52,10 +49,7 @@ nodes: type: Operation schema: a operation: | - query Op_123456789101112_5( - $__fusion_5_otherField: String! - $__fusion_6_id: ID! - ) { + query Op_123456789101112_5($__fusion_5_otherField: String!, $__fusion_6_id: ID!) { testById(id: $__fusion_6_id) { fieldWithRequiresAndArgs(otherField: $__fusion_5_otherField) } @@ -77,9 +71,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_3( - $__fusion_3_id: ID! - ) { + query Op_123456789101112_3($__fusion_3_id: ID!) { testById(id: $__fusion_3_id) { otherField id @@ -98,9 +90,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_4( - $__fusion_4_id: ID! - ) { + query Op_123456789101112_4($__fusion_4_id: ID!) { testById(id: $__fusion_4_id) { id } @@ -118,9 +108,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_6( - $__fusion_7_id: ID! - ) { + query Op_123456789101112_6($__fusion_7_id: ID!) { testById(id: $__fusion_7_id) { otherField } @@ -138,9 +126,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_7( - $__fusion_8_id: ID! - ) { + query Op_123456789101112_7($__fusion_8_id: ID!) { testById(id: $__fusion_8_id) { otherField(arg: 1) } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Multiple_Plain_Field_And_Requires_With_Args_That_Does_Not_Conflicts_Should_Merge.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Multiple_Plain_Field_And_Requires_With_Args_That_Does_Not_Conflicts_Should_Merge.yaml index acdbfe434e6..2ad164660fc 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Multiple_Plain_Field_And_Requires_With_Args_That_Does_Not_Conflicts_Should_Merge.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Multiple_Plain_Field_And_Requires_With_Args_That_Does_Not_Conflicts_Should_Merge.yaml @@ -26,10 +26,7 @@ nodes: type: Operation schema: a operation: | - query Op_123456789101112_2( - $__fusion_1_otherField: String! - $__fusion_2_id: ID! - ) { + query Op_123456789101112_2($__fusion_1_otherField: String!, $__fusion_2_id: ID!) { testById(id: $__fusion_2_id) { fieldWithRequiresAndArgs(otherField: $__fusion_1_otherField) } @@ -49,9 +46,7 @@ nodes: type: OperationBatch schema: b operation: | - query Op_123456789101112_3( - $__fusion_3_id: ID! - ) { + query Op_123456789101112_3($__fusion_3_id: ID!) { testById(id: $__fusion_3_id) { otherField } @@ -71,9 +66,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_4( - $__fusion_4_id: ID! - ) { + query Op_123456789101112_4($__fusion_4_id: ID!) { testById(id: $__fusion_4_id) { id } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Multiple_Requires_With_Args_That_Conflicts.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Multiple_Requires_With_Args_That_Conflicts.yaml index d7e71ce72b1..170d99c1b08 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Multiple_Requires_With_Args_That_Conflicts.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Multiple_Requires_With_Args_That_Conflicts.yaml @@ -26,10 +26,7 @@ nodes: type: Operation schema: a operation: | - query Op_123456789101112_2( - $__fusion_1_otherField: String! - $__fusion_2_id: ID! - ) { + query Op_123456789101112_2($__fusion_1_otherField: String!, $__fusion_2_id: ID!) { testById(id: $__fusion_2_id) { anotherWithRequiresAndArgs(otherField: $__fusion_1_otherField) } @@ -51,10 +48,7 @@ nodes: type: Operation schema: a operation: | - query Op_123456789101112_5( - $__fusion_5_otherField: String! - $__fusion_6_id: ID! - ) { + query Op_123456789101112_5($__fusion_5_otherField: String!, $__fusion_6_id: ID!) { testById(id: $__fusion_6_id) { fieldWithRequiresAndArgs(otherField: $__fusion_5_otherField) } @@ -76,9 +70,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_3( - $__fusion_3_id: ID! - ) { + query Op_123456789101112_3($__fusion_3_id: ID!) { testById(id: $__fusion_3_id) { otherField id @@ -97,9 +89,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_4( - $__fusion_4_id: ID! - ) { + query Op_123456789101112_4($__fusion_4_id: ID!) { testById(id: $__fusion_4_id) { id } @@ -117,9 +107,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_6( - $__fusion_7_id: ID! - ) { + query Op_123456789101112_6($__fusion_7_id: ID!) { testById(id: $__fusion_7_id) { otherField } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Requires_Arguments_Deeply_Nested_Requires_With_Variable.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Requires_Arguments_Deeply_Nested_Requires_With_Variable.yaml index f24718d0e0c..e3a8dde03c9 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Requires_Arguments_Deeply_Nested_Requires_With_Variable.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Requires_Arguments_Deeply_Nested_Requires_With_Variable.yaml @@ -1,8 +1,6 @@ operation: - document: | - query( - $limit: Int = 1 - ) { + query($limit: Int = 1) { feed { author { id @@ -24,9 +22,7 @@ nodes: type: Operation schema: c operation: | - query Op_123456789101112_1( - $limit: Int = 1 - ) { + query Op_123456789101112_1($limit: Int = 1) { feed { comments(limit: $limit) { id diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Requires_Arguments_Deeply_Nested_Requires_With_Variables_And_Fragments.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Requires_Arguments_Deeply_Nested_Requires_With_Variables_And_Fragments.yaml index f24718d0e0c..e3a8dde03c9 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Requires_Arguments_Deeply_Nested_Requires_With_Variables_And_Fragments.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Requires_Arguments_Deeply_Nested_Requires_With_Variables_And_Fragments.yaml @@ -1,8 +1,6 @@ operation: - document: | - query( - $limit: Int = 1 - ) { + query($limit: Int = 1) { feed { author { id @@ -24,9 +22,7 @@ nodes: type: Operation schema: c operation: | - query Op_123456789101112_1( - $limit: Int = 1 - ) { + query Op_123456789101112_1($limit: Int = 1) { feed { comments(limit: $limit) { id diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Requires_With_Arguments.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Requires_With_Arguments.yaml index 4419f378d74..8a921375002 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Requires_With_Arguments.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Requires_With_Arguments.yaml @@ -70,9 +70,7 @@ nodes: type: Operation schema: c operation: | - query Op_123456789101112_3( - $__fusion_3_id: ID! - ) { + query Op_123456789101112_3($__fusion_3_id: ID!) { commentById(id: $__fusion_3_id) { somethingElse } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Simple_Requires_Arguments.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Simple_Requires_Arguments.yaml index 9ddbfa7cc3f..c998bf659dc 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Simple_Requires_Arguments.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementArgumentTests.Simple_Requires_Arguments.yaml @@ -25,10 +25,7 @@ nodes: type: Operation schema: a operation: | - query Op_123456789101112_2( - $__fusion_1_otherField: String! - $__fusion_2_id: ID! - ) { + query Op_123456789101112_2($__fusion_1_otherField: String!, $__fusion_2_id: ID!) { testById(id: $__fusion_2_id) { fieldWithRequiresAndArgs(otherField: $__fusion_1_otherField) } @@ -48,9 +45,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_3( - $__fusion_3_id: ID! - ) { + query Op_123456789101112_3($__fusion_3_id: ID!) { testById(id: $__fusion_3_id) { otherField } @@ -68,9 +63,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_4( - $__fusion_4_id: ID! - ) { + query Op_123456789101112_4($__fusion_4_id: ID!) { testById(id: $__fusion_4_id) { id } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementChainTests.Requires_Circular_2.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementChainTests.Requires_Circular_2.yaml index 9414bfb7c62..fabbeb6323f 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementChainTests.Requires_Circular_2.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementChainTests.Requires_Circular_2.yaml @@ -30,10 +30,7 @@ nodes: type: Operation schema: a operation: | - query Op_123456789101112_2( - $__fusion_1_byNovice: Boolean! - $__fusion_2_id: ID! - ) { + query Op_123456789101112_2($__fusion_1_byNovice: Boolean!, $__fusion_2_id: ID!) { postById(id: $__fusion_2_id) { byExpert(byNovice: $__fusion_1_byNovice) } @@ -77,9 +74,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_4( - $__fusion_5_id: ID! - ) { + query Op_123456789101112_4($__fusion_5_id: ID!) { postById(id: $__fusion_5_id) { id } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementChainTests.Requires_Requires_Many.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementChainTests.Requires_Requires_Many.yaml index 09b4fa58c12..8d2eed4a7f6 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementChainTests.Requires_Requires_Many.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementChainTests.Requires_Requires_Many.yaml @@ -36,9 +36,7 @@ nodes: type: Operation schema: a operation: | - query Op_123456789101112_2( - $__fusion_1_id: ID! - ) { + query Op_123456789101112_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { price } @@ -60,7 +58,9 @@ nodes: $__fusion_4_id: ID! ) { productById(id: $__fusion_4_id) { - canAffordWithDiscount2(isExpensiveWithDiscount: $__fusion_3_isExpensiveWithDiscount) + canAffordWithDiscount2( + isExpensiveWithDiscount: $__fusion_3_isExpensiveWithDiscount + ) } } source: $.productById @@ -85,7 +85,9 @@ nodes: $__fusion_8_id: ID! ) { productById(id: $__fusion_8_id) { - canAffordWithDiscount(isExpensiveWithDiscount: $__fusion_7_isExpensiveWithDiscount) + canAffordWithDiscount( + isExpensiveWithDiscount: $__fusion_7_isExpensiveWithDiscount + ) } } source: $.productById @@ -203,10 +205,7 @@ nodes: type: OperationBatch schema: c operation: | - query Op_123456789101112_9( - $__fusion_13_id: ID! - $__fusion_14_price: Float! - ) { + query Op_123456789101112_9($__fusion_13_id: ID!, $__fusion_14_price: Float!) { productById(id: $__fusion_13_id) { isExpensive(price: $__fusion_14_price) } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementChainTests.Requires_Requires_One.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementChainTests.Requires_Requires_One.yaml index 546fbdca8a4..38a49e144ec 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementChainTests.Requires_Requires_One.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementChainTests.Requires_Requires_One.yaml @@ -31,7 +31,9 @@ nodes: $__fusion_3_id: ID! ) { productById(id: $__fusion_3_id) { - canAffordWithDiscount(isExpensiveWithDiscount: $__fusion_2_isExpensiveWithDiscount) + canAffordWithDiscount( + isExpensiveWithDiscount: $__fusion_2_isExpensiveWithDiscount + ) } } source: $.productById diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementChainTests.Requires_Requires_Two_Fields_Same_Requirement_Different_Order.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementChainTests.Requires_Requires_Two_Fields_Same_Requirement_Different_Order.yaml index 54c4406b4f2..f27f2fe00cc 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementChainTests.Requires_Requires_Two_Fields_Same_Requirement_Different_Order.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementChainTests.Requires_Requires_Two_Fields_Same_Requirement_Different_Order.yaml @@ -35,7 +35,10 @@ nodes: $__fusion_3_id: ID! ) { productById(id: $__fusion_3_id) { - canAffordWithAndWithoutDiscount2(isExpensive: $__fusion_2_isExpensive, isExpensiveWithDiscount: $__fusion_2_isExpensiveWithDiscount) + canAffordWithAndWithoutDiscount2( + isExpensive: $__fusion_2_isExpensive + isExpensiveWithDiscount: $__fusion_2_isExpensiveWithDiscount + ) } } source: $.productById @@ -80,10 +83,7 @@ nodes: type: Operation schema: c operation: | - query Op_123456789101112_5( - $__fusion_6_price: Float! - $__fusion_7_id: ID! - ) { + query Op_123456789101112_5($__fusion_6_price: Float!, $__fusion_7_id: ID!) { productById(id: $__fusion_7_id) { isExpensive(price: $__fusion_6_price) } @@ -135,9 +135,7 @@ nodes: type: Operation schema: a operation: | - query Op_123456789101112_6( - $__fusion_8_id: ID! - ) { + query Op_123456789101112_6($__fusion_8_id: ID!) { productById(id: $__fusion_8_id) { price } @@ -160,7 +158,10 @@ nodes: $__fusion_9_isExpensiveWithDiscount: Boolean! ) { productById(id: $__fusion_10_id) { - canAffordWithAndWithoutDiscount(isExpensiveWithDiscount: $__fusion_9_isExpensiveWithDiscount, isExpensive: $__fusion_9_isExpensive) + canAffordWithAndWithoutDiscount( + isExpensiveWithDiscount: $__fusion_9_isExpensiveWithDiscount + isExpensive: $__fusion_9_isExpensive + ) } } source: $.productById diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementParityTests.Deep_Requires.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementParityTests.Deep_Requires.yaml index 1062a88ab38..b40ac354bb3 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementParityTests.Deep_Requires.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementParityTests.Deep_Requires.yaml @@ -55,9 +55,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_4( - $__fusion_4_id: ID! - ) { + query Op_123456789101112_4($__fusion_4_id: ID!) { postById(id: $__fusion_4_id) { comments { id @@ -76,9 +74,7 @@ nodes: type: Operation schema: c operation: | - query Op_123456789101112_5( - $__fusion_5_id: ID! - ) { + query Op_123456789101112_5($__fusion_5_id: ID!) { commentById(id: $__fusion_5_id) { authorId } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementParityTests.Keys_Mashup.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementParityTests.Keys_Mashup.yaml index ee17312eb6d..65015c7225d 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementParityTests.Keys_Mashup.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementParityTests.Keys_Mashup.yaml @@ -42,7 +42,11 @@ nodes: $__fusion_2_compositeIdTwo: ID! $__fusion_2_id: ID! ) { - aByIdAndCompositeId(id: $__fusion_2_id, compositeIdTwo: $__fusion_2_compositeIdTwo, compositeIdThree: $__fusion_2_compositeIdThree) { + aByIdAndCompositeId( + id: $__fusion_2_id + compositeIdTwo: $__fusion_2_compositeIdTwo + compositeIdThree: $__fusion_2_compositeIdThree + ) { nameInB(name: $__fusion_1_name) } } @@ -67,9 +71,7 @@ nodes: type: OperationBatch schema: a operation: | - query Op_123456789101112_3( - $__fusion_3_id: ID! - ) { + query Op_123456789101112_3($__fusion_3_id: ID!) { aById(id: $__fusion_3_id) { name } @@ -89,9 +91,7 @@ nodes: type: Operation schema: a operation: | - query Op_123456789101112_4( - $__fusion_4_id: ID! - ) { + query Op_123456789101112_4($__fusion_4_id: ID!) { aById(id: $__fusion_4_id) { id compositeId { diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementParityTests.Requires_With_Fragments_On_Interfaces.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementParityTests.Requires_With_Fragments_On_Interfaces.yaml index 9fdfbef000b..1f839446f94 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementParityTests.Requires_With_Fragments_On_Interfaces.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementParityTests.Requires_With_Fragments_On_Interfaces.yaml @@ -59,7 +59,12 @@ nodes: $__fusion_2_guestToken: String ) { userById(id: $__fusion_1_id) { - permissions(displayName: $__fusion_2_displayName, accountType: $__fusion_2_accountType, adminLevel: $__fusion_2_adminLevel, guestToken: $__fusion_2_guestToken) + permissions( + displayName: $__fusion_2_displayName + accountType: $__fusion_2_accountType + adminLevel: $__fusion_2_adminLevel + guestToken: $__fusion_2_guestToken + ) } } source: $.userById diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementParityTests.Simplest_Requires.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementParityTests.Simplest_Requires.yaml index 87bb700aaea..757b70e88fc 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementParityTests.Simplest_Requires.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementParityTests.Simplest_Requires.yaml @@ -25,10 +25,7 @@ nodes: type: Operation schema: inventory operation: | - query Op_123456789101112_2( - $__fusion_1_upc: String! - $__fusion_2_price: Int - ) { + query Op_123456789101112_2($__fusion_1_upc: String!, $__fusion_2_price: Int) { productByUpc(upc: $__fusion_1_upc) { isExpensive(price: $__fusion_2_price) } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementParityTests.Two_Same_Service_Calls_With_Args_Conflicts.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementParityTests.Two_Same_Service_Calls_With_Args_Conflicts.yaml index 7ad04cb61a7..a91001924f7 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementParityTests.Two_Same_Service_Calls_With_Args_Conflicts.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementParityTests.Two_Same_Service_Calls_With_Args_Conflicts.yaml @@ -26,10 +26,7 @@ nodes: type: Operation schema: inventory operation: | - query Op_123456789101112_2( - $__fusion_1_price: Int - $__fusion_2_upc: String! - ) { + query Op_123456789101112_2($__fusion_1_price: Int, $__fusion_2_upc: String!) { productByUpc(upc: $__fusion_2_upc) { reducedPrice(price: $__fusion_1_price) } @@ -51,10 +48,7 @@ nodes: type: Operation schema: inventory operation: | - query Op_123456789101112_5( - $__fusion_5_price: Int - $__fusion_6_upc: String! - ) { + query Op_123456789101112_5($__fusion_5_price: Int, $__fusion_6_upc: String!) { productByUpc(upc: $__fusion_6_upc) { isExpensive(price: $__fusion_5_price) } @@ -76,9 +70,7 @@ nodes: type: Operation schema: products operation: | - query Op_123456789101112_3( - $__fusion_3_upc: String! - ) { + query Op_123456789101112_3($__fusion_3_upc: String!) { productByUpc(upc: $__fusion_3_upc) { price upc @@ -97,9 +89,7 @@ nodes: type: Operation schema: products operation: | - query Op_123456789101112_4( - $__fusion_4_upc: String! - ) { + query Op_123456789101112_4($__fusion_4_upc: String!) { productByUpc(upc: $__fusion_4_upc) { upc } @@ -117,9 +107,7 @@ nodes: type: Operation schema: products operation: | - query Op_123456789101112_6( - $__fusion_7_upc: String! - ) { + query Op_123456789101112_6($__fusion_7_upc: String!) { productByUpc(upc: $__fusion_7_upc) { price } @@ -137,9 +125,7 @@ nodes: type: Operation schema: products operation: | - query Op_123456789101112_7( - $__fusion_8_upc: String! - ) { + query Op_123456789101112_7($__fusion_8_upc: String!) { productByUpc(upc: $__fusion_8_upc) { price(withDiscount: true) } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Plan_Complex_Operation.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Plan_Complex_Operation.yaml index 7a851cec47d..cb778547cec 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Plan_Complex_Operation.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Plan_Complex_Operation.yaml @@ -1,8 +1,6 @@ operation: - document: | - query getReviews( - $userId: ID! - ) { + query getReviews($userId: ID!) { userById(id: $userId) { name } @@ -49,9 +47,7 @@ nodes: - id: 2 type: Operation operation: | - query getReviews_123456789101112_2( - $userId: ID! - ) { + query getReviews_123456789101112_2($userId: ID!) { node(id: $userId) { __typename id @@ -65,9 +61,7 @@ nodes: type: Operation schema: a operation: | - query getReviews_123456789101112_3( - $userId: ID! - ) { + query getReviews_123456789101112_3($userId: ID!) { node(id: $userId) { __typename ... on User { @@ -85,9 +79,7 @@ nodes: type: Operation schema: a operation: | - query getReviews_123456789101112_4( - $userId: ID! - ) { + query getReviews_123456789101112_4($userId: ID!) { userById(id: $userId) { name } @@ -103,9 +95,7 @@ nodes: type: Operation schema: f operation: | - query getReviews_123456789101112_5( - $__fusion_1_id: ID! - ) { + query getReviews_123456789101112_5($__fusion_1_id: ID!) { userById(id: $__fusion_1_id) { reviews { nodes { @@ -157,9 +147,7 @@ nodes: type: Operation schema: e operation: | - query getReviews_123456789101112_8( - $__fusion_5_id: ID! - ) { + query getReviews_123456789101112_8($__fusion_5_id: ID!) { productById(id: $__fusion_5_id) { weight dimension { diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Plan_Simple_Operation_1_Source_Schema.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Plan_Simple_Operation_1_Source_Schema.yaml index ce46c233e6b..32ee1221f6f 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Plan_Simple_Operation_1_Source_Schema.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Plan_Simple_Operation_1_Source_Schema.yaml @@ -25,10 +25,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_2( - $__fusion_1_id: String! - $__fusion_2_title: String - ) { + query Op_123456789101112_2($__fusion_1_id: String!, $__fusion_2_title: String) { bookById(id: $__fusion_1_id) { titleAndId(title: $__fusion_2_title) } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Requirement_Directive_Leaks_Into_SourceSchema_Request_Shop.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Requirement_Directive_Leaks_Into_SourceSchema_Request_Shop.yaml index 8b39c37b372..bdfccf75c63 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Requirement_Directive_Leaks_Into_SourceSchema_Request_Shop.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Requirement_Directive_Leaks_Into_SourceSchema_Request_Shop.yaml @@ -1,8 +1,6 @@ operation: - document: | - query findMe( - $skip: Boolean = true - ) { + query findMe($skip: Boolean = true) { users { nodes { id @@ -79,9 +77,7 @@ nodes: type: Operation schema: f operation: | - query findMe_123456789101112_2( - $__fusion_1_id: ID! - ) { + query findMe_123456789101112_2($__fusion_1_id: ID!) { userById(id: $__fusion_1_id) { reviews { nodes { @@ -123,9 +119,7 @@ nodes: type: Operation schema: e operation: | - query findMe_123456789101112_3( - $__fusion_2_id: ID! - ) { + query findMe_123456789101112_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { weight pictureFileName @@ -150,9 +144,7 @@ nodes: type: Operation schema: e operation: | - query findMe_123456789101112_8( - $__fusion_8_id: ID! - ) { + query findMe_123456789101112_8($__fusion_8_id: ID!) { productById(id: $__fusion_8_id) { weight } @@ -170,9 +162,7 @@ nodes: type: Operation schema: b operation: | - query findMe_123456789101112_4( - $__fusion_3_id: ID! - ) { + query findMe_123456789101112_4($__fusion_3_id: ID!) { productByIdAsync(id: $__fusion_3_id) { quantity } @@ -193,9 +183,7 @@ nodes: type: Operation schema: b operation: | - query findMe_123456789101112_7( - $__fusion_7_id: ID! - ) { + query findMe_123456789101112_7($__fusion_7_id: ID!) { productByIdAsync(id: $__fusion_7_id) { item { quantity @@ -247,9 +235,7 @@ nodes: type: Operation schema: a operation: | - query findMe_123456789101112_6( - $__fusion_6_id: ID! - ) { + query findMe_123456789101112_6($__fusion_6_id: ID!) { userById(id: $__fusion_6_id) { birthdate } @@ -266,9 +252,7 @@ nodes: type: Operation schema: e operation: | - query findMe_123456789101112_9( - $__fusion_9_id: ID! - ) { + query findMe_123456789101112_9($__fusion_9_id: ID!) { productById(id: $__fusion_9_id) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Requirement_Merged_Into_SelectionSet_With_Non_Lead_Field.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Requirement_Merged_Into_SelectionSet_With_Non_Lead_Field.yaml index 5f6f56343f1..525697e5989 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Requirement_Merged_Into_SelectionSet_With_Non_Lead_Field.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Requirement_Merged_Into_SelectionSet_With_Non_Lead_Field.yaml @@ -31,10 +31,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_2( - $__fusion_1_id: Int! - $__fusion_2_name: String! - ) { + query Op_123456789101112_2($__fusion_1_id: Int!, $__fusion_2_name: String!) { productById(id: $__fusion_1_id) { nameAndId(name: $__fusion_2_name) } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Requirement_SelectionMap_Object.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Requirement_SelectionMap_Object.yaml index 70e4d9381fa..f76244bf741 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Requirement_SelectionMap_Object.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Requirement_SelectionMap_Object.yaml @@ -34,10 +34,7 @@ nodes: type: Operation schema: b operation: | - query Op_123456789101112_2( - $__fusion_1_id: Int! - $__fusion_2_input: NameInput - ) { + query Op_123456789101112_2($__fusion_1_id: Int!, $__fusion_2_input: NameInput) { productById(id: $__fusion_1_id) { nameAndId(input: $__fusion_2_input) } diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Requirement_SelectionMap_Object_Shop.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Requirement_SelectionMap_Object_Shop.yaml index 4156430cf53..5400953b23d 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Requirement_SelectionMap_Object_Shop.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/RequirementTests.Requirement_SelectionMap_Object_Shop.yaml @@ -40,9 +40,7 @@ nodes: type: Operation schema: f operation: | - query Op_123456789101112_2( - $__fusion_1_id: ID! - ) { + query Op_123456789101112_2($__fusion_1_id: ID!) { userById(id: $__fusion_1_id) { reviews { nodes { @@ -94,9 +92,7 @@ nodes: type: Operation schema: e operation: | - query Op_123456789101112_5( - $__fusion_5_id: ID! - ) { + query Op_123456789101112_5($__fusion_5_id: ID!) { productById(id: $__fusion_5_id) { weight dimension { diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/ShopPlanningTests.Medium_Query_With_Aliases.yaml b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/ShopPlanningTests.Medium_Query_With_Aliases.yaml index 9b620bfdf1c..1d61145e9b3 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/ShopPlanningTests.Medium_Query_With_Aliases.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/ShopPlanningTests.Medium_Query_With_Aliases.yaml @@ -132,9 +132,7 @@ nodes: type: Operation schema: f operation: | - query Op_123456789101112_2( - $__fusion_1_id: ID! - ) { + query Op_123456789101112_2($__fusion_1_id: ID!) { productById(id: $__fusion_1_id) { reviews { nodes { @@ -178,9 +176,7 @@ nodes: type: OperationBatch schema: e operation: | - query Op_123456789101112_3( - $__fusion_2_id: ID! - ) { + query Op_123456789101112_3($__fusion_2_id: ID!) { productById(id: $__fusion_2_id) { weight pictureFileName @@ -207,9 +203,7 @@ nodes: type: OperationBatch schema: e operation: | - query Op_123456789101112_10( - $__fusion_11_id: ID! - ) { + query Op_123456789101112_10($__fusion_11_id: ID!) { productById(id: $__fusion_11_id) { weight } @@ -229,9 +223,7 @@ nodes: type: OperationBatch schema: b operation: | - query Op_123456789101112_4( - $__fusion_3_id: ID! - ) { + query Op_123456789101112_4($__fusion_3_id: ID!) { productByIdAsync(id: $__fusion_3_id) { quantity item { @@ -292,9 +284,7 @@ nodes: type: OperationBatch schema: f operation: | - query Op_123456789101112_6( - $__fusion_6_id: ID! - ) { + query Op_123456789101112_6($__fusion_6_id: ID!) { productById(id: $__fusion_6_id) { reviews { edges { @@ -322,9 +312,7 @@ nodes: type: OperationBatch schema: e operation: | - query Op_123456789101112_7( - $__fusion_7_id: ID! - ) { + query Op_123456789101112_7($__fusion_7_id: ID!) { productById(id: $__fusion_7_id) { weight pictureFileName @@ -350,9 +338,7 @@ nodes: type: OperationBatch schema: a operation: | - query Op_123456789101112_9( - $__fusion_10_id: ID! - ) { + query Op_123456789101112_9($__fusion_10_id: ID!) { userById(id: $__fusion_10_id) { birthdate } @@ -372,9 +358,7 @@ nodes: type: OperationBatch schema: a operation: | - query Op_123456789101112_11( - $__fusion_12_id: ID! - ) { + query Op_123456789101112_11($__fusion_12_id: ID!) { userById(id: $__fusion_12_id) { birthdate username diff --git a/src/HotChocolate/Fusion/test/Fusion.Utilities.Tests/Rewriters/DocumentRewriterTests.cs b/src/HotChocolate/Fusion/test/Fusion.Utilities.Tests/Rewriters/DocumentRewriterTests.cs index f7877ffde7d..47de51660b1 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Utilities.Tests/Rewriters/DocumentRewriterTests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Utilities.Tests/Rewriters/DocumentRewriterTests.cs @@ -401,9 +401,7 @@ description @skip(if: false) // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productById(id: 1) { description id @skip(if: $skip) @@ -443,9 +441,7 @@ name @skip(if: $skip) // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productById(id: 1) { id name @include(if: $skip) @@ -495,9 +491,7 @@ fragment ProductFragment2 on Product { // assert rewritten.MatchInlineSnapshot( """ - query( - $slug: String! - ) { + query($slug: String!) { productBySlug(slug: $slug) { reviews { nodes { @@ -542,9 +536,7 @@ public void Merge_Fields_With_Aliases() // assert rewritten.MatchInlineSnapshot( """ - query( - $slug: String! - ) { + query($slug: String!) { productBySlug(slug: $slug) { a: name name @@ -579,9 +571,7 @@ id @fusion__requirement // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productById(id: 1) { id @fusion__requirement } @@ -613,9 +603,7 @@ name @skip(if: $skip) // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productBySlug(slug: "a") { name } @@ -649,9 +637,7 @@ name @skip(if: $skip) // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productBySlug(slug: "a") { name } @@ -685,9 +671,7 @@ public void Field_With_SelectionSet_With_Conditional_Merged_With_Unconditional_F // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productBySlug(slug: "a") { description name @skip(if: $skip) @@ -722,9 +706,7 @@ public void Field_With_SelectionSet_With_Conditional_Merged_With_Unconditional_F // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productBySlug(slug: "a") { name description @skip(if: $skip) @@ -763,9 +745,7 @@ dimension @skip(if: $skip) { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productBySlug(slug: "a") { dimension { width @@ -806,9 +786,7 @@ dimension @skip(if: $skip) { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productBySlug(slug: "a") { dimension { height @@ -849,9 +827,7 @@ public void Parent_Field_With_Conditional_Merged_With_Unconditional_Nested_Field // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productBySlug(slug: "a") { dimension { width @@ -892,9 +868,7 @@ public void Parent_Field_With_Conditional_Merged_With_Unconditional_Nested_Field // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productBySlug(slug: "a") { dimension { height @@ -928,9 +902,7 @@ name @skip(if: $skip) // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productBySlug(slug: "a") @skip(if: $skip) { name } @@ -964,9 +936,7 @@ name @skip(if: $skip) // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productBySlug(slug: "a") { name @skip(if: $skip) } @@ -1004,9 +974,7 @@ width @skip(if: $skip) // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productBySlug(slug: "a") { dimension { ... @skip(if: $skip) { @@ -1045,10 +1013,7 @@ name @skip(if: $skip) @include(if: $include) // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - $include: Boolean! - ) { + query($skip: Boolean!, $include: Boolean!) { productBySlug(slug: "a") { name @skip(if: $skip) @include(if: $include) } @@ -1086,9 +1051,7 @@ fragment Fragment1 on Query { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productBySlug(slug: "a") { description name @skip(if: $skip) @@ -1127,9 +1090,7 @@ fragment Fragment1 on Query { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productBySlug(slug: "a") { name description @skip(if: $skip) @@ -1182,9 +1143,7 @@ ... on Product @skip(if: $skip) { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { votables { ... on Product { viewerCanVote @@ -1238,9 +1197,7 @@ ... on Product @skip(if: $skip) { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { votables { ... on Product { voteCount @@ -1295,9 +1252,7 @@ ... @skip(if: $skip) { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { votables { ... on Product { voteCount @@ -1355,9 +1310,7 @@ voteCount @skip(if: $skip) // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { votables { ... on Product { voteCount @@ -1412,9 +1365,7 @@ ... on Votable @skip(if: $skip) { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { votables { ... on Product { voteCount @@ -1468,10 +1419,7 @@ dimension @skip(if: $skip2) { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip1: Boolean! - $skip2: Boolean! - ) { + query($skip1: Boolean!, $skip2: Boolean!) { productBySlug(slug: "a") { name ... @skip(if: $skip1) { @@ -1508,10 +1456,7 @@ type Dimension { var doc = Utf8GraphQLParser.Parse( """ - query( - $skip1: Boolean! - $skip2: Boolean! - ) { + query($skip1: Boolean!, $skip2: Boolean!) { productBySlug(slug: "a") { name ... @skip(if: $skip1) { @@ -1533,10 +1478,7 @@ ... @skip(if: $skip2) { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip1: Boolean! - $skip2: Boolean! - ) { + query($skip1: Boolean!, $skip2: Boolean!) { productBySlug(slug: "a") { name ... @skip(if: $skip1) { @@ -1567,10 +1509,7 @@ type Product { var doc = Utf8GraphQLParser.Parse( """ - query( - $skip1: Boolean! - $skip2: Boolean! - ) { + query($skip1: Boolean!, $skip2: Boolean!) { productBySlug(slug: "a") { name @skip(if: $skip1) name @skip(if: $skip2) @@ -1585,10 +1524,7 @@ name @skip(if: $skip2) // assert rewritten.MatchInlineSnapshot( """ - query( - $skip1: Boolean! - $skip2: Boolean! - ) { + query($skip1: Boolean!, $skip2: Boolean!) { productBySlug(slug: "a") { name @skip(if: $skip1) name @skip(if: $skip2) @@ -1621,10 +1557,7 @@ type Product implements Votable { var doc = Utf8GraphQLParser.Parse( """ - query( - $skip1: Boolean!, - $skip2: Boolean! - ) { + query($skip1: Boolean!,, $skip2: Boolean!) { votables { ... on Product @skip(if: $skip1) { voteCount @@ -1644,10 +1577,7 @@ ... on Product @skip(if: $skip2) { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip1: Boolean! - $skip2: Boolean! - ) { + query($skip1: Boolean!, $skip2: Boolean!) { votables { ... on Product @skip(if: $skip1) { voteCount @@ -1687,10 +1617,7 @@ type Product implements Votable { var doc = Utf8GraphQLParser.Parse( """ - query( - $skip1: Boolean!, - $skip2: Boolean! - ) { + query($skip1: Boolean!,, $skip2: Boolean!) { votables { ... on Product @skip(if: $skip1) { voteCount @@ -1711,10 +1638,7 @@ ... on Product @skip(if: $skip2) { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip1: Boolean! - $skip2: Boolean! - ) { + query($skip1: Boolean!, $skip2: Boolean!) { votables { voteCount ... on Product @skip(if: $skip1) { @@ -1758,10 +1682,7 @@ dimension @include(if: $include) { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - $include: Boolean! - ) { + query($skip: Boolean!, $include: Boolean!) { productBySlug(slug: "a") @skip(if: $skip) { dimension @include(if: $include) { width @@ -1802,10 +1723,7 @@ dimension @include(if: $include) { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - $include: Boolean! - ) { + query($skip: Boolean!, $include: Boolean!) { productBySlug(slug: "a") { dimension @skip(if: $skip) @include(if: $include) { width @@ -1869,9 +1787,7 @@ ... @skip(if: $skip) { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productBySlug(slug: "a") { name dimension @skip(if: $skip) { @@ -1910,10 +1826,7 @@ ... @include(if: $include) @skip(if: $skip) { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - $include: Boolean! - ) { + query($skip: Boolean!, $include: Boolean!) { productBySlug(slug: "a") @skip(if: $skip) { name description @include(if: $include) @@ -1980,11 +1893,7 @@ ... @skip(if: $skip3) { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip1: Boolean! - $skip2: Boolean! - $skip3: Boolean! - ) { + query($skip1: Boolean!, $skip2: Boolean!, $skip3: Boolean!) { productBySlug(slug: "a") { name dimension @skip(if: $skip1) { @@ -2050,9 +1959,7 @@ ... @skip(if: $skip) { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productBySlug(slug: "a") { dimension { ... @skip(if: $skip) { @@ -2097,9 +2004,7 @@ ... @skip(if: $skip) { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productBySlug(slug: "a") { name ... @skip(if: $skip) { @@ -2137,9 +2042,7 @@ public void Field_With_Conditional_And_Alias_Merged_With_Same_Field_Different_Al // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productBySlug(slug: "a") { secondaryName: name primaryName: name @skip(if: $skip) @@ -2176,9 +2079,7 @@ description @skip(if: $skip) // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productBySlug(slug: "a") { name description @@ -2220,9 +2121,7 @@ ... @skip(if: $skip) { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productBySlug(slug: "a") { name dimension { @@ -2260,9 +2159,7 @@ ... @include(if: $include) { // assert rewritten.MatchInlineSnapshot( """ - query( - $include: Boolean! - ) { + query($include: Boolean!) { productBySlug(slug: "a") { ... @include(if: $include) { name @@ -2325,10 +2222,7 @@ ... @skip(if: $skip2) { // assert - should merge dimension fields appropriately rewritten.MatchInlineSnapshot( """ - query( - $skip1: Boolean! - $skip2: Boolean! - ) { + query($skip1: Boolean!, $skip2: Boolean!) { productBySlug(slug: "a") { name dimension { @@ -2387,9 +2281,7 @@ ... @skip(if: $skip) { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { votables { ... @skip(if: $skip) { viewerCanVote @@ -2435,9 +2327,7 @@ fragment ProductFields on Product { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productBySlug(slug: "a") { name ... @skip(if: $skip) { @@ -2477,9 +2367,7 @@ public void Field_Arguments_With_Different_Values_And_Conditionals_Not_Merged() // assert rewritten.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { product1: productBySlug(slug: "a") { name } @@ -2550,10 +2438,7 @@ ... @skip(if: $skip2) { // assert rewritten.MatchInlineSnapshot( """ - query( - $skip1: Boolean! - $skip2: Boolean! - ) { + query($skip1: Boolean!, $skip2: Boolean!) { productBySlug(slug: "a") { name dimension @skip(if: $skip1) { @@ -2612,9 +2497,7 @@ dimension @include(if: $conditional) { // assert rewritten.MatchInlineSnapshot( """ - query( - $conditional: Boolean! - ) { + query($conditional: Boolean!) { productBySlug(slug: "a") @skip(if: $conditional) { name } @@ -2663,9 +2546,7 @@ dimension @skip(if: $conditional) { // assert rewritten.MatchInlineSnapshot( """ - query( - $conditional: Boolean! - ) { + query($conditional: Boolean!) { productBySlug(slug: "a") @include(if: $conditional) { name } diff --git a/src/HotChocolate/Fusion/test/Fusion.Utilities.Tests/Rewriters/InlineFragmentOperationRewriterTests.cs b/src/HotChocolate/Fusion/test/Fusion.Utilities.Tests/Rewriters/InlineFragmentOperationRewriterTests.cs index 23ed60aa5fd..043741a0658 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Utilities.Tests/Rewriters/InlineFragmentOperationRewriterTests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Utilities.Tests/Rewriters/InlineFragmentOperationRewriterTests.cs @@ -408,9 +408,7 @@ description @skip(if: false) // assert result.Document.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productById(id: 1) { id @skip(if: $skip) description @@ -450,9 +448,7 @@ name @skip(if: $skip) // assert result.Document.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productById(id: 1) { id name @include(if: $skip) @@ -502,9 +498,7 @@ fragment ProductFragment2 on Product { // assert result.Document.MatchInlineSnapshot( """ - query( - $slug: String! - ) { + query($slug: String!) { productBySlug(slug: $slug) { reviews { nodes { @@ -549,9 +543,7 @@ public void Merge_Fields_With_Aliases() // assert result.Document.MatchInlineSnapshot( """ - query( - $slug: String! - ) { + query($slug: String!) { productBySlug(slug: $slug) { a: name name @@ -586,9 +578,7 @@ id @fusion__requirement // assert result.Document.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productById(id: 1) { id @fusion__requirement } @@ -730,9 +720,7 @@ name @include(if: $skip) // assert result.Document.MatchInlineSnapshot( """ - query( - $skip: Boolean! - ) { + query($skip: Boolean!) { productById(id: 1) { name @include(if: $skip) id diff --git a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/ISyntaxWriter.cs b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/ISyntaxWriter.cs index e692d6caae9..c25df949dc9 100644 --- a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/ISyntaxWriter.cs +++ b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/ISyntaxWriter.cs @@ -5,6 +5,11 @@ namespace HotChocolate.Language.Utilities; /// public interface ISyntaxWriter { + /// + /// Gets the current column position in the output. + /// + int Column { get; } + /// /// Increase writer indentation. /// diff --git a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/StringSyntaxWriter.cs b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/StringSyntaxWriter.cs index a2bc7a1007d..9bc42ff8915 100644 --- a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/StringSyntaxWriter.cs +++ b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/StringSyntaxWriter.cs @@ -6,6 +6,7 @@ public class StringSyntaxWriter : ISyntaxWriter { private static readonly StringSyntaxWriterPool s_pool = new(); private int _indent; + private int _column; public static StringSyntaxWriter Rent() { @@ -19,6 +20,9 @@ public static void Return(StringSyntaxWriter writer) internal StringBuilder StringBuilder { get; } = new(); + /// + public int Column => _column; + public void Indent() { _indent++; @@ -35,18 +39,40 @@ public void Unindent() public void Write(char c) { StringBuilder.Append(c); + + if (c == '\n') + { + _column = 0; + } + else + { + _column++; + } } public void Write(string s) { StringBuilder.Append(s); + + var lastNewLine = s.LastIndexOf('\n'); + + if (lastNewLine >= 0) + { + _column = s.Length - lastNewLine - 1; + } + else + { + _column += s.Length; + } } public void WriteIndent(bool condition = true) { if (condition && _indent > 0) { - StringBuilder.Append(' ', 2 * _indent); + var spaces = 2 * _indent; + StringBuilder.Append(' ', spaces); + _column += spaces; } } @@ -55,6 +81,7 @@ public void WriteLine(bool condition = true) if (condition) { StringBuilder.AppendLine(); + _column = 0; } } @@ -63,12 +90,14 @@ public void WriteSpace(bool condition = true) if (condition) { StringBuilder.Append(' '); + _column++; } } public void Clear() { StringBuilder.Clear(); + _column = 0; } public override string ToString() diff --git a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.QuerySyntax.cs b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.QuerySyntax.cs index 29c4ee3c314..d942147cba1 100644 --- a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.QuerySyntax.cs +++ b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.QuerySyntax.cs @@ -24,40 +24,114 @@ private void VisitOperationDefinition( } if (node.VariableDefinitions.Count > 0) + { + WriteVariableDefinitions(node.VariableDefinitions, writer); + } + + WriteDirectives(node.Directives, writer); + + if (writeOperation) + { + writer.WriteSpace(); + } + VisitSelectionSet(node.SelectionSet, writer); + } + + private void WriteVariableDefinitions( + IReadOnlyList variableDefinitions, + ISyntaxWriter writer) + { + if (!_indented) { writer.Write('('); + writer.WriteMany(variableDefinitions, VisitVariableDefinition, ", "); + writer.Write(')'); + return; + } - string separator; - if (_indented) - { - writer.WriteLine(); - writer.Indent(); - separator = Environment.NewLine; - } - else + var flatWidth = MeasureFlatVariableDefinitions(variableDefinitions); + + if (writer.Column + flatWidth <= _printWidth) + { + writer.Write('('); + + for (var i = 0; i < variableDefinitions.Count; i++) { - separator = ", "; + if (i > 0) + { + writer.Write(", "); + } + + WriteFlatVariableDefinition(variableDefinitions[i], writer); } - writer.WriteMany(node.VariableDefinitions, VisitVariableDefinition, separator); + writer.Write(')'); + } + else + { + writer.Write('('); + writer.Indent(); - if (_indented) + foreach (var variableDefinition in variableDefinitions) { writer.WriteLine(); - writer.Unindent(); + VisitVariableDefinition(variableDefinition, writer); } + writer.WriteLine(); + writer.Unindent(); writer.WriteIndent(); writer.Write(')'); } + } - WriteDirectives(node.Directives, writer); + private int MeasureFlatVariableDefinitions( + IReadOnlyList variableDefinitions) + { + var writer = StringSyntaxWriter.Rent(); - if (writeOperation) + try + { + writer.Write("("); + + for (var i = 0; i < variableDefinitions.Count; i++) + { + if (i > 0) + { + writer.Write(", "); + } + + WriteFlatVariableDefinition(variableDefinitions[i], writer); + } + + writer.Write(")"); + return writer.Column; + } + finally + { + StringSyntaxWriter.Return(writer); + } + } + + private void WriteFlatVariableDefinition( + VariableDefinitionNode node, + ISyntaxWriter writer) + { + writer.WriteVariable(node.Variable); + writer.Write(": "); + writer.WriteType(node.Type); + + if (node.DefaultValue is not null) + { + writer.Write(" = "); + writer.WriteValue(node.DefaultValue, false); + } + + foreach (var directive in node.Directives) { writer.WriteSpace(); + writer.WriteDirective(directive); } - VisitSelectionSet(node.SelectionSet, writer); } private void VisitVariableDefinition(VariableDefinitionNode node, ISyntaxWriter writer) @@ -93,33 +167,7 @@ private void VisitFragmentDefinition(FragmentDefinitionNode node, ISyntaxWriter if (node.VariableDefinitions.Count > 0) { - writer.Write('('); - - string separator; - if (_indented) - { - writer.WriteLine(); - writer.Indent(); - separator = Environment.NewLine; - } - else - { - separator = ", "; - } - - writer.WriteMany( - node.VariableDefinitions, - VisitVariableDefinition, - separator); - - if (_indented) - { - writer.WriteLine(); - writer.Unindent(); - } - - writer.WriteIndent(); - writer.Write(')'); + WriteVariableDefinitions(node.VariableDefinitions, writer); writer.WriteSpace(); } @@ -198,9 +246,7 @@ private void VisitField(FieldNode node, ISyntaxWriter writer) if (node.Arguments.Count > 0) { - writer.Write('('); - writer.WriteMany(node.Arguments, (n, w) => w.WriteArgument(n)); - writer.Write(')'); + WriteArguments(node.Arguments, writer); } WriteDirectives(node.Directives, writer); @@ -212,6 +258,62 @@ private void VisitField(FieldNode node, ISyntaxWriter writer) } } + private void WriteArguments( + IReadOnlyList arguments, + ISyntaxWriter writer) + { + if (!_indented) + { + writer.Write('('); + writer.WriteMany(arguments, (n, w) => w.WriteArgument(n)); + writer.Write(')'); + return; + } + + var flatWidth = MeasureFlatArguments(arguments); + + if (writer.Column + flatWidth <= _printWidth) + { + writer.Write('('); + writer.WriteMany(arguments, (n, w) => w.WriteArgument(n)); + writer.Write(')'); + } + else + { + writer.Write('('); + writer.Indent(); + + foreach (var argument in arguments) + { + writer.WriteLine(); + writer.WriteIndent(); + writer.WriteArgument(argument); + } + + writer.WriteLine(); + writer.Unindent(); + writer.WriteIndent(); + writer.Write(')'); + } + } + + private int MeasureFlatArguments(IReadOnlyList arguments) + { + var writer = StringSyntaxWriter.Rent(); + + try + { + writer.Write("("); + writer.WriteMany(arguments, (n, w) => w.WriteArgument(n)); + writer.Write(")"); + return writer.Column; + } + finally + { + StringSyntaxWriter.Return(writer); + } + } + private void VisitFragmentSpread(FragmentSpreadNode node, ISyntaxWriter writer) { writer.Write("... "); diff --git a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.SchemaSyntax.cs b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.SchemaSyntax.cs index a5148b4f433..20542b1da27 100644 --- a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.SchemaSyntax.cs +++ b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.SchemaSyntax.cs @@ -312,21 +312,76 @@ private void VisitFieldDefinition( writer.WriteName(node.Name); if (node.Arguments.Count > 0) + { + WriteArgumentDefinitions(node.Arguments, writer); + } + + writer.Write(":"); + writer.WriteSpace(); + + writer.WriteType(node.Type); + + WriteDirectives(node.Directives, writer); + } + + private void WriteArgumentDefinitions( + IReadOnlyList arguments, + ISyntaxWriter writer) + { + if (!_indented) { writer.Write("("); writer.WriteMany( - node.Arguments, + arguments, VisitArgumentValueDefinition, w => w.WriteSpace()); writer.Write(")"); + return; } - writer.Write(":"); - writer.WriteSpace(); + var flatWidth = MeasureFlatArgumentDefinitions(arguments); - writer.WriteType(node.Type); + if (writer.Column + flatWidth <= _printWidth) + { + writer.Write("("); - WriteDirectives(node.Directives, writer); + for (var i = 0; i < arguments.Count; i++) + { + if (i > 0) + { + writer.Write(", "); + } + + VisitArgumentValueDefinition(arguments[i], writer); + } + + writer.Write(")"); + } + else + { + writer.Write("("); + writer.Indent(); + + foreach (var argument in arguments) + { + writer.WriteLine(); + writer.WriteIndent(); + + if (argument.Description is { }) + { + writer.WriteStringValue(argument.Description); + writer.WriteLine(); + writer.WriteIndent(); + } + + WriteInputValueDefinition(argument, writer); + } + + writer.WriteLine(); + writer.Unindent(); + writer.WriteIndent(); + writer.Write(")"); + } } private void VisitInputValueDefinition( @@ -353,12 +408,7 @@ private void VisitDirectiveDefinition( if (node.Arguments.Count > 0) { - writer.Write("("); - writer.WriteMany( - node.Arguments, - VisitArgumentValueDefinition, - w => w.WriteSpace()); - writer.Write(")"); + WriteArgumentDefinitions(node.Arguments, writer); } writer.WriteSpace(); @@ -406,7 +456,14 @@ private void WriteInputValueDefinition( writer.WriteValue(value, _indented); } - WriteDirectives(node.Directives, writer); + if (node.Directives.Count > 0) + { + writer.WriteSpace(); + writer.WriteMany( + node.Directives, + (n, w) => w.WriteDirective(n), + w => w.WriteSpace()); + } } private void VisitEnumValueDefinition( @@ -439,6 +496,21 @@ private void WriteDirectives( IReadOnlyList directives, ISyntaxWriter writer) { + if (directives.Count == 0) + { + return; + } + + if (!_indented) + { + writer.WriteSpace(); + writer.WriteMany( + directives, + (n, w) => w.WriteDirective(n), + w => w.WriteSpace()); + return; + } + if (_maxDirectivesPerLine < directives.Count) { writer.WriteLine(); @@ -453,8 +525,12 @@ private void WriteDirectives( w.WriteIndent(); }); writer.Unindent(); + return; } - else if (directives.Count > 0) + + var flatWidth = MeasureFlatDirectives(directives); + + if (writer.Column + flatWidth <= _printWidth) { writer.WriteSpace(); writer.WriteMany( @@ -462,6 +538,96 @@ private void WriteDirectives( (n, w) => w.WriteDirective(n), w => w.WriteSpace()); } + else + { + writer.WriteLine(); + writer.Indent(); + writer.WriteIndent(); + writer.WriteMany( + directives, + (n, w) => w.WriteDirective(n), + w => + { + w.WriteLine(); + w.WriteIndent(); + }); + writer.Unindent(); + } + } + + private int MeasureFlatArgumentDefinitions( + IReadOnlyList arguments) + { + var writer = StringSyntaxWriter.Rent(); + + try + { + writer.Write("("); + + for (var i = 0; i < arguments.Count; i++) + { + if (i > 0) + { + writer.Write(", "); + } + + WriteFlatInputValueDefinition(arguments[i], writer); + } + + writer.Write(")"); + return writer.Column; + } + finally + { + StringSyntaxWriter.Return(writer); + } + } + + private void WriteFlatInputValueDefinition( + InputValueDefinitionNode node, + ISyntaxWriter writer) + { + if (node.Description is { }) + { + writer.WriteStringValue(node.Description); + writer.WriteSpace(); + } + + writer.WriteName(node.Name); + writer.Write(": "); + writer.WriteType(node.Type); + + if (node.DefaultValue is { Kind: not SyntaxKind.NullValue } value) + { + writer.Write(" = "); + writer.WriteValue(value, false); + } + + foreach (var directive in node.Directives) + { + writer.WriteSpace(); + writer.WriteDirective(directive); + } + } + + private int MeasureFlatDirectives(IReadOnlyList directives) + { + var writer = StringSyntaxWriter.Rent(); + + try + { + for (var i = 0; i < directives.Count; i++) + { + writer.WriteSpace(); + writer.WriteDirective(directives[i]); + } + + return writer.Column; + } + finally + { + StringSyntaxWriter.Return(writer); + } } private void WriteLeftBrace(ISyntaxWriter writer) diff --git a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.cs b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.cs index 28203897c12..5c74e2d9399 100644 --- a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.cs +++ b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.cs @@ -6,11 +6,13 @@ namespace HotChocolate.Language.Utilities; public sealed partial class SyntaxSerializer { private readonly bool _indented; + private readonly int _printWidth; private readonly int _maxDirectivesPerLine; public SyntaxSerializer(SyntaxSerializerOptions options = default) { _indented = options.Indented; + _printWidth = options.PrintWidth; _maxDirectivesPerLine = options.MaxDirectivesPerLine; } diff --git a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializerOptions.cs b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializerOptions.cs index 26d48017a02..1db5f740159 100644 --- a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializerOptions.cs +++ b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializerOptions.cs @@ -3,6 +3,7 @@ namespace HotChocolate.Language.Utilities; public struct SyntaxSerializerOptions { private int? _maxDirectivesPerLine; + private int? _printWidth; /// /// Gets or sets a value that indicates whether the @@ -15,6 +16,19 @@ public struct SyntaxSerializerOptions /// public bool Indented { get; set; } + /// + /// Gets or sets the maximum line width before the serializer breaks content + /// onto multiple lines. Similar to Prettier's print width. + /// + /// + /// The maximum number of characters per line. The default is 80. + /// + public int PrintWidth + { + get => _printWidth ?? 80; + set => _printWidth = value; + } + /// /// Defines how many directives are allowed on the same line as /// the declaration before directives are put on separate lines. diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/SyntaxWriterTests.cs b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/SyntaxWriterTests.cs index 406f5438a21..6808190bf10 100644 --- a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/SyntaxWriterTests.cs +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/SyntaxWriterTests.cs @@ -165,9 +165,9 @@ query GetUser($id: ID!) { var result = writer.ToString(); // assert - // The result should have proper indentation with each field on its own line - Assert.Contains($"query GetUser({Environment.NewLine}", result); - Assert.Contains($"{Environment.NewLine} $id: ID!{Environment.NewLine}", result); + // The result should have proper indentation with each field on its own line. + // Variable definitions that fit within print width stay on one line. + Assert.Contains("query GetUser($id: ID!) {", result); Assert.Contains($" user(id: $id) {{{Environment.NewLine}", result); Assert.Contains($" name{Environment.NewLine}", result); Assert.Contains($" email{Environment.NewLine}", result); diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/QuerySyntaxPrinterTests.Serialize_KitchenSinkWithIndentation_CanBeParsed.snap b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/QuerySyntaxPrinterTests.Serialize_KitchenSinkWithIndentation_CanBeParsed.snap index 55493f349be..e22c2c72103 100644 --- a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/QuerySyntaxPrinterTests.Serialize_KitchenSinkWithIndentation_CanBeParsed.snap +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/QuerySyntaxPrinterTests.Serialize_KitchenSinkWithIndentation_CanBeParsed.snap @@ -1,10 +1,5 @@ "Query description" -query queryName( - "$foo description" - $foo: ComplexType - "$site description" - $site: Site = MOBILE -) { +query queryName($foo: ComplexType, $site: Site = MOBILE) { whoever123is: node(id: [123, 456]) { id ... on User @defer { @@ -35,10 +30,7 @@ mutation likeStory { } "Subscription description" -subscription StoryLikeSubscription( - "$input description" - $input: StoryLikeSubscribeInput -) { +subscription StoryLikeSubscription($input: StoryLikeSubscribeInput) { storyLikeSubscribe(input: $input) { story { likers { diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/QuerySyntaxPrinterTests.Serialize_KitchenSinkWithIndentation_OutputIsFormatted.snap b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/QuerySyntaxPrinterTests.Serialize_KitchenSinkWithIndentation_OutputIsFormatted.snap index 55493f349be..e22c2c72103 100644 --- a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/QuerySyntaxPrinterTests.Serialize_KitchenSinkWithIndentation_OutputIsFormatted.snap +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/QuerySyntaxPrinterTests.Serialize_KitchenSinkWithIndentation_OutputIsFormatted.snap @@ -1,10 +1,5 @@ "Query description" -query queryName( - "$foo description" - $foo: ComplexType - "$site description" - $site: Site = MOBILE -) { +query queryName($foo: ComplexType, $site: Site = MOBILE) { whoever123is: node(id: [123, 456]) { id ... on User @defer { @@ -35,10 +30,7 @@ mutation likeStory { } "Subscription description" -subscription StoryLikeSubscription( - "$input description" - $input: StoryLikeSubscribeInput -) { +subscription StoryLikeSubscription($input: StoryLikeSubscribeInput) { storyLikeSubscribe(input: $input) { story { likers { diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/QuerySyntaxPrinterTests.Serialize_KitchenSinkWithoutIndentation_OutputIsOneLine.snap b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/QuerySyntaxPrinterTests.Serialize_KitchenSinkWithoutIndentation_OutputIsOneLine.snap index 55493f349be..e22c2c72103 100644 --- a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/QuerySyntaxPrinterTests.Serialize_KitchenSinkWithoutIndentation_OutputIsOneLine.snap +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/QuerySyntaxPrinterTests.Serialize_KitchenSinkWithoutIndentation_OutputIsOneLine.snap @@ -1,10 +1,5 @@ "Query description" -query queryName( - "$foo description" - $foo: ComplexType - "$site description" - $site: Site = MOBILE -) { +query queryName($foo: ComplexType, $site: Site = MOBILE) { whoever123is: node(id: [123, 456]) { id ... on User @defer { @@ -35,10 +30,7 @@ mutation likeStory { } "Subscription description" -subscription StoryLikeSubscription( - "$input description" - $input: StoryLikeSubscribeInput -) { +subscription StoryLikeSubscription($input: StoryLikeSubscribeInput) { storyLikeSubscribe(input: $input) { story { likers { diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/SchemaSyntaxPrinterTests.Serialize_InterfaceTypeDefWithArgsWithIndent_OutHasIndentation.snap b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/SchemaSyntaxPrinterTests.Serialize_InterfaceTypeDefWithArgsWithIndent_OutHasIndentation.snap index 2ce47b9891a..58c77a2112a 100644 --- a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/SchemaSyntaxPrinterTests.Serialize_InterfaceTypeDefWithArgsWithIndent_OutHasIndentation.snap +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/SchemaSyntaxPrinterTests.Serialize_InterfaceTypeDefWithArgsWithIndent_OutHasIndentation.snap @@ -1,3 +1,3 @@ -interface Foo { - bar(a: Int = 1 b: Int): String +interface Foo { + bar(a: Int = 1, b: Int): String } diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/SchemaSyntaxPrinterTests.Serialize_InterfaceTypeDefWithDescriptionWithIndent_OutHasIndentation.snap b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/SchemaSyntaxPrinterTests.Serialize_InterfaceTypeDefWithDescriptionWithIndent_OutHasIndentation.snap index 27ad7319d2b..15f6796efe1 100644 --- a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/SchemaSyntaxPrinterTests.Serialize_InterfaceTypeDefWithDescriptionWithIndent_OutHasIndentation.snap +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/SchemaSyntaxPrinterTests.Serialize_InterfaceTypeDefWithDescriptionWithIndent_OutHasIndentation.snap @@ -1,4 +1,4 @@ -"abc" +"abc" interface Foo @a { "abc" bar: String diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/SchemaSyntaxPrinterTests.Serialize_ObjectTypeDefWithArgsWithIndent_OutHasIndentation.snap b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/SchemaSyntaxPrinterTests.Serialize_ObjectTypeDefWithArgsWithIndent_OutHasIndentation.snap index e2d0a75b8de..916558d17c2 100644 --- a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/SchemaSyntaxPrinterTests.Serialize_ObjectTypeDefWithArgsWithIndent_OutHasIndentation.snap +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/SchemaSyntaxPrinterTests.Serialize_ObjectTypeDefWithArgsWithIndent_OutHasIndentation.snap @@ -1,3 +1,3 @@ -type Foo { - bar(a: Int = 1 b: Int): String +type Foo { + bar(a: Int = 1, b: Int): String } diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/SchemaSyntaxPrinterTests.Serialize_ObjectTypeDefWithDescriptionWithIndent_OutHasIndentation.snap b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/SchemaSyntaxPrinterTests.Serialize_ObjectTypeDefWithDescriptionWithIndent_OutHasIndentation.snap index 41b5b100ed9..3cea6d3aca4 100644 --- a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/SchemaSyntaxPrinterTests.Serialize_ObjectTypeDefWithDescriptionWithIndent_OutHasIndentation.snap +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/__snapshots__/SchemaSyntaxPrinterTests.Serialize_ObjectTypeDefWithDescriptionWithIndent_OutHasIndentation.snap @@ -1,4 +1,4 @@ -"abc" +"abc" type Foo @a { "abc" bar: String diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.ArgumentsWithDirectives_Indented_MatchesSnapshot.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.ArgumentsWithDirectives_Indented_MatchesSnapshot.graphql index 14592fae4fd..a20332a25f4 100644 --- a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.ArgumentsWithDirectives_Indented_MatchesSnapshot.graphql +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.ArgumentsWithDirectives_Indented_MatchesSnapshot.graphql @@ -1,3 +1,3 @@ type Query { - user(id: ID! @deprecated filter: UserFilter @custom(value: "test")): User + user(id: ID! @deprecated, filter: UserFilter @custom(value: "test")): User } diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.DirectiveDefinition_Indented_MatchesSnapshot.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.DirectiveDefinition_Indented_MatchesSnapshot.graphql index f8d7f1fe43f..60c3af166eb 100644 --- a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.DirectiveDefinition_Indented_MatchesSnapshot.graphql +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.DirectiveDefinition_Indented_MatchesSnapshot.graphql @@ -1,3 +1,3 @@ -directive @auth(requires: Role = ADMIN scopes: [String!]) repeatable on OBJECT | FIELD_DEFINITION +directive @auth(requires: Role = ADMIN, scopes: [String!]) repeatable on OBJECT | FIELD_DEFINITION directive @deprecated(reason: String = "No longer supported") on FIELD_DEFINITION | ENUM_VALUE diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.VariableDefinition_WithDefaultObjectValue_Indented_MatchesSnapshot.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.VariableDefinition_WithDefaultObjectValue_Indented_MatchesSnapshot.graphql index 22a25d187ea..11219e7741e 100644 --- a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.VariableDefinition_WithDefaultObjectValue_Indented_MatchesSnapshot.graphql +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.VariableDefinition_WithDefaultObjectValue_Indented_MatchesSnapshot.graphql @@ -1,8 +1,3 @@ -query GetUser( - $input: InputType = { - field1: "value1", - field2: "value2" - } -) { +query GetUser($input: InputType = { field1: "value1", field2: "value2" }) { user } diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/KitchenSinkParserTests.ParseFacebookKitchenSinkQuery.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/KitchenSinkParserTests.ParseFacebookKitchenSinkQuery.snap index 1faab9c111d..c24ff3bd31f 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/KitchenSinkParserTests.ParseFacebookKitchenSinkQuery.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/KitchenSinkParserTests.ParseFacebookKitchenSinkQuery.snap @@ -1,12 +1,7 @@ SDL: --------------- "Query description" -query queryName( - "$foo description" - $foo: ComplexType - "$site description" - $site: Site = MOBILE -) { +query queryName($foo: ComplexType, $site: Site = MOBILE) { whoever123is: node(id: [123, 456]) { id ... on User @defer { @@ -37,10 +32,7 @@ mutation likeStory { } "Subscription description" -subscription StoryLikeSubscription( - "$input description" - $input: StoryLikeSubscribeInput -) { +subscription StoryLikeSubscription($input: StoryLikeSubscribeInput) { storyLikeSubscribe(input: $input) { story { likers { diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/KitchenSinkParserTests.ParseFacebookKitchenSinkSchema.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/KitchenSinkParserTests.ParseFacebookKitchenSinkSchema.snap index f4c92b19aa3..0fe483f2d15 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/KitchenSinkParserTests.ParseFacebookKitchenSinkSchema.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/KitchenSinkParserTests.ParseFacebookKitchenSinkSchema.snap @@ -17,7 +17,7 @@ type Foo implements Bar & Baz { two(""" This is a description of the `argument` argument. """ argument: InputType!): Type - three(argument: InputType other: String): Int + three(argument: InputType, other: String): Int four(argument: String = "string"): String five(argument: [String] = [ "string", diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/QueryParserTests.KitchenSinkQueryQuery.graphql b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/QueryParserTests.KitchenSinkQueryQuery.graphql index 55493f349be..e22c2c72103 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/QueryParserTests.KitchenSinkQueryQuery.graphql +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/QueryParserTests.KitchenSinkQueryQuery.graphql @@ -1,10 +1,5 @@ "Query description" -query queryName( - "$foo description" - $foo: ComplexType - "$site description" - $site: Site = MOBILE -) { +query queryName($foo: ComplexType, $site: Site = MOBILE) { whoever123is: node(id: [123, 456]) { id ... on User @defer { @@ -35,10 +30,7 @@ mutation likeStory { } "Subscription description" -subscription StoryLikeSubscription( - "$input description" - $input: StoryLikeSubscribeInput -) { +subscription StoryLikeSubscription($input: StoryLikeSubscribeInput) { storyLikeSubscribe(input: $input) { story { likers { diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaParserTests.OneGraph_Schema.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaParserTests.OneGraph_Schema.snap index e9836b0cf37..4b752cf4f14 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaParserTests.OneGraph_Schema.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaParserTests.OneGraph_Schema.snap @@ -1,4 +1,4 @@ -input GitHubIssuesEventSubscriptionInput { +input GitHubIssuesEventSubscriptionInput { """ The owner of the repo, the `octocat` in `octocat/Hello-World`. """ @@ -2960,30 +2960,38 @@ type Subscription { Subscriptions are long-lived, so a refresh token must also be provided. If you use this arg, make sure you've updated OneGraph to use your OAuth credentials in the dashboard. - """ gmailAuth: OneGraphSubscriptionGmailAuthArg """ + """ gmailAuth: OneGraphSubscriptionGmailAuthArg, """ Webhook URL that will receive a POST request every time there is new data for the subscription. The endpoint should return a 200 within 30 seconds to be considered successful. If the request does not succeed, it will be retried. - """ webhookUrl: String!): GmailMessage! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - gmail(secret: OneGraphSubscriptionSecretInput auth: OneGraphSubscriptionAuthArg """ + """ webhookUrl: String!): GmailMessage! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + gmail(secret: OneGraphSubscriptionSecretInput, auth: OneGraphSubscriptionAuthArg, """ Webhook URL that will receive a POST request every time there is new data for the subscription. The endpoint should return a 200 within 30 seconds to be considered successful. If the request does not succeed, it will be retried. - """ webhookUrl: String): GmailSubscriptionRoot! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - trello(secret: OneGraphSubscriptionSecretInput auth: OneGraphSubscriptionAuthArg """ + """ webhookUrl: String): GmailSubscriptionRoot! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + trello(secret: OneGraphSubscriptionSecretInput, auth: OneGraphSubscriptionAuthArg, """ Webhook URL that will receive a POST request every time there is new data for the subscription. The endpoint should return a 200 within 30 seconds to be considered successful. If the request does not succeed, it will be retried. - """ webhookUrl: String): TrelloSubscriptionRoot! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - twilio(secret: OneGraphSubscriptionSecretInput auth: OneGraphSubscriptionAuthArg """ + """ webhookUrl: String): TrelloSubscriptionRoot! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + twilio(secret: OneGraphSubscriptionSecretInput, auth: OneGraphSubscriptionAuthArg, """ Webhook URL that will receive a POST request every time there is new data for the subscription. The endpoint should return a 200 within 30 seconds to be considered successful. If the request does not succeed, it will be retried. - """ webhookUrl: String): TwilioSubscriptionRoot! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - intercom(secret: OneGraphSubscriptionSecretInput auth: OneGraphSubscriptionAuthArg """ + """ webhookUrl: String): TwilioSubscriptionRoot! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + intercom(secret: OneGraphSubscriptionSecretInput, auth: OneGraphSubscriptionAuthArg, """ Webhook URL that will receive a POST request every time there is new data for the subscription. The endpoint should return a 200 within 30 seconds to be considered successful. If the request does not succeed, it will be retried. - """ webhookUrl: String): IntercomSubscriptionRoot! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - npm(secret: OneGraphSubscriptionSecretInput auth: OneGraphSubscriptionAuthArg """ + """ webhookUrl: String): IntercomSubscriptionRoot! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + npm(secret: OneGraphSubscriptionSecretInput, auth: OneGraphSubscriptionAuthArg, """ Webhook URL that will receive a POST request every time there is new data for the subscription. The endpoint should return a 200 within 30 seconds to be considered successful. If the request does not succeed, it will be retried. - """ webhookUrl: String): NpmSubscriptionRoot! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - salesforce(secret: OneGraphSubscriptionSecretInput auth: OneGraphSubscriptionAuthArg """ + """ webhookUrl: String): NpmSubscriptionRoot! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + salesforce(secret: OneGraphSubscriptionSecretInput, auth: OneGraphSubscriptionAuthArg, """ Webhook URL that will receive a POST request every time there is new data for the subscription. The endpoint should return a 200 within 30 seconds to be considered successful. If the request does not succeed, it will be retried. - """ webhookUrl: String): SalesforceSubscriptionRoot! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - github(secret: OneGraphSubscriptionSecretInput auth: OneGraphSubscriptionAuthArg """ + """ webhookUrl: String): SalesforceSubscriptionRoot! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + github(secret: OneGraphSubscriptionSecretInput, auth: OneGraphSubscriptionAuthArg, """ Webhook URL that will receive a POST request every time there is new data for the subscription. The endpoint should return a 200 within 30 seconds to be considered successful. If the request does not succeed, it will be retried. - """ webhookUrl: String): GithubSubscriptionRoot! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ webhookUrl: String): GithubSubscriptionRoot! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") } input SignoutServicesData { @@ -3354,19 +3362,19 @@ type GithubPassthroughMutation { """ post(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -3374,19 +3382,19 @@ type GithubPassthroughMutation { """ put(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -3394,19 +3402,19 @@ type GithubPassthroughMutation { """ patch(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -3414,19 +3422,19 @@ type GithubPassthroughMutation { """ delete(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -8186,7 +8194,9 @@ type GitHubMutation { """ Accepts a pending invitation for a user to become an administrator of an enterprise. """ - acceptEnterpriseAdministratorInvitation(input: GitHubAcceptEnterpriseAdministratorInvitationInput!): GitHubAcceptEnterpriseAdministratorInvitationPayload + acceptEnterpriseAdministratorInvitation( + input: GitHubAcceptEnterpriseAdministratorInvitationInput! + ): GitHubAcceptEnterpriseAdministratorInvitationPayload """ Applies a suggested topic to the repository. """ @@ -8238,7 +8248,9 @@ type GitHubMutation { """ Cancels a pending invitation for an administrator to join an enterprise. """ - cancelEnterpriseAdminInvitation(input: GitHubCancelEnterpriseAdminInvitationInput!): GitHubCancelEnterpriseAdminInvitationPayload + cancelEnterpriseAdminInvitation( + input: GitHubCancelEnterpriseAdminInvitationInput! + ): GitHubCancelEnterpriseAdminInvitationPayload """ Update your status on GitHub. """ @@ -8266,7 +8278,9 @@ type GitHubMutation { """ Convert a project note card to one associated with a newly created issue. """ - convertProjectCardNoteToIssue(input: GitHubConvertProjectCardNoteToIssueInput!): GitHubConvertProjectCardNoteToIssuePayload + convertProjectCardNoteToIssue( + input: GitHubConvertProjectCardNoteToIssueInput! + ): GitHubConvertProjectCardNoteToIssuePayload """ Create a new branch protection rule """ @@ -8350,7 +8364,9 @@ type GitHubMutation { """ Deletes a pull request review comment. """ - deletePullRequestReviewComment(input: GitHubDeletePullRequestReviewCommentInput!): GitHubDeletePullRequestReviewCommentPayload + deletePullRequestReviewComment( + input: GitHubDeletePullRequestReviewCommentInput! + ): GitHubDeletePullRequestReviewCommentPayload """ Delete a Git Ref. """ @@ -8386,7 +8402,9 @@ type GitHubMutation { """ Marks a pull request ready for review. """ - markPullRequestReadyForReview(input: GitHubMarkPullRequestReadyForReviewInput!): GitHubMarkPullRequestReadyForReviewPayload + markPullRequestReadyForReview( + input: GitHubMarkPullRequestReadyForReviewInput! + ): GitHubMarkPullRequestReadyForReviewPayload """ Merge a head into a branch. """ @@ -8410,11 +8428,15 @@ type GitHubMutation { """ Regenerates the identity provider recovery codes for an enterprise """ - regenerateEnterpriseIdentityProviderRecoveryCodes(input: GitHubRegenerateEnterpriseIdentityProviderRecoveryCodesInput!): GitHubRegenerateEnterpriseIdentityProviderRecoveryCodesPayload + regenerateEnterpriseIdentityProviderRecoveryCodes( + input: GitHubRegenerateEnterpriseIdentityProviderRecoveryCodesInput! + ): GitHubRegenerateEnterpriseIdentityProviderRecoveryCodesPayload """ Removes assignees from an assignable object. """ - removeAssigneesFromAssignable(input: GitHubRemoveAssigneesFromAssignableInput!): GitHubRemoveAssigneesFromAssignablePayload + removeAssigneesFromAssignable( + input: GitHubRemoveAssigneesFromAssignableInput! + ): GitHubRemoveAssigneesFromAssignablePayload """ Removes an administrator from the enterprise. """ @@ -8422,7 +8444,9 @@ type GitHubMutation { """ Removes the identity provider from an enterprise """ - removeEnterpriseIdentityProvider(input: GitHubRemoveEnterpriseIdentityProviderInput!): GitHubRemoveEnterpriseIdentityProviderPayload + removeEnterpriseIdentityProvider( + input: GitHubRemoveEnterpriseIdentityProviderInput! + ): GitHubRemoveEnterpriseIdentityProviderPayload """ Removes an organization from the enterprise """ @@ -8462,7 +8486,9 @@ type GitHubMutation { """ Creates or updates the identity provider for an enterprise. """ - setEnterpriseIdentityProvider(input: GitHubSetEnterpriseIdentityProviderInput!): GitHubSetEnterpriseIdentityProviderPayload + setEnterpriseIdentityProvider( + input: GitHubSetEnterpriseIdentityProviderInput! + ): GitHubSetEnterpriseIdentityProviderPayload """ Submits a pending pull request review. """ @@ -8506,55 +8532,81 @@ type GitHubMutation { """ Sets the action execution capability setting for an enterprise. """ - updateEnterpriseActionExecutionCapabilitySetting(input: GitHubUpdateEnterpriseActionExecutionCapabilitySettingInput!): GitHubUpdateEnterpriseActionExecutionCapabilitySettingPayload + updateEnterpriseActionExecutionCapabilitySetting( + input: GitHubUpdateEnterpriseActionExecutionCapabilitySettingInput! + ): GitHubUpdateEnterpriseActionExecutionCapabilitySettingPayload """ Updates the role of an enterprise administrator. """ - updateEnterpriseAdministratorRole(input: GitHubUpdateEnterpriseAdministratorRoleInput!): GitHubUpdateEnterpriseAdministratorRolePayload + updateEnterpriseAdministratorRole( + input: GitHubUpdateEnterpriseAdministratorRoleInput! + ): GitHubUpdateEnterpriseAdministratorRolePayload """ Sets whether private repository forks are enabled for an enterprise. """ - updateEnterpriseAllowPrivateRepositoryForkingSetting(input: GitHubUpdateEnterpriseAllowPrivateRepositoryForkingSettingInput!): GitHubUpdateEnterpriseAllowPrivateRepositoryForkingSettingPayload + updateEnterpriseAllowPrivateRepositoryForkingSetting( + input: GitHubUpdateEnterpriseAllowPrivateRepositoryForkingSettingInput! + ): GitHubUpdateEnterpriseAllowPrivateRepositoryForkingSettingPayload """ Sets the default repository permission for organizations in an enterprise. """ - updateEnterpriseDefaultRepositoryPermissionSetting(input: GitHubUpdateEnterpriseDefaultRepositoryPermissionSettingInput!): GitHubUpdateEnterpriseDefaultRepositoryPermissionSettingPayload + updateEnterpriseDefaultRepositoryPermissionSetting( + input: GitHubUpdateEnterpriseDefaultRepositoryPermissionSettingInput! + ): GitHubUpdateEnterpriseDefaultRepositoryPermissionSettingPayload """ Sets whether organization members with admin permissions on a repository can change repository visibility. """ - updateEnterpriseMembersCanChangeRepositoryVisibilitySetting(input: GitHubUpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput!): GitHubUpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingPayload + updateEnterpriseMembersCanChangeRepositoryVisibilitySetting( + input: GitHubUpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput! + ): GitHubUpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingPayload """ Sets the members can create repositories setting for an enterprise. """ - updateEnterpriseMembersCanCreateRepositoriesSetting(input: GitHubUpdateEnterpriseMembersCanCreateRepositoriesSettingInput!): GitHubUpdateEnterpriseMembersCanCreateRepositoriesSettingPayload + updateEnterpriseMembersCanCreateRepositoriesSetting( + input: GitHubUpdateEnterpriseMembersCanCreateRepositoriesSettingInput! + ): GitHubUpdateEnterpriseMembersCanCreateRepositoriesSettingPayload """ Sets the members can delete issues setting for an enterprise. """ - updateEnterpriseMembersCanDeleteIssuesSetting(input: GitHubUpdateEnterpriseMembersCanDeleteIssuesSettingInput!): GitHubUpdateEnterpriseMembersCanDeleteIssuesSettingPayload + updateEnterpriseMembersCanDeleteIssuesSetting( + input: GitHubUpdateEnterpriseMembersCanDeleteIssuesSettingInput! + ): GitHubUpdateEnterpriseMembersCanDeleteIssuesSettingPayload """ Sets the members can delete repositories setting for an enterprise. """ - updateEnterpriseMembersCanDeleteRepositoriesSetting(input: GitHubUpdateEnterpriseMembersCanDeleteRepositoriesSettingInput!): GitHubUpdateEnterpriseMembersCanDeleteRepositoriesSettingPayload + updateEnterpriseMembersCanDeleteRepositoriesSetting( + input: GitHubUpdateEnterpriseMembersCanDeleteRepositoriesSettingInput! + ): GitHubUpdateEnterpriseMembersCanDeleteRepositoriesSettingPayload """ Sets whether members can invite collaborators are enabled for an enterprise. """ - updateEnterpriseMembersCanInviteCollaboratorsSetting(input: GitHubUpdateEnterpriseMembersCanInviteCollaboratorsSettingInput!): GitHubUpdateEnterpriseMembersCanInviteCollaboratorsSettingPayload + updateEnterpriseMembersCanInviteCollaboratorsSetting( + input: GitHubUpdateEnterpriseMembersCanInviteCollaboratorsSettingInput! + ): GitHubUpdateEnterpriseMembersCanInviteCollaboratorsSettingPayload """ Sets whether or not an organization admin can make purchases. """ - updateEnterpriseMembersCanMakePurchasesSetting(input: GitHubUpdateEnterpriseMembersCanMakePurchasesSettingInput!): GitHubUpdateEnterpriseMembersCanMakePurchasesSettingPayload + updateEnterpriseMembersCanMakePurchasesSetting( + input: GitHubUpdateEnterpriseMembersCanMakePurchasesSettingInput! + ): GitHubUpdateEnterpriseMembersCanMakePurchasesSettingPayload """ Sets the members can update protected branches setting for an enterprise. """ - updateEnterpriseMembersCanUpdateProtectedBranchesSetting(input: GitHubUpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput!): GitHubUpdateEnterpriseMembersCanUpdateProtectedBranchesSettingPayload + updateEnterpriseMembersCanUpdateProtectedBranchesSetting( + input: GitHubUpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput! + ): GitHubUpdateEnterpriseMembersCanUpdateProtectedBranchesSettingPayload """ Sets the members can view dependency insights for an enterprise. """ - updateEnterpriseMembersCanViewDependencyInsightsSetting(input: GitHubUpdateEnterpriseMembersCanViewDependencyInsightsSettingInput!): GitHubUpdateEnterpriseMembersCanViewDependencyInsightsSettingPayload + updateEnterpriseMembersCanViewDependencyInsightsSetting( + input: GitHubUpdateEnterpriseMembersCanViewDependencyInsightsSettingInput! + ): GitHubUpdateEnterpriseMembersCanViewDependencyInsightsSettingPayload """ Sets whether organization projects are enabled for an enterprise. """ - updateEnterpriseOrganizationProjectsSetting(input: GitHubUpdateEnterpriseOrganizationProjectsSettingInput!): GitHubUpdateEnterpriseOrganizationProjectsSettingPayload + updateEnterpriseOrganizationProjectsSetting( + input: GitHubUpdateEnterpriseOrganizationProjectsSettingInput! + ): GitHubUpdateEnterpriseOrganizationProjectsSettingPayload """ Updates an enterprise's profile. """ @@ -8562,19 +8614,27 @@ type GitHubMutation { """ Sets whether repository projects are enabled for a enterprise. """ - updateEnterpriseRepositoryProjectsSetting(input: GitHubUpdateEnterpriseRepositoryProjectsSettingInput!): GitHubUpdateEnterpriseRepositoryProjectsSettingPayload + updateEnterpriseRepositoryProjectsSetting( + input: GitHubUpdateEnterpriseRepositoryProjectsSettingInput! + ): GitHubUpdateEnterpriseRepositoryProjectsSettingPayload """ Sets whether team discussions are enabled for an enterprise. """ - updateEnterpriseTeamDiscussionsSetting(input: GitHubUpdateEnterpriseTeamDiscussionsSettingInput!): GitHubUpdateEnterpriseTeamDiscussionsSettingPayload + updateEnterpriseTeamDiscussionsSetting( + input: GitHubUpdateEnterpriseTeamDiscussionsSettingInput! + ): GitHubUpdateEnterpriseTeamDiscussionsSettingPayload """ Sets whether two factor authentication is required for all users in an enterprise. """ - updateEnterpriseTwoFactorAuthenticationRequiredSetting(input: GitHubUpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput!): GitHubUpdateEnterpriseTwoFactorAuthenticationRequiredSettingPayload + updateEnterpriseTwoFactorAuthenticationRequiredSetting( + input: GitHubUpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput! + ): GitHubUpdateEnterpriseTwoFactorAuthenticationRequiredSettingPayload """ Sets whether an IP allow list is enabled on an owner. """ - updateIpAllowListEnabledSetting(input: GitHubUpdateIpAllowListEnabledSettingInput!): GitHubUpdateIpAllowListEnabledSettingPayload + updateIpAllowListEnabledSetting( + input: GitHubUpdateIpAllowListEnabledSettingInput! + ): GitHubUpdateIpAllowListEnabledSettingPayload """ Updates an IP allow list entry. """ @@ -8610,7 +8670,9 @@ type GitHubMutation { """ Updates a pull request review comment. """ - updatePullRequestReviewComment(input: GitHubUpdatePullRequestReviewCommentInput!): GitHubUpdatePullRequestReviewCommentPayload + updatePullRequestReviewComment( + input: GitHubUpdatePullRequestReviewCommentInput! + ): GitHubUpdatePullRequestReviewCommentPayload """ Update a Git Ref. """ @@ -8638,43 +8700,55 @@ type GitHubMutation { """ Create an Repository """ - createRepositoryTemp(input: GitHubCreateRepositoryTempInput!): GitHubCreateRepositoryTempResponsePayload! @deprecated(reason: "Use `mutation.gitHub.createRepository`.") + createRepositoryTemp(input: GitHubCreateRepositoryTempInput!): GitHubCreateRepositoryTempResponsePayload! + @deprecated(reason: "Use `mutation.gitHub.createRepository`.") """ Create an Issue """ - createIssueTemp(input: GitHubCreateIssueTempInput!): GitHubCreateIssueTempResponsePayload! @deprecated(reason: "Temporary mutation until GitHub implemements their own createIssue mutation.") + createIssueTemp(input: GitHubCreateIssueTempInput!): GitHubCreateIssueTempResponsePayload! + @deprecated(reason: "Temporary mutation until GitHub implemements their own createIssue mutation.") """ Create a milestone """ - createMilestone_oneGraph(input: GitHubCreateMilestone_oneGraphInput!): GitHubCreateMilestone_oneGraphResponsePayload! @deprecated(reason: "Temporary mutation until GitHub implemements their own createMilestone mutation.") + createMilestone_oneGraph(input: GitHubCreateMilestone_oneGraphInput!): GitHubCreateMilestone_oneGraphResponsePayload! + @deprecated(reason: "Temporary mutation until GitHub implemements their own createMilestone mutation.") """ Update a milestone """ - updateMilestone_oneGraph(input: GitHubUpdateMilestone_oneGraphInput!): GitHubUpdateMilestone_oneGraphResponsePayload! @deprecated(reason: "Temporary mutation until GitHub implemements their own updateMilestone mutation.") + updateMilestone_oneGraph(input: GitHubUpdateMilestone_oneGraphInput!): GitHubUpdateMilestone_oneGraphResponsePayload! + @deprecated(reason: "Temporary mutation until GitHub implemements their own updateMilestone mutation.") """ Delete a milestone """ - deleteMilestone_oneGraph(input: GitHubDeleteMilestone_oneGraphInput!): GitHubDeleteMilestone_oneGraphResponsePayload! @deprecated(reason: "Temporary mutation until GitHub implemements their own deleteMilestone mutation.") + deleteMilestone_oneGraph(input: GitHubDeleteMilestone_oneGraphInput!): GitHubDeleteMilestone_oneGraphResponsePayload! + @deprecated(reason: "Temporary mutation until GitHub implemements their own deleteMilestone mutation.") """ Create a branch """ - createBranch_oneGraph(input: GitHubCreateBranch_oneGraphInput!): GitHubCreateBranch_oneGraphResponsePayload! @deprecated(reason: "Temporary mutation until GitHub implemements their own createBranch mutation.") + createBranch_oneGraph(input: GitHubCreateBranch_oneGraphInput!): GitHubCreateBranch_oneGraphResponsePayload! + @deprecated(reason: "Temporary mutation until GitHub implemements their own createBranch mutation.") """ Create a commit updating a single file """ - createOrUpdateFileContent_oneGraph(input: GitHubCreateOrUpdateFileContent_oneGraphInput!): GitHubCreateOrUpdateFileContent_oneGraphResponsePayload! @deprecated(reason: "Temporary mutation until GitHub implemements their own updatefileContent mutation.") + createOrUpdateFileContent_oneGraph( + input: GitHubCreateOrUpdateFileContent_oneGraphInput! + ): GitHubCreateOrUpdateFileContent_oneGraphResponsePayload! + @deprecated(reason: "Temporary mutation until GitHub implemements their own updatefileContent mutation.") """ Create a pull request """ - createPullRequest_oneGraph(input: GitHubCreatePullRequest_oneGraphInput!): GitHubCreatePullRequest_oneGraphResponsePayload! @deprecated(reason: "Temporary mutation until GitHub implemements their own createPullRequest mutation.") + createPullRequest_oneGraph(input: GitHubCreatePullRequest_oneGraphInput!): GitHubCreatePullRequest_oneGraphResponsePayload! + @deprecated(reason: "Temporary mutation until GitHub implemements their own createPullRequest mutation.") """ Create a fork """ - createFork_oneGraph(input: GitHubCreateFork_oneGraphInput!): GitHubCreateFork_oneGraphResponsePayload! @deprecated(reason: "Temporary mutation until GitHub implemements their own createFork mutation.") + createFork_oneGraph(input: GitHubCreateFork_oneGraphInput!): GitHubCreateFork_oneGraphResponsePayload! + @deprecated(reason: "Temporary mutation until GitHub implemements their own createFork mutation.") """ Merge a pull request """ - mergePullRequest_oneGraph(input: GitHubMergePullRequest_oneGraphInput!): GitHubMergePullRequest_oneGraphResponsePayload! @deprecated(reason: "Temporary mutation until GitHub implemements their own mergePullRequest mutation.") + mergePullRequest_oneGraph(input: GitHubMergePullRequest_oneGraphInput!): GitHubMergePullRequest_oneGraphResponsePayload! + @deprecated(reason: "Temporary mutation until GitHub implemements their own mergePullRequest mutation.") """ Make a REST API call to the GitHub API. @@ -8692,7 +8766,7 @@ type EventilMutation { """ Set YouTube or Vimeo ID """ - setVideoId(vimeo_id: String youtube_id: String id: ID!): EventilPresentation + setVideoId(vimeo_id: String, youtube_id: String, id: ID!): EventilPresentation } input BrexCreateSessionInput { @@ -11521,7 +11595,9 @@ type BrexRootMutationType { """ """ - setStatementEntryIntegrationField(input: BrexSetStatementEntryIntegrationFieldInput!): BrexSetStatementEntryIntegrationFieldPayload + setStatementEntryIntegrationField( + input: BrexSetStatementEntryIntegrationFieldInput! + ): BrexSetStatementEntryIntegrationFieldPayload """ """ @@ -11537,7 +11613,9 @@ type BrexRootMutationType { """ """ - finicityConnectMigrateAccounts(input: BrexFinicityConnectMigrateAccountsInput!): BrexFinicityConnectMigrateAccountsPayload + finicityConnectMigrateAccounts( + input: BrexFinicityConnectMigrateAccountsInput! + ): BrexFinicityConnectMigrateAccountsPayload """ """ @@ -11577,7 +11655,9 @@ type BrexRootMutationType { """ """ - setDepositsTransactionPaymentMemo(input: BrexSetDepositsTransactionPaymentMemoInput!): BrexSetDepositsTransactionPaymentMemoPayload + setDepositsTransactionPaymentMemo( + input: BrexSetDepositsTransactionPaymentMemoInput! + ): BrexSetDepositsTransactionPaymentMemoPayload """ """ @@ -11585,11 +11665,15 @@ type BrexRootMutationType { """ """ - createTransactionApprovedSubscription(input: BrexCreateTransactionApprovedSubscriptionInput!): BrexCreateTransactionApprovedSubscriptionPayload + createTransactionApprovedSubscription( + input: BrexCreateTransactionApprovedSubscriptionInput! + ): BrexCreateTransactionApprovedSubscriptionPayload """ Creates report based on search query of statement entries and returns representative asset """ - createStatementEntriesSearchReport(input: BrexCreateStatementEntriesSearchReportInput!): BrexCreateStatementEntriesSearchReportPayload + createStatementEntriesSearchReport( + input: BrexCreateStatementEntriesSearchReportInput! + ): BrexCreateStatementEntriesSearchReportPayload """ """ @@ -11657,7 +11741,9 @@ type BrexRootMutationType { """ """ - generateDepositsStatementDocumentDownloadUrl(input: BrexGenerateDepositsStatementDocumentDownloadUrlInput!): BrexGenerateDepositsStatementDocumentDownloadUrlPayload + generateDepositsStatementDocumentDownloadUrl( + input: BrexGenerateDepositsStatementDocumentDownloadUrlInput! + ): BrexGenerateDepositsStatementDocumentDownloadUrlPayload """ """ @@ -11665,7 +11751,9 @@ type BrexRootMutationType { """ """ - finicityConnectGenerateLiteUrl(input: BrexFinicityConnectGenerateLiteUrlInput!): BrexFinicityConnectGenerateLiteUrlPayload + finicityConnectGenerateLiteUrl( + input: BrexFinicityConnectGenerateLiteUrlInput! + ): BrexFinicityConnectGenerateLiteUrlPayload """ """ @@ -11673,7 +11761,8 @@ type BrexRootMutationType { """ """ - signup(input: BrexSignupInput!): BrexSignupPayload @deprecated(reason: "Use 'softSignup' instead") + signup(input: BrexSignupInput!): BrexSignupPayload + @deprecated(reason: "Use 'softSignup' instead") """ """ @@ -11693,7 +11782,9 @@ type BrexRootMutationType { """ """ - setTransactionIntegrationField(input: BrexSetTransactionIntegrationFieldInput!): BrexSetTransactionIntegrationFieldPayload + setTransactionIntegrationField( + input: BrexSetTransactionIntegrationFieldInput! + ): BrexSetTransactionIntegrationFieldPayload """ """ @@ -11717,11 +11808,14 @@ type BrexRootMutationType { """ """ - cDa(input: BrexCDaInput!): BrexCDaPayload @deprecated(reason: "Use 'onboardingCreateApplication' instead, passing in the blueprint name:'gemini'") + cDa(input: BrexCDaInput!): BrexCDaPayload + @deprecated(reason: "Use 'onboardingCreateApplication' instead, passing in the blueprint name:'gemini'") """ """ - submitOnboardingInformationRequest(input: BrexSubmitOnboardingInformationRequestInput!): BrexSubmitOnboardingInformationRequestPayload + submitOnboardingInformationRequest( + input: BrexSubmitOnboardingInformationRequestInput! + ): BrexSubmitOnboardingInformationRequestPayload """ """ @@ -11785,7 +11879,9 @@ type BrexRootMutationType { """ """ - saveOnboardingInformationRequest(input: BrexSaveOnboardingInformationRequestInput!): BrexSaveOnboardingInformationRequestPayload + saveOnboardingInformationRequest( + input: BrexSaveOnboardingInformationRequestInput! + ): BrexSaveOnboardingInformationRequestPayload """ """ @@ -11921,7 +12017,8 @@ type BrexRootMutationType { """ """ - createDepositsApplication(input: BrexCreateDepositsApplicationInput!): BrexCreateDepositsApplicationPayload @deprecated(reason: "Use 'onboardingCreateApplication' instead, passing in the blueprint name:'gemini'") + createDepositsApplication(input: BrexCreateDepositsApplicationInput!): BrexCreateDepositsApplicationPayload + @deprecated(reason: "Use 'onboardingCreateApplication' instead, passing in the blueprint name:'gemini'") """ """ @@ -11929,7 +12026,9 @@ type BrexRootMutationType { """ """ - createTransactionRefusedSubscription(input: BrexCreateTransactionRefusedSubscriptionInput!): BrexCreateTransactionRefusedSubscriptionPayload + createTransactionRefusedSubscription( + input: BrexCreateTransactionRefusedSubscriptionInput! + ): BrexCreateTransactionRefusedSubscriptionPayload """ """ @@ -11937,7 +12036,9 @@ type BrexRootMutationType { """ Creates a product onboarding application following a blueprint of the given name """ - createOnboardingProductApplication(input: BrexCreateOnboardingProductApplicationInput!): BrexCreateOnboardingProductApplicationPayload + createOnboardingProductApplication( + input: BrexCreateOnboardingProductApplicationInput! + ): BrexCreateOnboardingProductApplicationPayload """ """ @@ -11950,7 +12051,8 @@ type BrexRootMutationType { """ deleteLocation(input: BrexDeleteLocationInput!): BrexDeleteLocationPayload - createSession(input: BrexCreateSessionInput!): BrexCreateSessionResponsePayload! @deprecated(reason: "Use `createOpenidSession` instead") + createSession(input: BrexCreateSessionInput!): BrexCreateSessionResponsePayload! + @deprecated(reason: "Use `createOpenidSession` instead") } type OneGraphSignoutResponsePayload { @@ -12621,8 +12723,12 @@ Mutations related to apps """ type OneGraphAppMutations { setCORSOrigins(corsOrigins: [String!]!): OneGraphApp! - setJwtPreflightQueryAndWebhookUrl(input: OneGraphSetJwtPreflightQueryAndWebhookUrlInput!): OneGraphSetAppJwtPreflightQueryResponsePayload - setJwtSigningAlgorithmAndSecret(input: OneGraphSetJwtSigningAlgorithmAndSecretInput!): OneGraphSetJwtSigningAlgorithmAndSecretPayload + setJwtPreflightQueryAndWebhookUrl( + input: OneGraphSetJwtPreflightQueryAndWebhookUrlInput! + ): OneGraphSetAppJwtPreflightQueryResponsePayload + setJwtSigningAlgorithmAndSecret( + input: OneGraphSetJwtSigningAlgorithmAndSecretInput! + ): OneGraphSetJwtSigningAlgorithmAndSecretPayload setAuthGuardianActive(input: OneGraphSetAuthGuardianActiveInput!): OneGraphSetAuthGuardianActiveResponsePayload setAuthGuardian(input: OneGraphSetAuthGuardianInput!): OneGraphSetAuthGuardianResponsePayload setNetlifySiteNames(input: OneGraphSetAppNetlifySiteNamesInput!): OneGraphSetAppNetlifySiteNamesResponsePayload! @@ -12640,20 +12746,31 @@ type OneGraphAppMutations { Mutations for the currently authed user """ type OneGraphMutation { - app(id: String!): OneGraphAppMutations @deprecated(reason: "Use setAppCORSOrigins") + app(id: String!): OneGraphAppMutations + @deprecated(reason: "Use setAppCORSOrigins") createServiceLink(data: OneGraphCreateServiceLinkArg!): OneGraphCreateServiceLinkResponsePayload! linkOneGraphNodes(input: OneGraphLinkOneGraphNodesInput!): OneGraphLinkOneGraphNodesResponsePayload! unLinkOneGraphNodes(input: OneGraphUnLinkOneGraphNodesInput!): OneGraphUnLinkOneGraphNodesResponsePayload! completeTour(data: OneGraphCompleteTourData!): OneGraphCompleteTourResponsePayload! - createApp(""" - `id` of the organization that this app should belong to - """ orgId: String! corsOrigins: [String!]! description: String name: String!): OneGraphApp! + createApp( + """ + `id` of the organization that this app should belong to + """ + orgId: String! + corsOrigins: [String!]! + description: String + name: String! + ): OneGraphApp! executeChain(input: OneGraphQueryChainInput!): OneGraphQueryChainMutationPayload! setAppCORSOrigins(data: SetAppCORSOriginsData!): SetAppCORSOriginsResponsePayload! addCORSOriginToApp(input: OneGraphAddCORSOriginToAppInput!): OneGraphAddCORSOriginToAppResponsePayload! removeCORSOriginFromApp(input: OneGraphRemoveCORSOriginFromAppInput!): OneGraphRemoveCORSOriginFromAppResponsePayload! - addNetlifySiteToAppCORSOrigins(input: OneGraphAddNetlifySiteToAppCORSOriginsInput!): OneGraphAddNetlifySiteToAppCORSOriginsResponsePayload! - removeNetlifySiteFromAppCORSOrigins(input: OneGraphRemoveNetlifySiteFromAppCORSOriginsInput!): OneGraphRemoveNetlifySiteFromAppCORSOriginsResponsePayload! + addNetlifySiteToAppCORSOrigins( + input: OneGraphAddNetlifySiteToAppCORSOriginsInput! + ): OneGraphAddNetlifySiteToAppCORSOriginsResponsePayload! + removeNetlifySiteFromAppCORSOrigins( + input: OneGraphRemoveNetlifySiteFromAppCORSOriginsInput! + ): OneGraphRemoveNetlifySiteFromAppCORSOriginsResponsePayload! createServiceAuth(data: OneGraphCreateServiceAuthInput!): OneGraphCreateServiceAuthResponsePayload! destroyServiceAuth(data: OneGraphDestroyServiceAuthInput!): OneGraphDestroyServiceAuthResponsePayload! subscriptionUnsubscribe(data: OneGraphGraphQLSubscriptionUnsubscribeInput!): OneGraphGraphQLSubscriptionUnsubscribeResponsePayload! @@ -12669,31 +12786,58 @@ type OneGraphMutation { createPersitQueryToken(input: OneGraphPersistedQueryTokenInput!): OneGraphCreatePersitQueryTokenResponsePayload! deletePersistedQuery(input: OneGraphDeletePersistedQueryInput!): OneGraphDeletePersistedQueryResponsePayload! setupSalesforceSubscriptionHelperClass: OneGraphSetupSalesforceSubscriptionsCreateHelperClassPayload! - setupSalesforceSubscriptionTriggerClass(input: OneGraphSetupSalesforceSubscriptionsCreateTriggerClassInput!): OneGraphSetupSalesforceSubscriptionsCreateTriggerClassPayload! + setupSalesforceSubscriptionTriggerClass( + input: OneGraphSetupSalesforceSubscriptionsCreateTriggerClassInput! + ): OneGraphSetupSalesforceSubscriptionsCreateTriggerClassPayload! """ Allows non-admin users to subscribe to GitHub events on OneGraph for the given repo and app. """ - enableGitHubRepositorySubscriptionDelegation(input: OneGraphEnableGithubRepositorySubscriptionDelegationInput!): OneGraphEnableGithubRepositorySubscriptionDelegationResult! + enableGitHubRepositorySubscriptionDelegation( + input: OneGraphEnableGithubRepositorySubscriptionDelegationInput! + ): OneGraphEnableGithubRepositorySubscriptionDelegationResult! """ Remove ability for non-admin users to subscribe to GitHub events on OneGraph for the given repo and app. """ - disableGitHubRepositorySubscriptionDelegation(input: OneGraphDisableGithubRepositorySubscriptionDelegationInput!): OneGraphDisableGithubRepositorySubscriptionDelegationResult! + disableGitHubRepositorySubscriptionDelegation( + input: OneGraphDisableGithubRepositorySubscriptionDelegationInput! + ): OneGraphDisableGithubRepositorySubscriptionDelegationResult! """ Remove ability for non-admin users to subscribe to GitHub events on OneGraph. Allows the owner of the app on OneGraph to remove delegation for a repo. """ - disableGitHubRepositorySubscriptionDelegationById(input: OneGraphDisableGithubRepositorySubscriptionDelegationByIdInput!): OneGraphDisableGithubRepositorySubscriptionDelegationByIdResult! + disableGitHubRepositorySubscriptionDelegationById( + input: OneGraphDisableGithubRepositorySubscriptionDelegationByIdInput! + ): OneGraphDisableGithubRepositorySubscriptionDelegationByIdResult! destroyApp(id: String!): OneGraphApp - saveQuery(public: Boolean enabled: Boolean tags: [String!]! description: String name: String! body: String!): OneGraphQuery! - updateQuery(public: Boolean enabled: Boolean tags: [String!] name: String id: String!): OneGraphQuery - destroyQuery(version: String! name: String!): OneGraphQuery! - signUp(agreeToTOS: Boolean! passwordConfirm: String! password: String! email: String! fullName: String!): OneGraphSignInResult! - signIn(rememberMe: Boolean! password: String! email: String!): OneGraphSignInResult! + saveQuery( + public: Boolean + enabled: Boolean + tags: [String!]! + description: String + name: String! + body: String! + ): OneGraphQuery! + updateQuery( + public: Boolean + enabled: Boolean + tags: [String!] + name: String + id: String! + ): OneGraphQuery + destroyQuery(version: String!, name: String!): OneGraphQuery! + signUp( + agreeToTOS: Boolean! + passwordConfirm: String! + password: String! + email: String! + fullName: String! + ): OneGraphSignInResult! + signIn(rememberMe: Boolean!, password: String!, email: String!): OneGraphSignInResult! agreeToTos(userAgreesToTheOneGraphTermsOfService: Boolean!): OneGraphUser! signOut: OneGraphSignoutResponsePayload! exchangeGitHubContextForOneGraphAccessToken: OneGraphSignInResult! associateOneGraphUserWithGitHubAccount: OneGraphUser! requestPasswordReset(email: String!): String! - resetPassword(passwordConfirm: String! password: String! token: String!): Boolean! + resetPassword(passwordConfirm: String!, password: String!, token: String!): Boolean! } input ZeitAliasDeploymentArg { @@ -13003,19 +13147,19 @@ type TwitchTvPassthroughMutation { """ post(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -13023,19 +13167,19 @@ type TwitchTvPassthroughMutation { """ put(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -13043,19 +13187,19 @@ type TwitchTvPassthroughMutation { """ patch(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -13063,19 +13207,19 @@ type TwitchTvPassthroughMutation { """ delete(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -14405,19 +14549,19 @@ type SalesforcePassthroughMutation { """ post(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -14425,19 +14569,19 @@ type SalesforcePassthroughMutation { """ put(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -14445,19 +14589,19 @@ type SalesforcePassthroughMutation { """ patch(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -14465,19 +14609,19 @@ type SalesforcePassthroughMutation { """ delete(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -37229,11 +37373,15 @@ type SalesforceMutation { """ Create a new PlatformCachePartition """ - createPlatformCachePartition(input: SalesforceCreatePlatformCachePartitionInput!): SalesforceCreatePlatformCachePartitionPayload! + createPlatformCachePartition( + input: SalesforceCreatePlatformCachePartitionInput! + ): SalesforceCreatePlatformCachePartitionPayload! """ Create a new StreamingChannelShare """ - createStreamingChannelShare(input: SalesforceCreateStreamingChannelShareInput!): SalesforceCreateStreamingChannelSharePayload! + createStreamingChannelShare( + input: SalesforceCreateStreamingChannelShareInput! + ): SalesforceCreateStreamingChannelSharePayload! """ Create a new CaseComment """ @@ -37253,7 +37401,9 @@ type SalesforceMutation { """ Create a new LightningComponentResource """ - createLightningComponentResource(input: SalesforceCreateLightningComponentResourceInput!): SalesforceCreateLightningComponentResourcePayload! + createLightningComponentResource( + input: SalesforceCreateLightningComponentResourceInput! + ): SalesforceCreateLightningComponentResourcePayload! """ Create a new ApexComponent """ @@ -37273,7 +37423,9 @@ type SalesforceMutation { """ Create a new CollaborationGroupMemberRequest """ - createCollaborationGroupMemberRequest(input: SalesforceCreateCollaborationGroupMemberRequestInput!): SalesforceCreateCollaborationGroupMemberRequestPayload! + createCollaborationGroupMemberRequest( + input: SalesforceCreateCollaborationGroupMemberRequestInput! + ): SalesforceCreateCollaborationGroupMemberRequestPayload! """ Create a new MacroShare """ @@ -37301,7 +37453,9 @@ type SalesforceMutation { """ Create a new UserAppMenuCustomizationShare """ - createUserAppMenuCustomizationShare(input: SalesforceCreateUserAppMenuCustomizationShareInput!): SalesforceCreateUserAppMenuCustomizationSharePayload! + createUserAppMenuCustomizationShare( + input: SalesforceCreateUserAppMenuCustomizationShareInput! + ): SalesforceCreateUserAppMenuCustomizationSharePayload! """ Create a new UserAppInfo """ @@ -37309,11 +37463,15 @@ type SalesforceMutation { """ Create a new ActionLinkGroupTemplate """ - createActionLinkGroupTemplate(input: SalesforceCreateActionLinkGroupTemplateInput!): SalesforceCreateActionLinkGroupTemplatePayload! + createActionLinkGroupTemplate( + input: SalesforceCreateActionLinkGroupTemplateInput! + ): SalesforceCreateActionLinkGroupTemplatePayload! """ Create a new UserProvisioningRequestShare """ - createUserProvisioningRequestShare(input: SalesforceCreateUserProvisioningRequestShareInput!): SalesforceCreateUserProvisioningRequestSharePayload! + createUserProvisioningRequestShare( + input: SalesforceCreateUserProvisioningRequestShareInput! + ): SalesforceCreateUserProvisioningRequestSharePayload! """ Create a new Asset """ @@ -37329,7 +37487,9 @@ type SalesforceMutation { """ Create a new ApexEmailNotification """ - createApexEmailNotification(input: SalesforceCreateApexEmailNotificationInput!): SalesforceCreateApexEmailNotificationPayload! + createApexEmailNotification( + input: SalesforceCreateApexEmailNotificationInput! + ): SalesforceCreateApexEmailNotificationPayload! """ Create a new CategoryNode """ @@ -37345,7 +37505,9 @@ type SalesforceMutation { """ Create a new CollaborationInvitation """ - createCollaborationInvitation(input: SalesforceCreateCollaborationInvitationInput!): SalesforceCreateCollaborationInvitationPayload! + createCollaborationInvitation( + input: SalesforceCreateCollaborationInvitationInput! + ): SalesforceCreateCollaborationInvitationPayload! """ Create a new AdditionalNumber """ @@ -37365,7 +37527,9 @@ type SalesforceMutation { """ Create a new ListEmailRecipientSource """ - createListEmailRecipientSource(input: SalesforceCreateListEmailRecipientSourceInput!): SalesforceCreateListEmailRecipientSourcePayload! + createListEmailRecipientSource( + input: SalesforceCreateListEmailRecipientSourceInput! + ): SalesforceCreateListEmailRecipientSourcePayload! """ Create a new Opportunity """ @@ -37405,7 +37569,9 @@ type SalesforceMutation { """ Create a new UserProvAccountStaging """ - createUserProvAccountStaging(input: SalesforceCreateUserProvAccountStagingInput!): SalesforceCreateUserProvAccountStagingPayload! + createUserProvAccountStaging( + input: SalesforceCreateUserProvAccountStagingInput! + ): SalesforceCreateUserProvAccountStagingPayload! """ Create a new FlowInterviewShare """ @@ -37413,7 +37579,9 @@ type SalesforceMutation { """ Create a new OrgDeleteRequestShare """ - createOrgDeleteRequestShare(input: SalesforceCreateOrgDeleteRequestShareInput!): SalesforceCreateOrgDeleteRequestSharePayload! + createOrgDeleteRequestShare( + input: SalesforceCreateOrgDeleteRequestShareInput! + ): SalesforceCreateOrgDeleteRequestSharePayload! """ Create a new ApexTestResult """ @@ -37437,7 +37605,9 @@ type SalesforceMutation { """ Create a new EmailServicesFunction """ - createEmailServicesFunction(input: SalesforceCreateEmailServicesFunctionInput!): SalesforceCreateEmailServicesFunctionPayload! + createEmailServicesFunction( + input: SalesforceCreateEmailServicesFunctionInput! + ): SalesforceCreateEmailServicesFunctionPayload! """ Create a new OrgWideEmailAddress """ @@ -37457,7 +37627,9 @@ type SalesforceMutation { """ Create a new DocumentAttachmentMap """ - createDocumentAttachmentMap(input: SalesforceCreateDocumentAttachmentMapInput!): SalesforceCreateDocumentAttachmentMapPayload! + createDocumentAttachmentMap( + input: SalesforceCreateDocumentAttachmentMapInput! + ): SalesforceCreateDocumentAttachmentMapPayload! """ Create a new MacroInstruction """ @@ -37465,7 +37637,9 @@ type SalesforceMutation { """ Create a new ContentWorkspacePermission """ - createContentWorkspacePermission(input: SalesforceCreateContentWorkspacePermissionInput!): SalesforceCreateContentWorkspacePermissionPayload! + createContentWorkspacePermission( + input: SalesforceCreateContentWorkspacePermissionInput! + ): SalesforceCreateContentWorkspacePermissionPayload! """ Create a new BusinessHours """ @@ -37485,7 +37659,9 @@ type SalesforceMutation { """ Create a new UserAppMenuCustomization """ - createUserAppMenuCustomization(input: SalesforceCreateUserAppMenuCustomizationInput!): SalesforceCreateUserAppMenuCustomizationPayload! + createUserAppMenuCustomization( + input: SalesforceCreateUserAppMenuCustomizationInput! + ): SalesforceCreateUserAppMenuCustomizationPayload! """ Create a new Announcement """ @@ -37513,7 +37689,9 @@ type SalesforceMutation { """ Create a new SecurityCustomBaseline """ - createSecurityCustomBaseline(input: SalesforceCreateSecurityCustomBaselineInput!): SalesforceCreateSecurityCustomBaselinePayload! + createSecurityCustomBaseline( + input: SalesforceCreateSecurityCustomBaselineInput! + ): SalesforceCreateSecurityCustomBaselinePayload! """ Create a new AuraDefinition """ @@ -37537,7 +37715,9 @@ type SalesforceMutation { """ Create a new ContentWorkspaceMember """ - createContentWorkspaceMember(input: SalesforceCreateContentWorkspaceMemberInput!): SalesforceCreateContentWorkspaceMemberPayload! + createContentWorkspaceMember( + input: SalesforceCreateContentWorkspaceMemberInput! + ): SalesforceCreateContentWorkspaceMemberPayload! """ Create a new QueueSobject """ @@ -37569,7 +37749,9 @@ type SalesforceMutation { """ Create a new CollaborationGroupMember """ - createCollaborationGroupMember(input: SalesforceCreateCollaborationGroupMemberInput!): SalesforceCreateCollaborationGroupMemberPayload! + createCollaborationGroupMember( + input: SalesforceCreateCollaborationGroupMemberInput! + ): SalesforceCreateCollaborationGroupMemberPayload! """ Create a new AssetRelationship """ @@ -37581,7 +37763,9 @@ type SalesforceMutation { """ Create a new OpportunityContactRole """ - createOpportunityContactRole(input: SalesforceCreateOpportunityContactRoleInput!): SalesforceCreateOpportunityContactRolePayload! + createOpportunityContactRole( + input: SalesforceCreateOpportunityContactRoleInput! + ): SalesforceCreateOpportunityContactRolePayload! """ Create a new CaseSolution """ @@ -37613,11 +37797,15 @@ type SalesforceMutation { """ Create a new PermissionSetLicenseAssign """ - createPermissionSetLicenseAssign(input: SalesforceCreatePermissionSetLicenseAssignInput!): SalesforceCreatePermissionSetLicenseAssignPayload! + createPermissionSetLicenseAssign( + input: SalesforceCreatePermissionSetLicenseAssignInput! + ): SalesforceCreatePermissionSetLicenseAssignPayload! """ Create a new UserProvisioningRequest """ - createUserProvisioningRequest(input: SalesforceCreateUserProvisioningRequestInput!): SalesforceCreateUserProvisioningRequestPayload! + createUserProvisioningRequest( + input: SalesforceCreateUserProvisioningRequestInput! + ): SalesforceCreateUserProvisioningRequestPayload! """ Create a new UserPackageLicense """ @@ -37649,7 +37837,9 @@ type SalesforceMutation { """ Create a new ChatterExtensionConfig """ - createChatterExtensionConfig(input: SalesforceCreateChatterExtensionConfigInput!): SalesforceCreateChatterExtensionConfigPayload! + createChatterExtensionConfig( + input: SalesforceCreateChatterExtensionConfigInput! + ): SalesforceCreateChatterExtensionConfigPayload! """ Create a new ListEmailShare """ @@ -37713,7 +37903,9 @@ type SalesforceMutation { """ Create a new OutgoingEmailRelation """ - createOutgoingEmailRelation(input: SalesforceCreateOutgoingEmailRelationInput!): SalesforceCreateOutgoingEmailRelationPayload! + createOutgoingEmailRelation( + input: SalesforceCreateOutgoingEmailRelationInput! + ): SalesforceCreateOutgoingEmailRelationPayload! """ Create a new CaseTeamTemplate """ @@ -37725,7 +37917,9 @@ type SalesforceMutation { """ Create a new CaseTeamTemplateMember """ - createCaseTeamTemplateMember(input: SalesforceCreateCaseTeamTemplateMemberInput!): SalesforceCreateCaseTeamTemplateMemberPayload! + createCaseTeamTemplateMember( + input: SalesforceCreateCaseTeamTemplateMemberInput! + ): SalesforceCreateCaseTeamTemplateMemberPayload! """ Create a new GroupMember """ @@ -37733,7 +37927,9 @@ type SalesforceMutation { """ Create a new CaseTeamTemplateRecord """ - createCaseTeamTemplateRecord(input: SalesforceCreateCaseTeamTemplateRecordInput!): SalesforceCreateCaseTeamTemplateRecordPayload! + createCaseTeamTemplateRecord( + input: SalesforceCreateCaseTeamTemplateRecordInput! + ): SalesforceCreateCaseTeamTemplateRecordPayload! """ Create a new IdeaComment """ @@ -37741,7 +37937,9 @@ type SalesforceMutation { """ Create a new OpportunityCompetitor """ - createOpportunityCompetitor(input: SalesforceCreateOpportunityCompetitorInput!): SalesforceCreateOpportunityCompetitorPayload! + createOpportunityCompetitor( + input: SalesforceCreateOpportunityCompetitorInput! + ): SalesforceCreateOpportunityCompetitorPayload! """ Create a new ContentDocumentLink """ @@ -37785,7 +37983,9 @@ type SalesforceMutation { """ Create a new PlatformCachePartitionType """ - createPlatformCachePartitionType(input: SalesforceCreatePlatformCachePartitionTypeInput!): SalesforceCreatePlatformCachePartitionTypePayload! + createPlatformCachePartitionType( + input: SalesforceCreatePlatformCachePartitionTypeInput! + ): SalesforceCreatePlatformCachePartitionTypePayload! """ Create a new DandBCompany """ @@ -37797,7 +37997,9 @@ type SalesforceMutation { """ Create a new TransactionSecurityPolicy """ - createTransactionSecurityPolicy(input: SalesforceCreateTransactionSecurityPolicyInput!): SalesforceCreateTransactionSecurityPolicyPayload! + createTransactionSecurityPolicy( + input: SalesforceCreateTransactionSecurityPolicyInput! + ): SalesforceCreateTransactionSecurityPolicyPayload! """ Create a new PushTopic """ @@ -37837,7 +38039,9 @@ type SalesforceMutation { """ Create a new UserProvisioningConfig """ - createUserProvisioningConfig(input: SalesforceCreateUserProvisioningConfigInput!): SalesforceCreateUserProvisioningConfigPayload! + createUserProvisioningConfig( + input: SalesforceCreateUserProvisioningConfigInput! + ): SalesforceCreateUserProvisioningConfigPayload! """ Create a new DuplicateRecordItem """ @@ -37845,11 +38049,15 @@ type SalesforceMutation { """ Create a new PermissionSetAssignment """ - createPermissionSetAssignment(input: SalesforceCreatePermissionSetAssignmentInput!): SalesforceCreatePermissionSetAssignmentPayload! + createPermissionSetAssignment( + input: SalesforceCreatePermissionSetAssignmentInput! + ): SalesforceCreatePermissionSetAssignmentPayload! """ Create a new UserListViewCriterion """ - createUserListViewCriterion(input: SalesforceCreateUserListViewCriterionInput!): SalesforceCreateUserListViewCriterionPayload! + createUserListViewCriterion( + input: SalesforceCreateUserListViewCriterionInput! + ): SalesforceCreateUserListViewCriterionPayload! """ Create a new OrderItem """ @@ -37861,11 +38069,15 @@ type SalesforceMutation { """ Create a new CollaborationGroupRecord """ - createCollaborationGroupRecord(input: SalesforceCreateCollaborationGroupRecordInput!): SalesforceCreateCollaborationGroupRecordPayload! + createCollaborationGroupRecord( + input: SalesforceCreateCollaborationGroupRecordInput! + ): SalesforceCreateCollaborationGroupRecordPayload! """ Create a new LightningComponentBundle """ - createLightningComponentBundle(input: SalesforceCreateLightningComponentBundleInput!): SalesforceCreateLightningComponentBundlePayload! + createLightningComponentBundle( + input: SalesforceCreateLightningComponentBundleInput! + ): SalesforceCreateLightningComponentBundlePayload! """ Create a new TopicAssignment """ @@ -37885,11 +38097,15 @@ type SalesforceMutation { """ Update PlatformCachePartition """ - updatePlatformCachePartition(input: SalesforceUpdatePlatformCachePartitionInput!): SalesforceUpdatePlatformCachePartitionPayload! + updatePlatformCachePartition( + input: SalesforceUpdatePlatformCachePartitionInput! + ): SalesforceUpdatePlatformCachePartitionPayload! """ Update StreamingChannelShare """ - updateStreamingChannelShare(input: SalesforceUpdateStreamingChannelShareInput!): SalesforceUpdateStreamingChannelSharePayload! + updateStreamingChannelShare( + input: SalesforceUpdateStreamingChannelShareInput! + ): SalesforceUpdateStreamingChannelSharePayload! """ Update CaseComment """ @@ -37909,7 +38125,9 @@ type SalesforceMutation { """ Update LightningComponentResource """ - updateLightningComponentResource(input: SalesforceUpdateLightningComponentResourceInput!): SalesforceUpdateLightningComponentResourcePayload! + updateLightningComponentResource( + input: SalesforceUpdateLightningComponentResourceInput! + ): SalesforceUpdateLightningComponentResourcePayload! """ Update ApexComponent """ @@ -37929,7 +38147,9 @@ type SalesforceMutation { """ Update CollaborationGroupMemberRequest """ - updateCollaborationGroupMemberRequest(input: SalesforceUpdateCollaborationGroupMemberRequestInput!): SalesforceUpdateCollaborationGroupMemberRequestPayload! + updateCollaborationGroupMemberRequest( + input: SalesforceUpdateCollaborationGroupMemberRequestInput! + ): SalesforceUpdateCollaborationGroupMemberRequestPayload! """ Update MacroShare """ @@ -37961,7 +38181,9 @@ type SalesforceMutation { """ Update UserAppMenuCustomizationShare """ - updateUserAppMenuCustomizationShare(input: SalesforceUpdateUserAppMenuCustomizationShareInput!): SalesforceUpdateUserAppMenuCustomizationSharePayload! + updateUserAppMenuCustomizationShare( + input: SalesforceUpdateUserAppMenuCustomizationShareInput! + ): SalesforceUpdateUserAppMenuCustomizationSharePayload! """ Update AppMenuItem """ @@ -37973,11 +38195,15 @@ type SalesforceMutation { """ Update ActionLinkGroupTemplate """ - updateActionLinkGroupTemplate(input: SalesforceUpdateActionLinkGroupTemplateInput!): SalesforceUpdateActionLinkGroupTemplatePayload! + updateActionLinkGroupTemplate( + input: SalesforceUpdateActionLinkGroupTemplateInput! + ): SalesforceUpdateActionLinkGroupTemplatePayload! """ Update UserProvisioningRequestShare """ - updateUserProvisioningRequestShare(input: SalesforceUpdateUserProvisioningRequestShareInput!): SalesforceUpdateUserProvisioningRequestSharePayload! + updateUserProvisioningRequestShare( + input: SalesforceUpdateUserProvisioningRequestShareInput! + ): SalesforceUpdateUserProvisioningRequestSharePayload! """ Update Asset """ @@ -37985,7 +38211,9 @@ type SalesforceMutation { """ Update ProcessInstanceWorkitem """ - updateProcessInstanceWorkitem(input: SalesforceUpdateProcessInstanceWorkitemInput!): SalesforceUpdateProcessInstanceWorkitemPayload! + updateProcessInstanceWorkitem( + input: SalesforceUpdateProcessInstanceWorkitemInput! + ): SalesforceUpdateProcessInstanceWorkitemPayload! """ Update UserProvAccount """ @@ -37997,7 +38225,9 @@ type SalesforceMutation { """ Update ApexEmailNotification """ - updateApexEmailNotification(input: SalesforceUpdateApexEmailNotificationInput!): SalesforceUpdateApexEmailNotificationPayload! + updateApexEmailNotification( + input: SalesforceUpdateApexEmailNotificationInput! + ): SalesforceUpdateApexEmailNotificationPayload! """ Update CategoryNode """ @@ -38025,7 +38255,9 @@ type SalesforceMutation { """ Update ListEmailRecipientSource """ - updateListEmailRecipientSource(input: SalesforceUpdateListEmailRecipientSourceInput!): SalesforceUpdateListEmailRecipientSourcePayload! + updateListEmailRecipientSource( + input: SalesforceUpdateListEmailRecipientSourceInput! + ): SalesforceUpdateListEmailRecipientSourcePayload! """ Update Opportunity """ @@ -38065,7 +38297,9 @@ type SalesforceMutation { """ Update UserProvAccountStaging """ - updateUserProvAccountStaging(input: SalesforceUpdateUserProvAccountStagingInput!): SalesforceUpdateUserProvAccountStagingPayload! + updateUserProvAccountStaging( + input: SalesforceUpdateUserProvAccountStagingInput! + ): SalesforceUpdateUserProvAccountStagingPayload! """ Update FlowInterviewShare """ @@ -38073,7 +38307,9 @@ type SalesforceMutation { """ Update OrgDeleteRequestShare """ - updateOrgDeleteRequestShare(input: SalesforceUpdateOrgDeleteRequestShareInput!): SalesforceUpdateOrgDeleteRequestSharePayload! + updateOrgDeleteRequestShare( + input: SalesforceUpdateOrgDeleteRequestShareInput! + ): SalesforceUpdateOrgDeleteRequestSharePayload! """ Update ApexTestResult """ @@ -38093,7 +38329,9 @@ type SalesforceMutation { """ Update EmailServicesFunction """ - updateEmailServicesFunction(input: SalesforceUpdateEmailServicesFunctionInput!): SalesforceUpdateEmailServicesFunctionPayload! + updateEmailServicesFunction( + input: SalesforceUpdateEmailServicesFunctionInput! + ): SalesforceUpdateEmailServicesFunctionPayload! """ Update OrgWideEmailAddress """ @@ -38113,7 +38351,9 @@ type SalesforceMutation { """ Update DocumentAttachmentMap """ - updateDocumentAttachmentMap(input: SalesforceUpdateDocumentAttachmentMapInput!): SalesforceUpdateDocumentAttachmentMapPayload! + updateDocumentAttachmentMap( + input: SalesforceUpdateDocumentAttachmentMapInput! + ): SalesforceUpdateDocumentAttachmentMapPayload! """ Update MacroInstruction """ @@ -38121,7 +38361,9 @@ type SalesforceMutation { """ Update ContentWorkspacePermission """ - updateContentWorkspacePermission(input: SalesforceUpdateContentWorkspacePermissionInput!): SalesforceUpdateContentWorkspacePermissionPayload! + updateContentWorkspacePermission( + input: SalesforceUpdateContentWorkspacePermissionInput! + ): SalesforceUpdateContentWorkspacePermissionPayload! """ Update BusinessHours """ @@ -38137,7 +38379,9 @@ type SalesforceMutation { """ Update UserAppMenuCustomization """ - updateUserAppMenuCustomization(input: SalesforceUpdateUserAppMenuCustomizationInput!): SalesforceUpdateUserAppMenuCustomizationPayload! + updateUserAppMenuCustomization( + input: SalesforceUpdateUserAppMenuCustomizationInput! + ): SalesforceUpdateUserAppMenuCustomizationPayload! """ Update Announcement """ @@ -38169,7 +38413,9 @@ type SalesforceMutation { """ Update SecurityCustomBaseline """ - updateSecurityCustomBaseline(input: SalesforceUpdateSecurityCustomBaselineInput!): SalesforceUpdateSecurityCustomBaselinePayload! + updateSecurityCustomBaseline( + input: SalesforceUpdateSecurityCustomBaselineInput! + ): SalesforceUpdateSecurityCustomBaselinePayload! """ Update AuraDefinition """ @@ -38197,7 +38443,9 @@ type SalesforceMutation { """ Update ContentWorkspaceMember """ - updateContentWorkspaceMember(input: SalesforceUpdateContentWorkspaceMemberInput!): SalesforceUpdateContentWorkspaceMemberPayload! + updateContentWorkspaceMember( + input: SalesforceUpdateContentWorkspaceMemberInput! + ): SalesforceUpdateContentWorkspaceMemberPayload! """ Update ContentWorkspace """ @@ -38221,7 +38469,9 @@ type SalesforceMutation { """ Update CollaborationGroupMember """ - updateCollaborationGroupMember(input: SalesforceUpdateCollaborationGroupMemberInput!): SalesforceUpdateCollaborationGroupMemberPayload! + updateCollaborationGroupMember( + input: SalesforceUpdateCollaborationGroupMemberInput! + ): SalesforceUpdateCollaborationGroupMemberPayload! """ Update AssetRelationship """ @@ -38233,7 +38483,9 @@ type SalesforceMutation { """ Update OpportunityContactRole """ - updateOpportunityContactRole(input: SalesforceUpdateOpportunityContactRoleInput!): SalesforceUpdateOpportunityContactRolePayload! + updateOpportunityContactRole( + input: SalesforceUpdateOpportunityContactRoleInput! + ): SalesforceUpdateOpportunityContactRolePayload! """ Update Account """ @@ -38265,7 +38517,9 @@ type SalesforceMutation { """ Update UserProvisioningRequest """ - updateUserProvisioningRequest(input: SalesforceUpdateUserProvisioningRequestInput!): SalesforceUpdateUserProvisioningRequestPayload! + updateUserProvisioningRequest( + input: SalesforceUpdateUserProvisioningRequestInput! + ): SalesforceUpdateUserProvisioningRequestPayload! """ Update AccountContactRole """ @@ -38293,7 +38547,9 @@ type SalesforceMutation { """ Update ChatterExtensionConfig """ - updateChatterExtensionConfig(input: SalesforceUpdateChatterExtensionConfigInput!): SalesforceUpdateChatterExtensionConfigPayload! + updateChatterExtensionConfig( + input: SalesforceUpdateChatterExtensionConfigInput! + ): SalesforceUpdateChatterExtensionConfigPayload! """ Update ListEmailShare """ @@ -38369,7 +38625,9 @@ type SalesforceMutation { """ Update CaseTeamTemplateMember """ - updateCaseTeamTemplateMember(input: SalesforceUpdateCaseTeamTemplateMemberInput!): SalesforceUpdateCaseTeamTemplateMemberPayload! + updateCaseTeamTemplateMember( + input: SalesforceUpdateCaseTeamTemplateMemberInput! + ): SalesforceUpdateCaseTeamTemplateMemberPayload! """ Update IdeaComment """ @@ -38377,7 +38635,9 @@ type SalesforceMutation { """ Update OpportunityCompetitor """ - updateOpportunityCompetitor(input: SalesforceUpdateOpportunityCompetitorInput!): SalesforceUpdateOpportunityCompetitorPayload! + updateOpportunityCompetitor( + input: SalesforceUpdateOpportunityCompetitorInput! + ): SalesforceUpdateOpportunityCompetitorPayload! """ Update ContentDocumentLink """ @@ -38413,7 +38673,9 @@ type SalesforceMutation { """ Update PlatformCachePartitionType """ - updatePlatformCachePartitionType(input: SalesforceUpdatePlatformCachePartitionTypeInput!): SalesforceUpdatePlatformCachePartitionTypePayload! + updatePlatformCachePartitionType( + input: SalesforceUpdatePlatformCachePartitionTypeInput! + ): SalesforceUpdatePlatformCachePartitionTypePayload! """ Update DandBCompany """ @@ -38425,7 +38687,9 @@ type SalesforceMutation { """ Update TransactionSecurityPolicy """ - updateTransactionSecurityPolicy(input: SalesforceUpdateTransactionSecurityPolicyInput!): SalesforceUpdateTransactionSecurityPolicyPayload! + updateTransactionSecurityPolicy( + input: SalesforceUpdateTransactionSecurityPolicyInput! + ): SalesforceUpdateTransactionSecurityPolicyPayload! """ Update PushTopic """ @@ -38461,7 +38725,9 @@ type SalesforceMutation { """ Update UserProvisioningConfig """ - updateUserProvisioningConfig(input: SalesforceUpdateUserProvisioningConfigInput!): SalesforceUpdateUserProvisioningConfigPayload! + updateUserProvisioningConfig( + input: SalesforceUpdateUserProvisioningConfigInput! + ): SalesforceUpdateUserProvisioningConfigPayload! """ Update DuplicateRecordItem """ @@ -38469,7 +38735,9 @@ type SalesforceMutation { """ Update UserListViewCriterion """ - updateUserListViewCriterion(input: SalesforceUpdateUserListViewCriterionInput!): SalesforceUpdateUserListViewCriterionPayload! + updateUserListViewCriterion( + input: SalesforceUpdateUserListViewCriterionInput! + ): SalesforceUpdateUserListViewCriterionPayload! """ Update OrderItem """ @@ -38485,7 +38753,9 @@ type SalesforceMutation { """ Update LightningComponentBundle """ - updateLightningComponentBundle(input: SalesforceUpdateLightningComponentBundleInput!): SalesforceUpdateLightningComponentBundlePayload! + updateLightningComponentBundle( + input: SalesforceUpdateLightningComponentBundleInput! + ): SalesforceUpdateLightningComponentBundlePayload! """ Update ApexTestRunResult """ @@ -38501,11 +38771,15 @@ type SalesforceMutation { """ Delete PlatformCachePartition by its id. """ - deletePlatformCachePartition(input: SalesforceDeletePlatformCachePartitionInput!): SalesforceDeletePlatformCachePartitionPayload! + deletePlatformCachePartition( + input: SalesforceDeletePlatformCachePartitionInput! + ): SalesforceDeletePlatformCachePartitionPayload! """ Delete StreamingChannelShare by its id. """ - deleteStreamingChannelShare(input: SalesforceDeleteStreamingChannelShareInput!): SalesforceDeleteStreamingChannelSharePayload! + deleteStreamingChannelShare( + input: SalesforceDeleteStreamingChannelShareInput! + ): SalesforceDeleteStreamingChannelSharePayload! """ Delete CaseComment by its id. """ @@ -38517,11 +38791,15 @@ type SalesforceMutation { """ Delete ContentDistributionView by its id. """ - deleteContentDistributionView(input: SalesforceDeleteContentDistributionViewInput!): SalesforceDeleteContentDistributionViewPayload! + deleteContentDistributionView( + input: SalesforceDeleteContentDistributionViewInput! + ): SalesforceDeleteContentDistributionViewPayload! """ Delete ContentUserSubscription by its id. """ - deleteContentUserSubscription(input: SalesforceDeleteContentUserSubscriptionInput!): SalesforceDeleteContentUserSubscriptionPayload! + deleteContentUserSubscription( + input: SalesforceDeleteContentUserSubscriptionInput! + ): SalesforceDeleteContentUserSubscriptionPayload! """ Delete Case by its id. """ @@ -38533,7 +38811,9 @@ type SalesforceMutation { """ Delete LightningComponentResource by its id. """ - deleteLightningComponentResource(input: SalesforceDeleteLightningComponentResourceInput!): SalesforceDeleteLightningComponentResourcePayload! + deleteLightningComponentResource( + input: SalesforceDeleteLightningComponentResourceInput! + ): SalesforceDeleteLightningComponentResourcePayload! """ Delete ApexComponent by its id. """ @@ -38557,7 +38837,9 @@ type SalesforceMutation { """ Delete CollaborationGroupMemberRequest by its id. """ - deleteCollaborationGroupMemberRequest(input: SalesforceDeleteCollaborationGroupMemberRequestInput!): SalesforceDeleteCollaborationGroupMemberRequestPayload! + deleteCollaborationGroupMemberRequest( + input: SalesforceDeleteCollaborationGroupMemberRequestInput! + ): SalesforceDeleteCollaborationGroupMemberRequestPayload! """ Delete MacroShare by its id. """ @@ -38597,11 +38879,15 @@ type SalesforceMutation { """ Delete DashboardComponentFeed by its id. """ - deleteDashboardComponentFeed(input: SalesforceDeleteDashboardComponentFeedInput!): SalesforceDeleteDashboardComponentFeedPayload! + deleteDashboardComponentFeed( + input: SalesforceDeleteDashboardComponentFeedInput! + ): SalesforceDeleteDashboardComponentFeedPayload! """ Delete UserAppMenuCustomizationShare by its id. """ - deleteUserAppMenuCustomizationShare(input: SalesforceDeleteUserAppMenuCustomizationShareInput!): SalesforceDeleteUserAppMenuCustomizationSharePayload! + deleteUserAppMenuCustomizationShare( + input: SalesforceDeleteUserAppMenuCustomizationShareInput! + ): SalesforceDeleteUserAppMenuCustomizationSharePayload! """ Delete AppMenuItem by its id. """ @@ -38613,11 +38899,15 @@ type SalesforceMutation { """ Delete ActionLinkGroupTemplate by its id. """ - deleteActionLinkGroupTemplate(input: SalesforceDeleteActionLinkGroupTemplateInput!): SalesforceDeleteActionLinkGroupTemplatePayload! + deleteActionLinkGroupTemplate( + input: SalesforceDeleteActionLinkGroupTemplateInput! + ): SalesforceDeleteActionLinkGroupTemplatePayload! """ Delete UserProvisioningRequestShare by its id. """ - deleteUserProvisioningRequestShare(input: SalesforceDeleteUserProvisioningRequestShareInput!): SalesforceDeleteUserProvisioningRequestSharePayload! + deleteUserProvisioningRequestShare( + input: SalesforceDeleteUserProvisioningRequestShareInput! + ): SalesforceDeleteUserProvisioningRequestSharePayload! """ Delete Asset by its id. """ @@ -38625,7 +38915,9 @@ type SalesforceMutation { """ Delete ProcessInstanceWorkitem by its id. """ - deleteProcessInstanceWorkitem(input: SalesforceDeleteProcessInstanceWorkitemInput!): SalesforceDeleteProcessInstanceWorkitemPayload! + deleteProcessInstanceWorkitem( + input: SalesforceDeleteProcessInstanceWorkitemInput! + ): SalesforceDeleteProcessInstanceWorkitemPayload! """ Delete UserProvAccount by its id. """ @@ -38637,7 +38929,9 @@ type SalesforceMutation { """ Delete ApexEmailNotification by its id. """ - deleteApexEmailNotification(input: SalesforceDeleteApexEmailNotificationInput!): SalesforceDeleteApexEmailNotificationPayload! + deleteApexEmailNotification( + input: SalesforceDeleteApexEmailNotificationInput! + ): SalesforceDeleteApexEmailNotificationPayload! """ Delete CategoryNode by its id. """ @@ -38653,7 +38947,9 @@ type SalesforceMutation { """ Delete CollaborationInvitation by its id. """ - deleteCollaborationInvitation(input: SalesforceDeleteCollaborationInvitationInput!): SalesforceDeleteCollaborationInvitationPayload! + deleteCollaborationInvitation( + input: SalesforceDeleteCollaborationInvitationInput! + ): SalesforceDeleteCollaborationInvitationPayload! """ Delete AdditionalNumber by its id. """ @@ -38677,11 +38973,15 @@ type SalesforceMutation { """ Delete ListEmailRecipientSource by its id. """ - deleteListEmailRecipientSource(input: SalesforceDeleteListEmailRecipientSourceInput!): SalesforceDeleteListEmailRecipientSourcePayload! + deleteListEmailRecipientSource( + input: SalesforceDeleteListEmailRecipientSourceInput! + ): SalesforceDeleteListEmailRecipientSourcePayload! """ Delete ContentDocumentSubscription by its id. """ - deleteContentDocumentSubscription(input: SalesforceDeleteContentDocumentSubscriptionInput!): SalesforceDeleteContentDocumentSubscriptionPayload! + deleteContentDocumentSubscription( + input: SalesforceDeleteContentDocumentSubscriptionInput! + ): SalesforceDeleteContentDocumentSubscriptionPayload! """ Delete Opportunity by its id. """ @@ -38717,7 +39017,9 @@ type SalesforceMutation { """ Delete UserProvAccountStaging by its id. """ - deleteUserProvAccountStaging(input: SalesforceDeleteUserProvAccountStagingInput!): SalesforceDeleteUserProvAccountStagingPayload! + deleteUserProvAccountStaging( + input: SalesforceDeleteUserProvAccountStagingInput! + ): SalesforceDeleteUserProvAccountStagingPayload! """ Delete FlowInterviewShare by its id. """ @@ -38725,7 +39027,9 @@ type SalesforceMutation { """ Delete OrgDeleteRequestShare by its id. """ - deleteOrgDeleteRequestShare(input: SalesforceDeleteOrgDeleteRequestShareInput!): SalesforceDeleteOrgDeleteRequestSharePayload! + deleteOrgDeleteRequestShare( + input: SalesforceDeleteOrgDeleteRequestShareInput! + ): SalesforceDeleteOrgDeleteRequestSharePayload! """ Delete ApexTestResult by its id. """ @@ -38749,7 +39053,9 @@ type SalesforceMutation { """ Delete EmailServicesFunction by its id. """ - deleteEmailServicesFunction(input: SalesforceDeleteEmailServicesFunctionInput!): SalesforceDeleteEmailServicesFunctionPayload! + deleteEmailServicesFunction( + input: SalesforceDeleteEmailServicesFunctionInput! + ): SalesforceDeleteEmailServicesFunctionPayload! """ Delete OrgWideEmailAddress by its id. """ @@ -38765,7 +39071,9 @@ type SalesforceMutation { """ Delete ContentTagSubscription by its id. """ - deleteContentTagSubscription(input: SalesforceDeleteContentTagSubscriptionInput!): SalesforceDeleteContentTagSubscriptionPayload! + deleteContentTagSubscription( + input: SalesforceDeleteContentTagSubscriptionInput! + ): SalesforceDeleteContentTagSubscriptionPayload! """ Delete Contract by its id. """ @@ -38781,7 +39089,9 @@ type SalesforceMutation { """ Delete ContentWorkspacePermission by its id. """ - deleteContentWorkspacePermission(input: SalesforceDeleteContentWorkspacePermissionInput!): SalesforceDeleteContentWorkspacePermissionPayload! + deleteContentWorkspacePermission( + input: SalesforceDeleteContentWorkspacePermissionInput! + ): SalesforceDeleteContentWorkspacePermissionPayload! """ Delete ContentNotification by its id. """ @@ -38797,7 +39107,9 @@ type SalesforceMutation { """ Delete UserAppMenuCustomization by its id. """ - deleteUserAppMenuCustomization(input: SalesforceDeleteUserAppMenuCustomizationInput!): SalesforceDeleteUserAppMenuCustomizationPayload! + deleteUserAppMenuCustomization( + input: SalesforceDeleteUserAppMenuCustomizationInput! + ): SalesforceDeleteUserAppMenuCustomizationPayload! """ Delete TopicUserEvent by its id. """ @@ -38825,7 +39137,9 @@ type SalesforceMutation { """ Delete SecurityCustomBaseline by its id. """ - deleteSecurityCustomBaseline(input: SalesforceDeleteSecurityCustomBaselineInput!): SalesforceDeleteSecurityCustomBaselinePayload! + deleteSecurityCustomBaseline( + input: SalesforceDeleteSecurityCustomBaselineInput! + ): SalesforceDeleteSecurityCustomBaselinePayload! """ Delete AuraDefinition by its id. """ @@ -38861,7 +39175,9 @@ type SalesforceMutation { """ Delete ContentWorkspaceMember by its id. """ - deleteContentWorkspaceMember(input: SalesforceDeleteContentWorkspaceMemberInput!): SalesforceDeleteContentWorkspaceMemberPayload! + deleteContentWorkspaceMember( + input: SalesforceDeleteContentWorkspaceMemberInput! + ): SalesforceDeleteContentWorkspaceMemberPayload! """ Delete QueueSobject by its id. """ @@ -38889,7 +39205,9 @@ type SalesforceMutation { """ Delete CollaborationGroupFeed by its id. """ - deleteCollaborationGroupFeed(input: SalesforceDeleteCollaborationGroupFeedInput!): SalesforceDeleteCollaborationGroupFeedPayload! + deleteCollaborationGroupFeed( + input: SalesforceDeleteCollaborationGroupFeedInput! + ): SalesforceDeleteCollaborationGroupFeedPayload! """ Delete UserPreference by its id. """ @@ -38897,7 +39215,9 @@ type SalesforceMutation { """ Delete CollaborationGroupMember by its id. """ - deleteCollaborationGroupMember(input: SalesforceDeleteCollaborationGroupMemberInput!): SalesforceDeleteCollaborationGroupMemberPayload! + deleteCollaborationGroupMember( + input: SalesforceDeleteCollaborationGroupMemberInput! + ): SalesforceDeleteCollaborationGroupMemberPayload! """ Delete AssetRelationship by its id. """ @@ -38913,7 +39233,9 @@ type SalesforceMutation { """ Delete OpportunityContactRole by its id. """ - deleteOpportunityContactRole(input: SalesforceDeleteOpportunityContactRoleInput!): SalesforceDeleteOpportunityContactRolePayload! + deleteOpportunityContactRole( + input: SalesforceDeleteOpportunityContactRoleInput! + ): SalesforceDeleteOpportunityContactRolePayload! """ Delete CaseSolution by its id. """ @@ -38941,7 +39263,9 @@ type SalesforceMutation { """ Delete AssetRelationshipFeed by its id. """ - deleteAssetRelationshipFeed(input: SalesforceDeleteAssetRelationshipFeedInput!): SalesforceDeleteAssetRelationshipFeedPayload! + deleteAssetRelationshipFeed( + input: SalesforceDeleteAssetRelationshipFeedInput! + ): SalesforceDeleteAssetRelationshipFeedPayload! """ Delete CampaignMember by its id. """ @@ -38953,11 +39277,15 @@ type SalesforceMutation { """ Delete PermissionSetLicenseAssign by its id. """ - deletePermissionSetLicenseAssign(input: SalesforceDeletePermissionSetLicenseAssignInput!): SalesforceDeletePermissionSetLicenseAssignPayload! + deletePermissionSetLicenseAssign( + input: SalesforceDeletePermissionSetLicenseAssignInput! + ): SalesforceDeletePermissionSetLicenseAssignPayload! """ Delete UserProvisioningRequest by its id. """ - deleteUserProvisioningRequest(input: SalesforceDeleteUserProvisioningRequestInput!): SalesforceDeleteUserProvisioningRequestPayload! + deleteUserProvisioningRequest( + input: SalesforceDeleteUserProvisioningRequestInput! + ): SalesforceDeleteUserProvisioningRequestPayload! """ Delete UserPackageLicense by its id. """ @@ -38989,7 +39317,9 @@ type SalesforceMutation { """ Delete ContentWorkspaceSubscription by its id. """ - deleteContentWorkspaceSubscription(input: SalesforceDeleteContentWorkspaceSubscriptionInput!): SalesforceDeleteContentWorkspaceSubscriptionPayload! + deleteContentWorkspaceSubscription( + input: SalesforceDeleteContentWorkspaceSubscriptionInput! + ): SalesforceDeleteContentWorkspaceSubscriptionPayload! """ Delete FeedAttachment by its id. """ @@ -39001,7 +39331,9 @@ type SalesforceMutation { """ Delete ChatterExtensionConfig by its id. """ - deleteChatterExtensionConfig(input: SalesforceDeleteChatterExtensionConfigInput!): SalesforceDeleteChatterExtensionConfigPayload! + deleteChatterExtensionConfig( + input: SalesforceDeleteChatterExtensionConfigInput! + ): SalesforceDeleteChatterExtensionConfigPayload! """ Delete CampaignFeed by its id. """ @@ -39093,7 +39425,9 @@ type SalesforceMutation { """ Delete CaseTeamTemplateMember by its id. """ - deleteCaseTeamTemplateMember(input: SalesforceDeleteCaseTeamTemplateMemberInput!): SalesforceDeleteCaseTeamTemplateMemberPayload! + deleteCaseTeamTemplateMember( + input: SalesforceDeleteCaseTeamTemplateMemberInput! + ): SalesforceDeleteCaseTeamTemplateMemberPayload! """ Delete GroupMember by its id. """ @@ -39101,7 +39435,9 @@ type SalesforceMutation { """ Delete CaseTeamTemplateRecord by its id. """ - deleteCaseTeamTemplateRecord(input: SalesforceDeleteCaseTeamTemplateRecordInput!): SalesforceDeleteCaseTeamTemplateRecordPayload! + deleteCaseTeamTemplateRecord( + input: SalesforceDeleteCaseTeamTemplateRecordInput! + ): SalesforceDeleteCaseTeamTemplateRecordPayload! """ Delete IdeaComment by its id. """ @@ -39109,7 +39445,9 @@ type SalesforceMutation { """ Delete OpportunityCompetitor by its id. """ - deleteOpportunityCompetitor(input: SalesforceDeleteOpportunityCompetitorInput!): SalesforceDeleteOpportunityCompetitorPayload! + deleteOpportunityCompetitor( + input: SalesforceDeleteOpportunityCompetitorInput! + ): SalesforceDeleteOpportunityCompetitorPayload! """ Delete ContentDocumentLink by its id. """ @@ -39161,7 +39499,9 @@ type SalesforceMutation { """ Delete PlatformCachePartitionType by its id. """ - deletePlatformCachePartitionType(input: SalesforceDeletePlatformCachePartitionTypeInput!): SalesforceDeletePlatformCachePartitionTypePayload! + deletePlatformCachePartitionType( + input: SalesforceDeletePlatformCachePartitionTypeInput! + ): SalesforceDeletePlatformCachePartitionTypePayload! """ Delete DandBCompany by its id. """ @@ -39173,7 +39513,9 @@ type SalesforceMutation { """ Delete TransactionSecurityPolicy by its id. """ - deleteTransactionSecurityPolicy(input: SalesforceDeleteTransactionSecurityPolicyInput!): SalesforceDeleteTransactionSecurityPolicyPayload! + deleteTransactionSecurityPolicy( + input: SalesforceDeleteTransactionSecurityPolicyInput! + ): SalesforceDeleteTransactionSecurityPolicyPayload! """ Delete PushTopic by its id. """ @@ -39205,7 +39547,9 @@ type SalesforceMutation { """ Delete ContentVersionComment by its id. """ - deleteContentVersionComment(input: SalesforceDeleteContentVersionCommentInput!): SalesforceDeleteContentVersionCommentPayload! + deleteContentVersionComment( + input: SalesforceDeleteContentVersionCommentInput! + ): SalesforceDeleteContentVersionCommentPayload! """ Delete UserFeed by its id. """ @@ -39217,7 +39561,9 @@ type SalesforceMutation { """ Delete UserProvisioningConfig by its id. """ - deleteUserProvisioningConfig(input: SalesforceDeleteUserProvisioningConfigInput!): SalesforceDeleteUserProvisioningConfigPayload! + deleteUserProvisioningConfig( + input: SalesforceDeleteUserProvisioningConfigInput! + ): SalesforceDeleteUserProvisioningConfigPayload! """ Delete DuplicateRecordItem by its id. """ @@ -39225,11 +39571,15 @@ type SalesforceMutation { """ Delete PermissionSetAssignment by its id. """ - deletePermissionSetAssignment(input: SalesforceDeletePermissionSetAssignmentInput!): SalesforceDeletePermissionSetAssignmentPayload! + deletePermissionSetAssignment( + input: SalesforceDeletePermissionSetAssignmentInput! + ): SalesforceDeletePermissionSetAssignmentPayload! """ Delete UserListViewCriterion by its id. """ - deleteUserListViewCriterion(input: SalesforceDeleteUserListViewCriterionInput!): SalesforceDeleteUserListViewCriterionPayload! + deleteUserListViewCriterion( + input: SalesforceDeleteUserListViewCriterionInput! + ): SalesforceDeleteUserListViewCriterionPayload! """ Delete OrderItem by its id. """ @@ -39241,7 +39591,9 @@ type SalesforceMutation { """ Delete CollaborationGroupRecord by its id. """ - deleteCollaborationGroupRecord(input: SalesforceDeleteCollaborationGroupRecordInput!): SalesforceDeleteCollaborationGroupRecordPayload! + deleteCollaborationGroupRecord( + input: SalesforceDeleteCollaborationGroupRecordInput! + ): SalesforceDeleteCollaborationGroupRecordPayload! """ Delete ApexLog by its id. """ @@ -39257,7 +39609,9 @@ type SalesforceMutation { """ Delete LightningComponentBundle by its id. """ - deleteLightningComponentBundle(input: SalesforceDeleteLightningComponentBundleInput!): SalesforceDeleteLightningComponentBundlePayload! + deleteLightningComponentBundle( + input: SalesforceDeleteLightningComponentBundleInput! + ): SalesforceDeleteLightningComponentBundlePayload! """ Delete TopicAssignment by its id. """ @@ -39293,19 +39647,19 @@ type NetlifyPassthroughMutation { """ post(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -39313,19 +39667,19 @@ type NetlifyPassthroughMutation { """ put(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -39333,19 +39687,19 @@ type NetlifyPassthroughMutation { """ patch(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -39353,19 +39707,19 @@ type NetlifyPassthroughMutation { """ delete(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -39806,19 +40160,19 @@ type MixpanelPassthroughMutation { """ post(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -39826,19 +40180,19 @@ type MixpanelPassthroughMutation { """ put(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -39846,19 +40200,19 @@ type MixpanelPassthroughMutation { """ patch(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -39866,19 +40220,19 @@ type MixpanelPassthroughMutation { """ delete(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -39910,19 +40264,19 @@ type MeetupPassthroughMutation { """ post(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -39930,19 +40284,19 @@ type MeetupPassthroughMutation { """ put(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -39950,19 +40304,19 @@ type MeetupPassthroughMutation { """ patch(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -39970,19 +40324,19 @@ type MeetupPassthroughMutation { """ delete(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -40014,19 +40368,19 @@ type MailchimpPassthroughMutation { """ post(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -40034,19 +40388,19 @@ type MailchimpPassthroughMutation { """ put(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -40054,19 +40408,19 @@ type MailchimpPassthroughMutation { """ patch(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -40074,19 +40428,19 @@ type MailchimpPassthroughMutation { """ delete(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -40238,19 +40592,19 @@ type HubspotPassthroughMutation { """ post(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -40258,19 +40612,19 @@ type HubspotPassthroughMutation { """ put(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -40278,19 +40632,19 @@ type HubspotPassthroughMutation { """ patch(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -40298,19 +40652,19 @@ type HubspotPassthroughMutation { """ delete(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -41374,7 +41728,15 @@ type GoogleSheetsAppendValuesResponse { Google Sheets mutations """ type GoogleSheetsMutation { - appendValues(insertDataOption: String DateTimeRenderOption: String valueInputOption: String! values: [[String!]!]! majorDimenson: String! range: String! id: String!): GoogleSheetsAppendValuesResponse! + appendValues( + insertDataOption: String + DateTimeRenderOption: String + valueInputOption: String! + values: [[String!]!]! + majorDimenson: String! + range: String! + id: String! + ): GoogleSheetsAppendValuesResponse! } input GoogleComputeMetadataItemsArg { @@ -41582,11 +41944,19 @@ type GoogleComputeMutation { """ Creates a new instance """ - insertInstance(metadata: GoogleComputeMetadataArg disks: [GoogleComputeDiskArg!]! networkInterface: [GoogleComputeNetworkInterfaceArg!]! instanceName: String! machineType: String! zone: String! projectId: String!): GoogleComputeOperation! + insertInstance( + metadata: GoogleComputeMetadataArg + disks: [GoogleComputeDiskArg!]! + networkInterface: [GoogleComputeNetworkInterfaceArg!]! + instanceName: String! + machineType: String! + zone: String! + projectId: String! + ): GoogleComputeOperation! """ Deletes an existing instance """ - deleteInstance(name: String! zone: String! projectId: String!): GoogleComputeOperation! + deleteInstance(name: String!, zone: String!, projectId: String!): GoogleComputeOperation! } """ @@ -41596,7 +41966,7 @@ type GoogleCloudStorageMutation { """ Uploads files, over-writing existing files in a given bucket. NB: This is not atomic, it's possible for some files to upload successfully and others not to in the same mutation """ - upsertFiles(filename: String! bucket: String!): Boolean! + upsertFiles(filename: String!, bucket: String!): Boolean! } """ @@ -41622,19 +41992,19 @@ type DevToPassthroughMutation { """ post(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -41642,19 +42012,19 @@ type DevToPassthroughMutation { """ put(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -41662,19 +42032,19 @@ type DevToPassthroughMutation { """ patch(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! """ @@ -41682,19 +42052,19 @@ type DevToPassthroughMutation { """ delete(""" The body to send. Only provide one of body or jsonBody. - """ body: String """ + """ body: String, """ The JSON-encoded body to send. This will automatically set the Content-Type header to `application/json`. Only provide one of body or jsonBody. - """ jsonBody: JSON """ + """ jsonBody: JSON, """ The Accept header to set in the API. - """ accept: String """ + """ accept: String, """ The Content-Type header to set in the API. - """ contentType: String """ + """ contentType: String, """ Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -42029,29 +42399,29 @@ type AirtableMutation { """ Creates a new record on the given table in the given base. """ - createRecord(fields: [AirtableRecordFieldArg!]! """ + createRecord(fields: [AirtableRecordFieldArg!]!, """ Table to create the record in - """ tableName: String! """ + """ tableName: String!, """ Base to create the record in. You can find the baseId from by selecting one of your bases at https://airtable.com/api. The baseId is the part of the path in the URL that starts with `app`. """ baseId: String!): AirtableRecordModificationPayload! """ Updates a record on the given table in the given base. Any fields that are not included will not be updated. """ - updateRecord(fields: [AirtableRecordFieldArg!]! """ + updateRecord(fields: [AirtableRecordFieldArg!]!, """ Id of the record to update. - """ recordId: String! """ + """ recordId: String!, """ Table that the record lives in. - """ tableName: String! """ + """ tableName: String!, """ Base to update record in. You can find the baseId from by selecting one of your bases at https://airtable.com/api. The baseId is the part of the path in the URL that starts with `app`. """ baseId: String!): AirtableRecordModificationPayload! """ Replaces a record on the given table in the given base. Any fields that are not included will be removed. """ - replaceRecord(fields: [AirtableRecordFieldArg!]! """ + replaceRecord(fields: [AirtableRecordFieldArg!]!, """ Id of the record to replace. - """ recordId: String! """ + """ recordId: String!, """ Table that the record lives in. - """ tableName: String! """ + """ tableName: String!, """ Base to replace record in. You can find the baseId from by selecting one of your bases at https://airtable.com/api. The baseId is the part of the path in the URL that starts with `app`. """ baseId: String!): AirtableRecordModificationPayload! """ @@ -42059,9 +42429,9 @@ type AirtableMutation { """ deleteRecord(""" Id of the record to delete. - """ recordId: String! """ + """ recordId: String!, """ Table that the record lives in. - """ tableName: String! """ + """ tableName: String!, """ Base to delete the record in. You can find the baseId from by selecting one of your bases at https://airtable.com/api. The baseId is the part of the path in the URL that starts with `app`. """ baseId: String!): AirtableDeleteRecordPayload! } @@ -42076,9 +42446,10 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): AirtableMutation! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): AirtableMutation! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Cloudflare mutations """ @@ -42088,9 +42459,10 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): CloudflareMutationNamespace! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): CloudflareMutationNamespace! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Dev.to mutations """ @@ -42100,9 +42472,10 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): DevToMutation! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): DevToMutation! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Google mutations """ @@ -42112,9 +42485,10 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): GoogleMutations! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): GoogleMutations! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Hubspot mutations """ @@ -42124,9 +42498,10 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): HubspotMutation! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): HubspotMutation! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Intercom mutations """ @@ -42136,7 +42511,7 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): IntercomMutation! """ @@ -42148,9 +42523,10 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): MailchimpMutation! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): MailchimpMutation! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Meetup mutations """ @@ -42160,9 +42536,10 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): MeetupMutation! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): MeetupMutation! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Mixpanel mutations """ @@ -42172,9 +42549,10 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): MixpanelMutation! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): MixpanelMutation! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Netlify mutations """ @@ -42184,9 +42562,10 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): NetlifyMutation! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): NetlifyMutation! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Salesforce mutations """ @@ -42196,7 +42575,7 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): SalesforceMutation! """ @@ -42208,9 +42587,10 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): SlackMutationNamespace! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): SlackMutationNamespace! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Spotify mutations """ @@ -42220,9 +42600,10 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): SpotifyMutationNamespace! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): SpotifyMutationNamespace! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Stripe mutations """ @@ -42232,7 +42613,7 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): StripeMutationNamespace! """ @@ -42244,7 +42625,7 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): TrelloMutation! """ @@ -42256,9 +42637,10 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): TwilioMutationNamespace! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): TwilioMutationNamespace! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Twitch mutations """ @@ -42268,9 +42650,10 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): TwitchTvMutation! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): TwitchTvMutation! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Twitter mutations """ @@ -42280,9 +42663,10 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): TwitterMutationNamespace! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): TwitterMutationNamespace! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for YouTube mutations """ @@ -42292,9 +42676,10 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): YouTubeMutationNamespace! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): YouTubeMutationNamespace! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Zeit mutations """ @@ -42304,9 +42689,10 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): ZeitMutationNamespace! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): ZeitMutationNamespace! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") oneGraph: OneGraphMutation! brex(""" Instruct OneGraph to use the auth associated with a particular user. @@ -42314,7 +42700,7 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): BrexRootMutationType eventil(""" @@ -42323,7 +42709,7 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): EventilMutation gitHub(""" @@ -42332,7 +42718,7 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): GitHubMutation productHunt(""" @@ -42341,10 +42727,11 @@ type Mutation { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): ProductHuntMutation - testMutate(query: String!): Boolean! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + testMutate(query: String!): Boolean! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") signoutServiceUser(input: OneGraphSignoutServiceUserInput!): SignoutServicesResponsePayload! signoutServices(data: SignoutServicesData!): SignoutServicesResponsePayload! } @@ -43329,7 +43716,7 @@ type OneGraphApp { """ subscriptions(""" Fiter by status of the subscription - """ status: OneGraphAppSubscriptionsStatusEnumArg """ + """ status: OneGraphAppSubscriptionsStatusEnumArg, """ How many subsriptions to fetch """ first: Int): OneGraphAppSubscriptionsConnection! """ @@ -43351,7 +43738,7 @@ type OneGraphApp { """ persistedQueries(""" Returns results after the provided cursor. - """ after: String """ + """ after: String, """ How many persisted queries to return. Defaults to 10, max 100. """ first: Int): OneGraphPersistedQueryConnection! """ @@ -43568,13 +43955,13 @@ type EventilQuery { """ Events list """ - events(limit: Int where: String name: String topics: [String] topic: String featured: Boolean """ + events(limit: Int, where: String, name: String, topics: [String], topic: String, featured: Boolean, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): EventilEventConnection """ @@ -43584,15 +43971,15 @@ type EventilQuery { """ Find Presentation by ID / Hash ID / YouTube ID / Vimeo ID """ - presentation(vimeo_id: String youtube_id: String id: ID): EventilPresentation + presentation(vimeo_id: String, youtube_id: String, id: ID): EventilPresentation """ Event topics """ - topics(top: Boolean limit: Int): [EventilTopic] + topics(top: Boolean, limit: Int): [EventilTopic] """ Find User by GitHub/Twitter/HackerNews/Reddit handle """ - user(reddit: String hackernews: String twitter: String github: String): EventilUser + user(reddit: String, hackernews: String, twitter: String, github: String): EventilUser } """ @@ -43636,15 +44023,15 @@ type ProductHuntViewer { """ goals(""" Define order for the Goals. - """ order: ProductHuntGoalsOrder """ + """ order: ProductHuntGoalsOrder, """ Select Goals which are set as current or not current depending on given value. - """ current: Boolean """ + """ current: Boolean, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntGoalConnection! """ @@ -43652,13 +44039,13 @@ type ProductHuntViewer { """ makerGroups(""" Define order for the MakerGroups. - """ order: ProductHuntMakerGroupsOrder """ + """ order: ProductHuntMakerGroupsOrder, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntMakerGroupConnection! """ @@ -43666,11 +44053,11 @@ type ProductHuntViewer { """ makerProjects(""" Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntMakerProjectConnection! """ @@ -43818,7 +44205,7 @@ type ProductHuntMakerProject { """ Image of the MakerProject. """ - image(height: Int width: Int): String + image(height: Int, width: Int): String """ Whether the MakerProject owner is looking for other makers or not. """ @@ -43977,11 +44364,11 @@ interface ProductHuntTopicableInterface { """ topics(""" Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntTopicConnection! } @@ -44009,7 +44396,7 @@ type ProductHuntTopic { """ Image of the topic. """ - image(height: Int width: Int): String + image(height: Int, width: Int): String """ Whether the viewer is following the topic or not. """ @@ -44091,7 +44478,7 @@ type ProductHuntMedia { """ url(""" Set height of the image to given value. - """ height: Int """ + """ height: Int, """ Set width of the image to given value. """ width: Int): String! """ @@ -44117,15 +44504,15 @@ interface ProductHuntVotableInterface { """ votes(""" Select Votes which were created before the given date and time. - """ createdBefore: String """ + """ createdBefore: String, """ Select Votes which were created after the given date and time. - """ createdAfter: String """ + """ createdAfter: String, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntVoteConnection! """ @@ -44227,7 +44614,7 @@ type ProductHuntUser { """ Cover image of the user. """ - coverImage(height: Int width: Int): String + coverImage(height: Int, width: Int): String """ Identifies the date and time when user was created. """ @@ -44237,11 +44624,11 @@ type ProductHuntUser { """ followedCollections(""" Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntCollectionConnection! """ @@ -44249,11 +44636,11 @@ type ProductHuntUser { """ followers(""" Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntUserConnection! """ @@ -44261,11 +44648,11 @@ type ProductHuntUser { """ following(""" Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntUserConnection! """ @@ -44293,11 +44680,11 @@ type ProductHuntUser { """ madePosts(""" Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntPostConnection! """ @@ -44313,11 +44700,11 @@ type ProductHuntUser { """ submittedPosts(""" Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntPostConnection! """ @@ -44337,11 +44724,11 @@ type ProductHuntUser { """ votedPosts(""" Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntPostConnection! """ @@ -44397,13 +44784,13 @@ type ProductHuntComment implements ProductHuntVotableInterface { """ replies(""" Define order for the Comments. - """ order: ProductHuntCommentsOrder """ + """ order: ProductHuntCommentsOrder, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntCommentConnection! """ @@ -44423,15 +44810,15 @@ type ProductHuntComment implements ProductHuntVotableInterface { """ votes(""" Select Votes which were created before the given date and time. - """ createdBefore: String """ + """ createdBefore: String, """ Select Votes which were created after the given date and time. - """ createdAfter: String """ + """ createdAfter: String, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntVoteConnection! """ @@ -44535,11 +44922,11 @@ type ProductHuntPost implements ProductHuntVotableInterface & ProductHuntTopicab """ collections(""" Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntCollectionConnection! """ @@ -44547,13 +44934,13 @@ type ProductHuntPost implements ProductHuntVotableInterface & ProductHuntTopicab """ comments(""" Define order for the Comments. - """ order: ProductHuntCommentsOrder """ + """ order: ProductHuntCommentsOrder, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntCommentConnection! """ @@ -44625,11 +45012,11 @@ type ProductHuntPost implements ProductHuntVotableInterface & ProductHuntTopicab """ topics(""" Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntTopicConnection! """ @@ -44649,15 +45036,15 @@ type ProductHuntPost implements ProductHuntVotableInterface & ProductHuntTopicab """ votes(""" Select Votes which were created before the given date and time. - """ createdBefore: String """ + """ createdBefore: String, """ Select Votes which were created after the given date and time. - """ createdAfter: String """ + """ createdAfter: String, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntVoteConnection! """ @@ -44709,7 +45096,7 @@ type ProductHuntCollection implements ProductHuntTopicableInterface { """ Cover image for the collection. """ - coverImage(height: Int width: Int): String + coverImage(height: Int, width: Int): String """ Identifies the date and time when collection was created. """ @@ -44743,11 +45130,11 @@ type ProductHuntCollection implements ProductHuntTopicableInterface { """ posts(""" Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntPostConnection! """ @@ -44759,11 +45146,11 @@ type ProductHuntCollection implements ProductHuntTopicableInterface { """ topics(""" Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntTopicConnection! """ @@ -44789,7 +45176,7 @@ type ProductHuntQuery { """ collection(""" URL friendly slug for the object. - """ slug: String """ + """ slug: String, """ ID for the object. """ id: ID): ProductHuntCollection """ @@ -44797,19 +45184,19 @@ type ProductHuntQuery { """ collections(""" Define order for the Collections. - """ order: ProductHuntCollectionsOrder """ + """ order: ProductHuntCollectionsOrder, """ Select Collections that have been featured or not featured depending on given value. - """ featured: Boolean """ + """ featured: Boolean, """ Select Collections that are created by User with the given ID. - """ userId: ID """ + """ userId: ID, """ Select Collections that have the Post with the given ID. - """ postId: ID """ + """ postId: ID, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntCollectionConnection! """ @@ -44829,21 +45216,21 @@ type ProductHuntQuery { """ goals(""" Define order for the Goals. - """ order: ProductHuntGoalsOrder """ + """ order: ProductHuntGoalsOrder, """ Select Goals that have been completed or not completed depending on given value. - """ completed: Boolean """ + """ completed: Boolean, """ Select Goals that are created in the MakerProject with given ID. - """ makerProjectId: ID """ + """ makerProjectId: ID, """ Select Goals that are created in the MakerGroup(Space) with given ID. - """ makerGroupId: ID """ + """ makerGroupId: ID, """ Select Goals that are created by User with the given ID. - """ userId: ID """ + """ userId: ID, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntGoalConnection! """ @@ -44857,15 +45244,15 @@ type ProductHuntQuery { """ makerGroups(""" Define order for the MakerGroups. - """ order: ProductHuntMakerGroupsOrder """ + """ order: ProductHuntMakerGroupsOrder, """ Select MakerGroups that the User with the given ID is accepted member of. - """ userId: ID """ + """ userId: ID, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntMakerGroupConnection! """ @@ -44873,7 +45260,7 @@ type ProductHuntQuery { """ post(""" URL friendly slug for the object. - """ slug: String """ + """ slug: String, """ ID for the object. """ id: ID): ProductHuntPost """ @@ -44881,23 +45268,23 @@ type ProductHuntQuery { """ posts(""" Select Posts that have the given twitter url. - """ twitterUrl: String """ + """ twitterUrl: String, """ Define order for the Posts. - """ order: ProductHuntPostsOrder """ + """ order: ProductHuntPostsOrder, """ Select Posts that have the given slug as one of their topics. - """ topic: String """ + """ topic: String, """ Select Posts which were posted after the given date and time. - """ postedAfter: String """ + """ postedAfter: String, """ Select Posts which were posted before the given date and time. - """ postedBefore: String """ + """ postedBefore: String, """ Select Posts that have been featured or not featured depending on given value. - """ featured: Boolean """ + """ featured: Boolean, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntPostConnection! """ @@ -44905,7 +45292,7 @@ type ProductHuntQuery { """ topic(""" URL friendly slug for the object. - """ slug: String """ + """ slug: String, """ ID for the object. """ id: ID): ProductHuntTopic """ @@ -44913,17 +45300,17 @@ type ProductHuntQuery { """ topics(""" Define order for the Topics. - """ order: ProductHuntTopicsOrder """ + """ order: ProductHuntTopicsOrder, """ Select Topics whose name or aliases match the given string - """ query: String """ + """ query: String, """ Select Topics that are followed by User with the given ID. - """ followedByUserId: ID """ + """ followedByUserId: ID, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Returns the first _n_ elements from the list. """ first: Int): ProductHuntTopicConnection! """ @@ -44931,7 +45318,7 @@ type ProductHuntQuery { """ user(""" Username for the user. - """ username: String """ + """ username: String, """ ID for the user. """ id: ID): ProductHuntUser """ @@ -44953,11 +45340,11 @@ type GithubPassthroughQuery { """ get(""" Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -45266,7 +45653,7 @@ type GitHubQuery { """ enterprise(""" The enterprise invitation token. - """ invitationToken: String """ + """ invitationToken: String, """ The enterprise URL slug. """ slug: String!): GitHubEnterprise """ @@ -45274,9 +45661,9 @@ type GitHubQuery { """ enterpriseAdministratorInvitation(""" The role for the business member invitation. - """ role: GitHubEnterpriseAdministratorRole! """ + """ role: GitHubEnterpriseAdministratorRole!, """ The slug of the enterprise the user was invited to join. - """ enterpriseSlug: String! """ + """ enterpriseSlug: String!, """ The login of the user invited to join the business. """ userLogin: String!): GitHubEnterpriseAdministratorInvitation """ @@ -45300,9 +45687,9 @@ type GitHubQuery { """ marketplaceCategories(""" Returns top level categories only, excluding any subcategories. - """ excludeSubcategories: Boolean """ + """ excludeSubcategories: Boolean, """ Exclude categories with no listings. - """ excludeEmpty: Boolean """ + """ excludeEmpty: Boolean, """ Return only the specified categories. """ includeCategories: [String!]): [GitHubMarketplaceCategory!]! """ @@ -45310,7 +45697,7 @@ type GitHubQuery { """ marketplaceCategory(""" Also check topic aliases for the category slug - """ useTopicAliases: Boolean """ + """ useTopicAliases: Boolean, """ The URL slug of the category. """ slug: String!): GitHubMarketplaceCategory """ @@ -45324,31 +45711,31 @@ type GitHubQuery { """ marketplaceListings(""" Select only listings that offer a free trial. - """ withFreeTrialsOnly: Boolean """ + """ withFreeTrialsOnly: Boolean, """ Select only listings where the primary category matches the given category slug. - """ primaryCategoryOnly: Boolean """ + """ primaryCategoryOnly: Boolean, """ Select the listings with these slugs, if they are visible to the viewer. - """ slugs: [String] """ + """ slugs: [String], """ Select listings visible to the viewer even if they are not approved. If omitted or false, only approved listings will be returned. - """ allStates: Boolean """ + """ allStates: Boolean, """ Select listings for products owned by the specified organization. - """ organizationId: ID """ + """ organizationId: ID, """ Select listings that can be administered by the specified user. - """ adminId: ID """ + """ adminId: ID, """ Select listings to which user has admin access. If omitted, listings visible to the viewer are returned. - """ viewerCanAdmin: Boolean """ + """ viewerCanAdmin: Boolean, """ Also check topic aliases for the category slug - """ useTopicAliases: Boolean """ + """ useTopicAliases: Boolean, """ Select only listings with the given category. - """ categorySlug: String """ + """ categorySlug: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubMarketplaceListingConnection! """ @@ -45388,7 +45775,7 @@ type GitHubQuery { """ repository(""" The name of the repository - """ name: String! """ + """ name: String!, """ The login field of a user or organization """ owner: String!): GitHubRepository """ @@ -45408,15 +45795,15 @@ type GitHubQuery { """ search(""" The types of search items to search within. - """ type: GitHubSearchType! """ + """ type: GitHubSearchType!, """ The search string to look for. - """ query: String! """ + """ query: String!, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubSearchResultItemConnection! """ @@ -45424,19 +45811,19 @@ type GitHubQuery { """ securityAdvisories(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Filter advisories to those updated since a time in the past. - """ updatedSince: String """ + """ updatedSince: String, """ Filter advisories to those published since a time in the past. - """ publishedSince: String """ + """ publishedSince: String, """ Filter advisories by identifier, e.g. GHSA or CVE. - """ identifier: GitHubSecurityAdvisoryIdentifierFilter """ + """ identifier: GitHubSecurityAdvisoryIdentifierFilter, """ Ordering options for the returned topics. """ orderBy: GitHubSecurityAdvisoryOrder): GitHubSecurityAdvisoryConnection! """ @@ -45450,19 +45837,19 @@ type GitHubQuery { """ securityVulnerabilities(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ A list of severities to filter vulnerabilities by. - """ severities: [GitHubSecurityAdvisorySeverity!] """ + """ severities: [GitHubSecurityAdvisorySeverity!], """ A package name to filter vulnerabilities by. - """ package: String """ + """ package: String, """ An ecosystem to filter vulnerabilities by. - """ ecosystem: GitHubSecurityAdvisoryEcosystem """ + """ ecosystem: GitHubSecurityAdvisoryEcosystem, """ Ordering options for the returned topics. """ orderBy: GitHubSecurityVulnerabilityOrder): GitHubSecurityVulnerabilityConnection! """ @@ -45470,7 +45857,8 @@ type GitHubQuery { """ sponsorsListing(""" Select the Sponsors listing which matches this slug - """ slug: String!): GitHubSponsorsListing @deprecated(reason: "`Query.sponsorsListing` will be removed. Use `Sponsorable.sponsorsListing` instead. Removal on 2020-04-01 UTC.") + """ slug: String!): GitHubSponsorsListing + @deprecated(reason: "`Query.sponsorsListing` will be removed. Use `Sponsorable.sponsorsListing` instead. Removal on 2020-04-01 UTC.") """ Look up a topic by name. """ @@ -46138,11 +46526,17 @@ type BrexRootQueryType { """ """ - integrationEntities(last: Int first: Int before: String after: String): BrexExternalIntegrationEntityConnection + integrationEntities(last: Int, first: Int, before: String, after: String): BrexExternalIntegrationEntityConnection """ """ - credentials(vendor: String last: Int first: Int before: String after: String): BrexCredentialConnection + credentials( + vendor: String + last: Int + first: Int + before: String + after: String + ): BrexCredentialConnection """ """ @@ -46150,7 +46544,15 @@ type BrexRootQueryType { """ """ - previewIntegrationRule(ruleId: ID ruleBody: String! last: Int integrationId: ID! first: Int before: String after: String): BrexStatementEntryLensConnection + previewIntegrationRule( + ruleId: ID + ruleBody: String! + last: Int + integrationId: ID! + first: Int + before: String + after: String + ): BrexStatementEntryLensConnection """ """ @@ -46158,11 +46560,21 @@ type BrexRootQueryType { """ """ - unexportedStatementEntries(startDate: String ruleIds: [ID] last: Int integrationId: ID first: Int endDate: String before: String after: String activeFacetType: BrexIntegrationRulesFilterFacetType): BrexStatementEntryConnection + unexportedStatementEntries( + startDate: String + ruleIds: [ID] + last: Int + integrationId: ID + first: Int + endDate: String + before: String + after: String + activeFacetType: BrexIntegrationRulesFilterFacetType + ): BrexStatementEntryConnection """ """ - referrals(last: Int first: Int before: String after: String): BrexReferralConnection + referrals(last: Int, first: Int, before: String, after: String): BrexReferralConnection """ """ @@ -46170,11 +46582,18 @@ type BrexRootQueryType { """ """ - statements(last: Int first: Int before: String after: String): BrexStatementConnection + statements(last: Int, first: Int, before: String, after: String): BrexStatementConnection """ """ - onboardingApplications(type: BrexOnboardingBlueprintType last: Int first: Int before: String applicantCustomerUserId: ID after: String): BrexOnboardingApplicationConnection + onboardingApplications( + type: BrexOnboardingBlueprintType + last: Int + first: Int + before: String + applicantCustomerUserId: ID + after: String + ): BrexOnboardingApplicationConnection """ """ @@ -46182,7 +46601,7 @@ type BrexRootQueryType { """ """ - departments(last: Int first: Int before: String after: String): BrexDepartmentConnection + departments(last: Int, first: Int, before: String, after: String): BrexDepartmentConnection """ """ @@ -46198,7 +46617,7 @@ type BrexRootQueryType { """ """ - cards(last: Int first: Int before: String after: String): BrexCardConnection + cards(last: Int, first: Int, before: String, after: String): BrexCardConnection """ """ @@ -46206,15 +46625,15 @@ type BrexRootQueryType { """ """ - merchantCategories(last: Int first: Int before: String after: String): BrexMerchantCategoryConnection + merchantCategories(last: Int, first: Int, before: String, after: String): BrexMerchantCategoryConnection """ Miles transfers """ - milesTransfers(last: Int first: Int before: String after: String): BrexMilesTransferConnection + milesTransfers(last: Int, first: Int, before: String, after: String): BrexMilesTransferConnection """ """ - rules(last: Int first: Int before: String after: String): BrexRuleConnection + rules(last: Int, first: Int, before: String, after: String): BrexRuleConnection """ """ @@ -46222,7 +46641,7 @@ type BrexRootQueryType { """ """ - collectionIntentions(last: Int first: Int before: String after: String): BrexCollectionIntentionConnection + collectionIntentions(last: Int, first: Int, before: String, after: String): BrexCollectionIntentionConnection """ """ @@ -46230,7 +46649,7 @@ type BrexRootQueryType { """ """ - collectionAttempts(last: Int first: Int before: String after: String): BrexCollectionAttemptConnection + collectionAttempts(last: Int, first: Int, before: String, after: String): BrexCollectionAttemptConnection """ """ @@ -46242,7 +46661,10 @@ type BrexRootQueryType { """ """ - validateLoyaltyProgramMembershipId(membershipId: String! loyaltyProgramId: ID!): Boolean + validateLoyaltyProgramMembershipId( + membershipId: String! + loyaltyProgramId: ID! + ): Boolean """ """ @@ -46250,7 +46672,7 @@ type BrexRootQueryType { """ """ - userCategories(last: Int first: Int before: String after: String): BrexUserCategoryConnection + userCategories(last: Int, first: Int, before: String, after: String): BrexUserCategoryConnection """ """ @@ -46258,11 +46680,11 @@ type BrexRootQueryType { """ The id of an object. """ - locations(last: Int first: Int before: String after: String): BrexLocationConnection + locations(last: Int, first: Int, before: String, after: String): BrexLocationConnection """ """ - financialAccounts(last: Int first: Int before: String after: String): BrexFinancialAccountConnection + financialAccounts(last: Int, first: Int, before: String, after: String): BrexFinancialAccountConnection """ """ @@ -46270,7 +46692,7 @@ type BrexRootQueryType { """ """ - users(last: Int first: Int before: String after: String): BrexUserConnection + users(last: Int, first: Int, before: String, after: String): BrexUserConnection """ """ @@ -46278,7 +46700,7 @@ type BrexRootQueryType { """ """ - productApplications(last: Int first: Int before: String after: String): BrexProductApplicationConnection + productApplications(last: Int, first: Int, before: String, after: String): BrexProductApplicationConnection """ """ @@ -46290,7 +46712,7 @@ type BrexRootQueryType { """ """ - financialInstitutions(last: Int first: Int before: String after: String): BrexFinancialInstitutionConnection + financialInstitutions(last: Int, first: Int, before: String, after: String): BrexFinancialInstitutionConnection """ Reward offered to referrer for new referrals by logged-in referrer. """ @@ -46298,7 +46720,14 @@ type BrexRootQueryType { """ """ - transactions(status: String last: Int first: Int customerUserId: ID before: String after: String): BrexTransactionConnection + transactions( + status: String + last: Int + first: Int + customerUserId: ID + before: String + after: String + ): BrexTransactionConnection """ """ @@ -46306,11 +46735,11 @@ type BrexRootQueryType { """ """ - isIntegrationReadyToSync(startDate: String id: ID! endDate: String): BrexSyncReadyStatus + isIntegrationReadyToSync(startDate: String, id: ID!, endDate: String): BrexSyncReadyStatus """ """ - card(showPan: Boolean id: ID!): BrexCard + card(showPan: Boolean, id: ID!): BrexCard """ """ @@ -46322,7 +46751,14 @@ type BrexRootQueryType { """ """ - search(type: String! pageSize: Int orderBy: [BrexOrderByInput] filters: String! cursor: String aggregates: String): BrexSearchResult + search( + type: String! + pageSize: Int + orderBy: [BrexOrderByInput] + filters: String! + cursor: String + aggregates: String + ): BrexSearchResult """ """ @@ -46342,7 +46778,13 @@ type BrexRootQueryType { """ """ - statementEntries(onlyUnexported: Boolean last: Int first: Int before: String after: String): BrexStatementEntryConnection + statementEntries( + onlyUnexported: Boolean + last: Int + first: Int + before: String + after: String + ): BrexStatementEntryConnection """ """ @@ -46350,7 +46792,7 @@ type BrexRootQueryType { """ """ - integrations(last: Int first: Int before: String after: String): BrexIntegrationConnection + integrations(last: Int, first: Int, before: String, after: String): BrexIntegrationConnection """ """ @@ -46358,11 +46800,11 @@ type BrexRootQueryType { """ """ - rewardsCampaigns(last: Int first: Int before: String after: String): BrexRewardsCampaignConnection + rewardsCampaigns(last: Int, first: Int, before: String, after: String): BrexRewardsCampaignConnection """ Loyalty programs for miles transfer """ - loyaltyPrograms(last: Int first: Int before: String after: String): BrexLoyaltyProgramConnection + loyaltyPrograms(last: Int, first: Int, before: String, after: String): BrexLoyaltyProgramConnection """ """ @@ -46378,11 +46820,15 @@ type BrexRootQueryType { """ """ - financialSources(last: Int first: Int before: String after: String): BrexFinancialSourceConnection + financialSources(last: Int, first: Int, before: String, after: String): BrexFinancialSourceConnection """ """ - unexportedStatementEntryFilterFacets(startDate: String integrationId: ID endDate: String): [BrexIntegrationRulesFilterFacet] + unexportedStatementEntryFilterFacets( + startDate: String + integrationId: ID + endDate: String + ): [BrexIntegrationRulesFilterFacet] """ """ @@ -46458,14 +46904,21 @@ type ZendeskSearchResultsConnection { The root for Zendesk """ type ZendeskQuery { - search(sortOrder: ZendeskSearchSortOrder sortBy: ZendeskSearchSortBy status: ZendeskSearchStatus type: ZendeskSearchType """ + search(sortOrder: ZendeskSearchSortOrder, sortBy: ZendeskSearchSortBy, status: ZendeskSearchStatus, type: ZendeskSearchType, """ The `:` character is the equality operator. Other operators include `<` and `>` , the minus sign `-` , and the wildcard character `*`. [Learn more about the operators](https://support.zendesk.com/hc/en-us/articles/203663226#topic_ngr_frb_vc) Double quotes, `""` , are used for search phrases. Only records containing an exact match of the phrase are returned. Note that in GraphiQL you'll need to escape these quotes. Date properties such as `created`, `updated`, and `solved` return records for a specific date, on or before a certain date, and on or after a certain date. The date format is `YYYY-MM-DD`. [Learn more about dates](https://support.zendesk.com/hc/en-us/articles/203663226#topic_gbg_dvw_ld). - """ query: String last: Int first: Int before: String after: String): ZendeskSearchResultsConnection - tickets(sortOrder: ZendeskSearchSortOrder sortBy: ZendeskTicketsSortBy last: Int first: Int before: String after: String): ZendeskTicketsConnection + """ query: String, last: Int, first: Int, before: String, after: String): ZendeskSearchResultsConnection + tickets( + sortOrder: ZendeskSearchSortOrder + sortBy: ZendeskTicketsSortBy + last: Int + first: Int + before: String + after: String + ): ZendeskTicketsConnection user(id: String!): ZendeskUser } @@ -49110,7 +49563,7 @@ type YouTubePlaylist { """ items(""" Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Number of videos to fetch. """ first: Int): YouTubePlaylistItemsConnection! } @@ -49119,25 +49572,40 @@ type YouTubePlaylist { Root fields for YouTube """ type YouTubeQuery { - oldVideo(id: String!): YoutubeVideo @deprecated(reason: "Use `YouTube video` instead") + oldVideo(id: String!): YoutubeVideo + @deprecated(reason: "Use `YouTube video` instead") playlist(""" Playlist id """ id: String!): YouTubePlaylist! playlistItems(""" Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Number of items to fetch. - """ first: Int """ + """ first: Int, """ Playlist id """ playlistId: String!): YouTubePlaylistItemsConnection! - search(cursor: String pageToken: String maxResults: Int! order: String """ + search(cursor: String, pageToken: String, maxResults: Int!, order: String, """ The q parameter specifies the query term to search for. Your request can also use the Boolean NOT (-) and OR (|) operators to exclude videos or to find videos that are associated with one of several search terms. For example, to search for videos matching either "boating" or "sailing", set the q parameter value to boating|sailing. Similarly, to search for videos matching either "boating" or "sailing" but not "fishing", set the q parameter value to boating|sailing -fishing """ q: String!): YoutubeVideoSearchResult video(id: String!): YouTubeVideo liveChat(id: String!): YouTubeLiveChatMessageListResponse - liveBroadcasts(onBehalfOfContentOwnerChannel: String onBehalfOfContentOwner: String mine: Boolean first: Int broadcastType: String broadcastStatus: String id: String): YouTubeLiveBroadcastListResponse - liveStreams(onBehalfOfContentOwnerChannel: String onBehalfOfContentOwner: String mine: Boolean first: Int id: String): YouTubeLiveStreamListResponse + liveBroadcasts( + onBehalfOfContentOwnerChannel: String + onBehalfOfContentOwner: String + mine: Boolean + first: Int + broadcastType: String + broadcastStatus: String + id: String + ): YouTubeLiveBroadcastListResponse + liveStreams( + onBehalfOfContentOwnerChannel: String + onBehalfOfContentOwner: String + mine: Boolean + first: Int + id: String + ): YouTubeLiveStreamListResponse } """ @@ -49477,7 +49945,7 @@ type USPSQuery { """ track(""" Optional SourceId to report your client to USPS - """ sourceId: String """ + """ sourceId: String, """ Tracking number for the package """ trackId: String!): UspsTrackResponse! } @@ -50390,11 +50858,11 @@ type TwitchTvPassthroughQuery { """ get(""" Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -50581,11 +51049,20 @@ type TwilioIncomingPhoneNumber { The URL Twilio will request when this phone number receives a call. The VoiceURL will no longer be used if a VoiceApplicationSid or a TrunkSid is set. """ voiceUrl: String - messages(""" - Only show messages sent on this date (in GMT format), given as `YYYY-MM-DD`. Example: `DateSent: "2009-07-06"`. You can also specify inequality, such as `DateSent: "<=YYYY-MM-DD"` for messages that were sent on or before midnight on a date, and `DateSent: ">=YYYY-MM-DD"` for messages sent on or after midnight on a date. - """ dateSent: String """ - Only show messages from this phone number or alphanumeric sender ID. - """ from: String last: Int first: Int before: String after: String): TwilioMessagesConnection + messages( + """ + Only show messages sent on this date (in GMT format), given as `YYYY-MM-DD`. Example: `DateSent: "2009-07-06"`. You can also specify inequality, such as `DateSent: "<=YYYY-MM-DD"` for messages that were sent on or before midnight on a date, and `DateSent: ">=YYYY-MM-DD"` for messages sent on or after midnight on a date. + """ + dateSent: String + """ + Only show messages from this phone number or alphanumeric sender ID. + """ + from: String + last: Int + first: Int + before: String + after: String + ): TwilioMessagesConnection } type TwilioIncomingPhoneNumberConnectionEdge { @@ -50763,20 +51240,33 @@ The root for Twilio type TwilioQuery { messages(""" Only show messages sent on this date (in GMT format), given as `YYYY-MM-DD`. Example: `DateSent: "2009-07-06"`. You can also specify inequality, such as `DateSent: "<=YYYY-MM-DD"` for messages that were sent on or before midnight on a date, and `DateSent: ">=YYYY-MM-DD"` for messages sent on or after midnight on a date. - """ dateSent: String """ + """ dateSent: String, """ Only show messages from this phone number or alphanumeric sender ID. - """ from: String """ + """ from: String, """ Only show messages to this phone number. - """ to: String last: Int first: Int before: String after: String): TwilioMessagesConnection - incomingPhoneNumbers(""" - Only show the incoming phone number resources that match this pattern. You can specify partial numbers and use `'*'` as a wildcard for any digit. - """ phoneNumber: String """ - Include phone numbers based on the origin, by default, phone numbers of all origin are included. - """ origin: TwilioPhoneNumberOriginEnumArg """ - A human readable descriptive text for this resource, up to 64 characters long. By default, the FriendlyName is a nicely formatted version of the phone number. - """ friendlyName: String """ - Phone numbers new to the Twilio platform are marked as beta. - """ beta: Boolean last: Int first: Int before: String after: String): TwilioIncomingPhoneNumberConnection + """ to: String, last: Int, first: Int, before: String, after: String): TwilioMessagesConnection + incomingPhoneNumbers( + """ + Only show the incoming phone number resources that match this pattern. You can specify partial numbers and use `'*'` as a wildcard for any digit. + """ + phoneNumber: String + """ + Include phone numbers based on the origin, by default, phone numbers of all origin are included. + """ + origin: TwilioPhoneNumberOriginEnumArg + """ + A human readable descriptive text for this resource, up to 64 characters long. By default, the FriendlyName is a nicely formatted version of the phone number. + """ + friendlyName: String + """ + Phone numbers new to the Twilio platform are marked as beta. + """ + beta: Boolean + last: Int + first: Int + before: String + after: String + ): TwilioIncomingPhoneNumberConnection } """ @@ -50842,7 +51332,7 @@ type TrelloQuery { """ member(""" Find the member by username. Must provide one of username or id. - """ username: String """ + """ username: String, """ Find the member by id. Must provide one of id or username. """ id: String): TrelloMember! """ @@ -51188,31 +51678,43 @@ The root for Stripe """ type StripeQuery { customer(id: String!): StripeCustomer - customers(after: String before: String first: Int): StripeCustomersConnection + customers(after: String, before: String, first: Int): StripeCustomersConnection invoice(id: String!): StripeInvoice - invoices(status: StripeInvoiceStatusEnum customer: String after: String before: String first: Int): StripeInvoicesConnection + invoices( + status: StripeInvoiceStatusEnum + customer: String + after: String + before: String + first: Int + ): StripeInvoicesConnection charge(id: String!): StripeCharge - charges(customer: String after: String before: String first: Int): StripeChargesConnection + charges(customer: String, after: String, before: String, first: Int): StripeChargesConnection dispute(id: String!): StripeDispute - disputes(after: String before: String first: Int): StripeDisputesConnection + disputes(after: String, before: String, first: Int): StripeDisputesConnection refund(id: String!): StripeRefund - refunds(chargeId: String after: String before: String first: Int): StripeRefundsConnection + refunds(chargeId: String, after: String, before: String, first: Int): StripeRefundsConnection balanceTransaction(id: String!): StripeBalanceTransaction - balanceTransactions(after: String before: String first: Int): StripeBalanceTransactionsConnection + balanceTransactions(after: String, before: String, first: Int): StripeBalanceTransactionsConnection payout(id: String!): StripePayout - bankAccount(customer: String! id: String!): StripeBankAccount - card(customer: String! id: String!): StripeCard + bankAccount(customer: String!, id: String!): StripeBankAccount + card(customer: String!, id: String!): StripeCard source(id: String!): StripeSource coupon(id: String!): StripeCoupon invoiceItem(id: String!): StripeInvoiceItem paymentIntent(id: String!): StripePaymentIntent - paymentIntents(customer: String after: String before: String first: Int): StripePaymentIntentsConnection + paymentIntents(customer: String, after: String, before: String, first: Int): StripePaymentIntentsConnection plan(id: String!): StripePlan - plans(after: String before: String first: Int): StripePlansConnection + plans(after: String, before: String, first: Int): StripePlansConnection subscription(id: String!): StripeSubscription - subscriptions(status: StripeSubscriptionStatusEnum planId: String after: String before: String first: Int): StripeSubscriptionsConnection + subscriptions( + status: StripeSubscriptionStatusEnum + planId: String + after: String + before: String + first: Int + ): StripeSubscriptionsConnection transfer(id: String!): StripeTransfer - transfers(after: String before: String first: Int): StripeTransfersConnection + transfers(after: String, before: String, first: Int): StripeTransfersConnection subscriptionItem(id: String!): StripeSubscriptionItem sku(id: String!): StripeSku order(id: String!): StripeOrder @@ -51549,10 +52051,10 @@ type SlackMembersConnection { type Slack { members(""" Pagination cursor from which to retrieve additional results - """ after: String """ + """ after: String, """ Limit the result to `first` items. The recommended maximum is 200, though the absolute is 1000. """ first: Int): SlackMembersConnection! - member(includeLocale: Boolean id: String!): SlackMember! + member(includeLocale: Boolean, id: String!): SlackMember! channels: SlackChannelsConnection! channel(id: String!): SlackChannel } @@ -51570,11 +52072,11 @@ type SalesforcePassthroughQuery { """ get(""" Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -52069,15 +52571,15 @@ type SalesforceQuery { """ authProviders(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthProviderConnectionFilter """ + """ filter: SalesforceAuthProviderConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthProviderSortByFieldEnum """ + """ sortByField: SalesforceAuthProviderSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Auth. Providers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAuthProvidersConnection """ @@ -52085,15 +52587,15 @@ type SalesforceQuery { """ platformCachePartitions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePlatformCachePartitionConnectionFilter """ + """ filter: SalesforcePlatformCachePartitionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePlatformCachePartitionSortByFieldEnum """ + """ sortByField: SalesforcePlatformCachePartitionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Platform Cache Partitions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePlatformCachePartitionsConnection """ @@ -52101,15 +52603,15 @@ type SalesforceQuery { """ streamingChannelShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStreamingChannelShareConnectionFilter """ + """ filter: SalesforceStreamingChannelShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStreamingChannelShareSortByFieldEnum """ + """ sortByField: SalesforceStreamingChannelShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Streaming Channel Shares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceStreamingChannelSharesConnection """ @@ -52117,15 +52619,15 @@ type SalesforceQuery { """ caseComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseCommentConnectionFilter """ + """ filter: SalesforceCaseCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseCommentSortByFieldEnum """ + """ sortByField: SalesforceCaseCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Case Comments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseCommentsConnection """ @@ -52133,15 +52635,15 @@ type SalesforceQuery { """ brandTemplates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceBrandTemplateConnectionFilter """ + """ filter: SalesforceBrandTemplateConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceBrandTemplateSortByFieldEnum """ + """ sortByField: SalesforceBrandTemplateSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Letterheads to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceBrandTemplatesConnection """ @@ -52149,15 +52651,15 @@ type SalesforceQuery { """ undecidedEventRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUndecidedEventRelationConnectionFilter """ + """ filter: SalesforceUndecidedEventRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUndecidedEventRelationSortByFieldEnum """ + """ sortByField: SalesforceUndecidedEventRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Undecided Event Relations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUndecidedEventRelationsConnection """ @@ -52165,15 +52667,15 @@ type SalesforceQuery { """ contentDistributionViews(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionViewConnectionFilter """ + """ filter: SalesforceContentDistributionViewConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionViewSortByFieldEnum """ + """ sortByField: SalesforceContentDistributionViewSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Content Delivery Views to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDistributionViewsConnection """ @@ -52181,15 +52683,15 @@ type SalesforceQuery { """ userLicenses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserLicenseConnectionFilter """ + """ filter: SalesforceUserLicenseConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserLicenseSortByFieldEnum """ + """ sortByField: SalesforceUserLicenseSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of User Licenses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserLicensesConnection """ @@ -52197,15 +52699,15 @@ type SalesforceQuery { """ contentUserSubscriptions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentUserSubscriptionConnectionFilter """ + """ filter: SalesforceContentUserSubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentUserSubscriptionSortByFieldEnum """ + """ sortByField: SalesforceContentUserSubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Content User Subscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentUserSubscriptionsConnection """ @@ -52213,15 +52715,15 @@ type SalesforceQuery { """ processInstances(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ + """ filter: SalesforceProcessInstanceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Process Instances to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstancesConnection """ @@ -52229,15 +52731,15 @@ type SalesforceQuery { """ cases(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseConnectionFilter """ + """ filter: SalesforceCaseConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseSortByFieldEnum """ + """ sortByField: SalesforceCaseSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Cases to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCasesConnection """ @@ -52245,15 +52747,15 @@ type SalesforceQuery { """ apexPages(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexPageConnectionFilter """ + """ filter: SalesforceApexPageConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexPageSortByFieldEnum """ + """ sortByField: SalesforceApexPageSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Visualforce Pages to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexPagesConnection """ @@ -52261,15 +52763,15 @@ type SalesforceQuery { """ lightningComponentResources(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLightningComponentResourceConnectionFilter """ + """ filter: SalesforceLightningComponentResourceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLightningComponentResourceSortByFieldEnum """ + """ sortByField: SalesforceLightningComponentResourceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LightningComponentResources to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLightningComponentResourcesConnection """ @@ -52277,15 +52779,15 @@ type SalesforceQuery { """ apexComponents(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexComponentConnectionFilter """ + """ filter: SalesforceApexComponentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexComponentSortByFieldEnum """ + """ sortByField: SalesforceApexComponentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Visualforce Components to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexComponentsConnection """ @@ -52293,15 +52795,15 @@ type SalesforceQuery { """ forecastShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceForecastShareConnectionFilter """ + """ filter: SalesforceForecastShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceForecastShareSortByFieldEnum """ + """ sortByField: SalesforceForecastShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Forecast Shares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceForecastSharesConnection """ @@ -52309,15 +52811,15 @@ type SalesforceQuery { """ attachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ + """ filter: SalesforceAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Attachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAttachmentsConnection """ @@ -52325,15 +52827,15 @@ type SalesforceQuery { """ opportunityPartners(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityPartnerConnectionFilter """ + """ filter: SalesforceOpportunityPartnerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityPartnerSortByFieldEnum """ + """ sortByField: SalesforceOpportunityPartnerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Opportunity Partners to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityPartnersConnection """ @@ -52341,15 +52843,15 @@ type SalesforceQuery { """ orderFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderFeedConnectionFilter """ + """ filter: SalesforceOrderFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderFeedSortByFieldEnum """ + """ sortByField: SalesforceOrderFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Order Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderFeedsConnection """ @@ -52357,15 +52859,15 @@ type SalesforceQuery { """ orders(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderConnectionFilter """ + """ filter: SalesforceOrderConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderSortByFieldEnum """ + """ sortByField: SalesforceOrderSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Orders to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrdersConnection """ @@ -52373,15 +52875,15 @@ type SalesforceQuery { """ campaigns(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignConnectionFilter """ + """ filter: SalesforceCampaignConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignSortByFieldEnum """ + """ sortByField: SalesforceCampaignSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Campaigns to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignsConnection """ @@ -52389,15 +52891,15 @@ type SalesforceQuery { """ collaborationGroupMemberRequests(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupMemberRequestConnectionFilter """ + """ filter: SalesforceCollaborationGroupMemberRequestConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Group Member Requests to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupMemberRequestsConnection """ @@ -52405,15 +52907,15 @@ type SalesforceQuery { """ macroShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroShareConnectionFilter """ + """ filter: SalesforceMacroShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroShareSortByFieldEnum """ + """ sortByField: SalesforceMacroShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Macro Shares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceMacroSharesConnection """ @@ -52421,15 +52923,15 @@ type SalesforceQuery { """ contentAssets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentAssetConnectionFilter """ + """ filter: SalesforceContentAssetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentAssetSortByFieldEnum """ + """ sortByField: SalesforceContentAssetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Asset Files to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentAssetsConnection """ @@ -52437,15 +52939,15 @@ type SalesforceQuery { """ customPermissionDependencies(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomPermissionDependencyConnectionFilter """ + """ filter: SalesforceCustomPermissionDependencyConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomPermissionDependencySortByFieldEnum """ + """ sortByField: SalesforceCustomPermissionDependencySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Custom Permission Dependencies to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCustomPermissionDependencysConnection """ @@ -52453,15 +52955,15 @@ type SalesforceQuery { """ accountFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountFeedConnectionFilter """ + """ filter: SalesforceAccountFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountFeedSortByFieldEnum """ + """ sortByField: SalesforceAccountFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Account Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountFeedsConnection """ @@ -52469,15 +52971,15 @@ type SalesforceQuery { """ customBrandAssets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomBrandAssetConnectionFilter """ + """ filter: SalesforceCustomBrandAssetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomBrandAssetSortByFieldEnum """ + """ sortByField: SalesforceCustomBrandAssetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Custom Brand Assets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCustomBrandAssetsConnection """ @@ -52485,15 +52987,15 @@ type SalesforceQuery { """ userLogins(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserLoginConnectionFilter """ + """ filter: SalesforceUserLoginConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserLoginSortByFieldEnum """ + """ sortByField: SalesforceUserLoginSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of User Logins to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserLoginsConnection """ @@ -52501,15 +53003,15 @@ type SalesforceQuery { """ stampAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStampAssignmentConnectionFilter """ + """ filter: SalesforceStampAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStampAssignmentSortByFieldEnum """ + """ sortByField: SalesforceStampAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Stamp Assignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceStampAssignmentsConnection """ @@ -52517,15 +53019,15 @@ type SalesforceQuery { """ apexTriggers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTriggerConnectionFilter """ + """ filter: SalesforceApexTriggerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTriggerSortByFieldEnum """ + """ sortByField: SalesforceApexTriggerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Apex Triggers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexTriggersConnection """ @@ -52533,15 +53035,15 @@ type SalesforceQuery { """ siteFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSiteFeedConnectionFilter """ + """ filter: SalesforceSiteFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSiteFeedSortByFieldEnum """ + """ sortByField: SalesforceSiteFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Sites to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSiteFeedsConnection """ @@ -52549,15 +53051,15 @@ type SalesforceQuery { """ dashboardFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardFeedConnectionFilter """ + """ filter: SalesforceDashboardFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardFeedSortByFieldEnum """ + """ sortByField: SalesforceDashboardFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Dashboard Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDashboardFeedsConnection """ @@ -52565,15 +53067,15 @@ type SalesforceQuery { """ apexClasses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexClassConnectionFilter """ + """ filter: SalesforceApexClassConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexClassSortByFieldEnum """ + """ sortByField: SalesforceApexClassSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Apex Classes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexClasssConnection """ @@ -52581,15 +53083,15 @@ type SalesforceQuery { """ accountShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountShareConnectionFilter """ + """ filter: SalesforceAccountShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountShareSortByFieldEnum """ + """ sortByField: SalesforceAccountShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Account Shares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountSharesConnection """ @@ -52597,15 +53099,15 @@ type SalesforceQuery { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Feed Items to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -52613,15 +53115,15 @@ type SalesforceQuery { """ contentFolderLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderLinkConnectionFilter """ + """ filter: SalesforceContentFolderLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderLinkSortByFieldEnum """ + """ sortByField: SalesforceContentFolderLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Content Folder Links to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentFolderLinksConnection """ @@ -52629,15 +53131,15 @@ type SalesforceQuery { """ periods(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePeriodConnectionFilter """ + """ filter: SalesforcePeriodConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePeriodSortByFieldEnum """ + """ sortByField: SalesforcePeriodSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Periods to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePeriodsConnection """ @@ -52645,15 +53147,15 @@ type SalesforceQuery { """ dashboardComponentFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardComponentFeedConnectionFilter """ + """ filter: SalesforceDashboardComponentFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardComponentFeedSortByFieldEnum """ + """ sortByField: SalesforceDashboardComponentFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Dashboard Component Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDashboardComponentFeedsConnection """ @@ -52661,15 +53163,15 @@ type SalesforceQuery { """ opportunityHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityHistoryConnectionFilter """ + """ filter: SalesforceOpportunityHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityHistorySortByFieldEnum """ + """ sortByField: SalesforceOpportunityHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Opportunity Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityHistorysConnection """ @@ -52677,15 +53179,15 @@ type SalesforceQuery { """ assetHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetHistoryConnectionFilter """ + """ filter: SalesforceAssetHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetHistorySortByFieldEnum """ + """ sortByField: SalesforceAssetHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Asset Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetHistorysConnection """ @@ -52693,15 +53195,15 @@ type SalesforceQuery { """ userAppMenuCustomizationShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserAppMenuCustomizationShareConnectionFilter """ + """ filter: SalesforceUserAppMenuCustomizationShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum """ + """ sortByField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserAppMenuCustomization Shares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserAppMenuCustomizationSharesConnection """ @@ -52709,15 +53211,15 @@ type SalesforceQuery { """ appMenuItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAppMenuItemConnectionFilter """ + """ filter: SalesforceAppMenuItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAppMenuItemSortByFieldEnum """ + """ sortByField: SalesforceAppMenuItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AppMenuItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAppMenuItemsConnection """ @@ -52725,15 +53227,15 @@ type SalesforceQuery { """ userAppInfos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserAppInfoConnectionFilter """ + """ filter: SalesforceUserAppInfoConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserAppInfoSortByFieldEnum """ + """ sortByField: SalesforceUserAppInfoSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Last Used Apps to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserAppInfosConnection """ @@ -52741,15 +53243,15 @@ type SalesforceQuery { """ actionLinkGroupTemplates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceActionLinkGroupTemplateConnectionFilter """ + """ filter: SalesforceActionLinkGroupTemplateConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceActionLinkGroupTemplateSortByFieldEnum """ + """ sortByField: SalesforceActionLinkGroupTemplateSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Action Link Group Templates to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceActionLinkGroupTemplatesConnection """ @@ -52757,15 +53259,15 @@ type SalesforceQuery { """ userProvisioningRequestShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningRequestShareConnectionFilter """ + """ filter: SalesforceUserProvisioningRequestShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningRequestShareSortByFieldEnum """ + """ sortByField: SalesforceUserProvisioningRequestShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of User Provisioning Request Shares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvisioningRequestSharesConnection """ @@ -52773,15 +53275,15 @@ type SalesforceQuery { """ datacloudOwnedEntities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDatacloudOwnedEntityConnectionFilter """ + """ filter: SalesforceDatacloudOwnedEntityConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDatacloudOwnedEntitySortByFieldEnum """ + """ sortByField: SalesforceDatacloudOwnedEntitySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Data.com Owned Entities to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDatacloudOwnedEntitysConnection """ @@ -52789,15 +53291,15 @@ type SalesforceQuery { """ assets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetConnectionFilter """ + """ filter: SalesforceAssetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetSortByFieldEnum """ + """ sortByField: SalesforceAssetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Assets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetsConnection """ @@ -52805,15 +53307,15 @@ type SalesforceQuery { """ processInstanceWorkitems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceWorkitemConnectionFilter """ + """ filter: SalesforceProcessInstanceWorkitemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceWorkitemSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceWorkitemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Approval Requests to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstanceWorkitemsConnection """ @@ -52821,15 +53323,15 @@ type SalesforceQuery { """ userProvAccounts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvAccountConnectionFilter """ + """ filter: SalesforceUserProvAccountConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvAccountSortByFieldEnum """ + """ sortByField: SalesforceUserProvAccountSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of User Provisioning Accounts to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvAccountsConnection """ @@ -52837,15 +53339,15 @@ type SalesforceQuery { """ userListViews(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserListViewConnectionFilter """ + """ filter: SalesforceUserListViewConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserListViewSortByFieldEnum """ + """ sortByField: SalesforceUserListViewSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of User List Views to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserListViewsConnection """ @@ -52853,15 +53355,15 @@ type SalesforceQuery { """ apexEmailNotifications(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexEmailNotificationConnectionFilter """ + """ filter: SalesforceApexEmailNotificationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexEmailNotificationSortByFieldEnum """ + """ sortByField: SalesforceApexEmailNotificationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Apex Email Notifications to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexEmailNotificationsConnection """ @@ -52869,15 +53371,15 @@ type SalesforceQuery { """ categoryNodes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCategoryNodeConnectionFilter """ + """ filter: SalesforceCategoryNodeConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCategoryNodeSortByFieldEnum """ + """ sortByField: SalesforceCategoryNodeSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Category Nodes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCategoryNodesConnection """ @@ -52885,15 +53387,15 @@ type SalesforceQuery { """ entitySubscriptions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Entity Subscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -52901,15 +53403,15 @@ type SalesforceQuery { """ partners(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePartnerConnectionFilter """ + """ filter: SalesforcePartnerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePartnerSortByFieldEnum """ + """ sortByField: SalesforcePartnerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Partners to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePartnersConnection """ @@ -52917,15 +53419,15 @@ type SalesforceQuery { """ collaborationInvitations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationInvitationConnectionFilter """ + """ filter: SalesforceCollaborationInvitationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationInvitationSortByFieldEnum """ + """ sortByField: SalesforceCollaborationInvitationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Chatter Invitations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationInvitationsConnection """ @@ -52933,15 +53435,15 @@ type SalesforceQuery { """ additionalNumbers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAdditionalNumberConnectionFilter """ + """ filter: SalesforceAdditionalNumberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAdditionalNumberSortByFieldEnum """ + """ sortByField: SalesforceAdditionalNumberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Additional Directory Numbers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAdditionalNumbersConnection """ @@ -52949,15 +53451,15 @@ type SalesforceQuery { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Flow Record Relations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -52965,15 +53467,15 @@ type SalesforceQuery { """ opportunityLineItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityLineItemConnectionFilter """ + """ filter: SalesforceOpportunityLineItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityLineItemSortByFieldEnum """ + """ sortByField: SalesforceOpportunityLineItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Opportunity Products to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityLineItemsConnection """ @@ -52981,15 +53483,15 @@ type SalesforceQuery { """ taskFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskFeedConnectionFilter """ + """ filter: SalesforceTaskFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskFeedSortByFieldEnum """ + """ sortByField: SalesforceTaskFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Task Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTaskFeedsConnection """ @@ -52997,15 +53499,15 @@ type SalesforceQuery { """ organizations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrganizationConnectionFilter """ + """ filter: SalesforceOrganizationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrganizationSortByFieldEnum """ + """ sortByField: SalesforceOrganizationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Organizations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrganizationsConnection """ @@ -53013,15 +53515,15 @@ type SalesforceQuery { """ todayGoals(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTodayGoalConnectionFilter """ + """ filter: SalesforceTodayGoalConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTodayGoalSortByFieldEnum """ + """ sortByField: SalesforceTodayGoalSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Goals to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTodayGoalsConnection """ @@ -53029,15 +53531,15 @@ type SalesforceQuery { """ namedCredentials(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNamedCredentialConnectionFilter """ + """ filter: SalesforceNamedCredentialConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNamedCredentialSortByFieldEnum """ + """ sortByField: SalesforceNamedCredentialSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Named Credentials to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceNamedCredentialsConnection """ @@ -53045,15 +53547,15 @@ type SalesforceQuery { """ listEmailRecipientSources(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListEmailRecipientSourceConnectionFilter """ + """ filter: SalesforceListEmailRecipientSourceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum """ + """ sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of List Email Recipient Sources to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceListEmailRecipientSourcesConnection """ @@ -53061,15 +53563,15 @@ type SalesforceQuery { """ contactHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactHistoryConnectionFilter """ + """ filter: SalesforceContactHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactHistorySortByFieldEnum """ + """ sortByField: SalesforceContactHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Contact Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContactHistorysConnection """ @@ -53077,15 +53579,15 @@ type SalesforceQuery { """ contentDocumentSubscriptions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentSubscriptionConnectionFilter """ + """ filter: SalesforceContentDocumentSubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentSubscriptionSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentSubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Content Document Subscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentSubscriptionsConnection """ @@ -53093,15 +53595,15 @@ type SalesforceQuery { """ opportunities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityConnectionFilter """ + """ filter: SalesforceOpportunityConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunitySortByFieldEnum """ + """ sortByField: SalesforceOpportunitySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Opportunities to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunitysConnection """ @@ -53109,15 +53611,15 @@ type SalesforceQuery { """ collaborationGroups(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupConnectionFilter """ + """ filter: SalesforceCollaborationGroupConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Groups to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupsConnection """ @@ -53125,15 +53627,15 @@ type SalesforceQuery { """ ideas(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdeaConnectionFilter """ + """ filter: SalesforceIdeaConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdeaSortByFieldEnum """ + """ sortByField: SalesforceIdeaSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Ideas to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceIdeasConnection """ @@ -53141,15 +53643,15 @@ type SalesforceQuery { """ contentVersionHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionHistoryConnectionFilter """ + """ filter: SalesforceContentVersionHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionHistorySortByFieldEnum """ + """ sortByField: SalesforceContentVersionHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Content Version Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionHistorysConnection """ @@ -53157,15 +53659,15 @@ type SalesforceQuery { """ reportFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceReportFeedConnectionFilter """ + """ filter: SalesforceReportFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceReportFeedSortByFieldEnum """ + """ sortByField: SalesforceReportFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Report Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceReportFeedsConnection """ @@ -53173,15 +53675,15 @@ type SalesforceQuery { """ dataAssessmentValueMetrics(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDataAssessmentValueMetricConnectionFilter """ + """ filter: SalesforceDataAssessmentValueMetricConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDataAssessmentValueMetricSortByFieldEnum """ + """ sortByField: SalesforceDataAssessmentValueMetricSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Data Assessment Field Value Metrics to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDataAssessmentValueMetricsConnection """ @@ -53189,15 +53691,15 @@ type SalesforceQuery { """ customBrands(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomBrandConnectionFilter """ + """ filter: SalesforceCustomBrandConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomBrandSortByFieldEnum """ + """ sortByField: SalesforceCustomBrandSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Custom Brands to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCustomBrandsConnection """ @@ -53205,15 +53707,15 @@ type SalesforceQuery { """ notes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNoteConnectionFilter """ + """ filter: SalesforceNoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNoteSortByFieldEnum """ + """ sortByField: SalesforceNoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Notes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceNotesConnection """ @@ -53221,15 +53723,15 @@ type SalesforceQuery { """ assignmentRules(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssignmentRuleConnectionFilter """ + """ filter: SalesforceAssignmentRuleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssignmentRuleSortByFieldEnum """ + """ sortByField: SalesforceAssignmentRuleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Assignment Rules to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssignmentRulesConnection """ @@ -53237,15 +53739,15 @@ type SalesforceQuery { """ contractContactRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractContactRoleConnectionFilter """ + """ filter: SalesforceContractContactRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractContactRoleSortByFieldEnum """ + """ sortByField: SalesforceContractContactRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Contract Contact Roles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContractContactRolesConnection """ @@ -53253,15 +53755,15 @@ type SalesforceQuery { """ votes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVoteConnectionFilter """ + """ filter: SalesforceVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVoteSortByFieldEnum """ + """ sortByField: SalesforceVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Votes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceVotesConnection """ @@ -53269,15 +53771,15 @@ type SalesforceQuery { """ siteHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSiteHistoryConnectionFilter """ + """ filter: SalesforceSiteHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSiteHistorySortByFieldEnum """ + """ sortByField: SalesforceSiteHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Site Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSiteHistorysConnection """ @@ -53285,15 +53787,15 @@ type SalesforceQuery { """ solutions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionConnectionFilter """ + """ filter: SalesforceSolutionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionSortByFieldEnum """ + """ sortByField: SalesforceSolutionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Solutions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSolutionsConnection """ @@ -53301,15 +53803,15 @@ type SalesforceQuery { """ businessProcesses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceBusinessProcessConnectionFilter """ + """ filter: SalesforceBusinessProcessConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceBusinessProcessSortByFieldEnum """ + """ sortByField: SalesforceBusinessProcessSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Business Processes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceBusinessProcesssConnection """ @@ -53317,15 +53819,15 @@ type SalesforceQuery { """ userProvAccountStagings(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvAccountStagingConnectionFilter """ + """ filter: SalesforceUserProvAccountStagingConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvAccountStagingSortByFieldEnum """ + """ sortByField: SalesforceUserProvAccountStagingSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of User Provisioning Account Stagings to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvAccountStagingsConnection """ @@ -53333,15 +53835,15 @@ type SalesforceQuery { """ flowInterviewShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowInterviewShareConnectionFilter """ + """ filter: SalesforceFlowInterviewShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowInterviewShareSortByFieldEnum """ + """ sortByField: SalesforceFlowInterviewShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Flow Interview Shares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowInterviewSharesConnection """ @@ -53349,15 +53851,15 @@ type SalesforceQuery { """ orgDeleteRequestShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrgDeleteRequestShareConnectionFilter """ + """ filter: SalesforceOrgDeleteRequestShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrgDeleteRequestShareSortByFieldEnum """ + """ sortByField: SalesforceOrgDeleteRequestShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Org Delete Request Shares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrgDeleteRequestSharesConnection """ @@ -53365,15 +53867,15 @@ type SalesforceQuery { """ apexTestResults(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestResultConnectionFilter """ + """ filter: SalesforceApexTestResultConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestResultSortByFieldEnum """ + """ sortByField: SalesforceApexTestResultSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Apex Test Results to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexTestResultsConnection """ @@ -53381,15 +53883,15 @@ type SalesforceQuery { """ folders(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFolderConnectionFilter """ + """ filter: SalesforceFolderConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFolderSortByFieldEnum """ + """ sortByField: SalesforceFolderSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Folders to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFoldersConnection """ @@ -53397,15 +53899,15 @@ type SalesforceQuery { """ quickTextShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQuickTextShareConnectionFilter """ + """ filter: SalesforceQuickTextShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQuickTextShareSortByFieldEnum """ + """ sortByField: SalesforceQuickTextShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Quick Text Shares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceQuickTextSharesConnection """ @@ -53413,15 +53915,15 @@ type SalesforceQuery { """ authConfigProvidersPlural(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthConfigProvidersConnectionFilter """ + """ filter: SalesforceAuthConfigProvidersConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthConfigProvidersSortByFieldEnum """ + """ sortByField: SalesforceAuthConfigProvidersSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Authentication Configuration Auth. Providers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAuthConfigProviderssConnection """ @@ -53429,15 +53931,15 @@ type SalesforceQuery { """ product2s(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProduct2ConnectionFilter """ + """ filter: SalesforceProduct2ConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProduct2SortByFieldEnum """ + """ sortByField: SalesforceProduct2SortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Products to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProduct2sConnection """ @@ -53445,15 +53947,15 @@ type SalesforceQuery { """ acceptedEventRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAcceptedEventRelationConnectionFilter """ + """ filter: SalesforceAcceptedEventRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAcceptedEventRelationSortByFieldEnum """ + """ sortByField: SalesforceAcceptedEventRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Accepted Event Relations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAcceptedEventRelationsConnection """ @@ -53461,15 +53963,15 @@ type SalesforceQuery { """ sessionPermSetActivations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSessionPermSetActivationConnectionFilter """ + """ filter: SalesforceSessionPermSetActivationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSessionPermSetActivationSortByFieldEnum """ + """ sortByField: SalesforceSessionPermSetActivationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Session Permission Set Activations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSessionPermSetActivationsConnection """ @@ -53477,15 +53979,15 @@ type SalesforceQuery { """ communities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCommunityConnectionFilter """ + """ filter: SalesforceCommunityConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCommunitySortByFieldEnum """ + """ sortByField: SalesforceCommunitySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Zones to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCommunitysConnection """ @@ -53493,15 +53995,15 @@ type SalesforceQuery { """ leadStatuses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadStatusConnectionFilter """ + """ filter: SalesforceLeadStatusConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadStatusSortByFieldEnum """ + """ sortByField: SalesforceLeadStatusSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Lead Status Values to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadStatussConnection """ @@ -53509,15 +54011,15 @@ type SalesforceQuery { """ emailServicesFunctions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailServicesFunctionConnectionFilter """ + """ filter: SalesforceEmailServicesFunctionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailServicesFunctionSortByFieldEnum """ + """ sortByField: SalesforceEmailServicesFunctionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Email Services to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailServicesFunctionsConnection """ @@ -53525,15 +54027,15 @@ type SalesforceQuery { """ matchingRules(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMatchingRuleConnectionFilter """ + """ filter: SalesforceMatchingRuleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMatchingRuleSortByFieldEnum """ + """ sortByField: SalesforceMatchingRuleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Matching Rules to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceMatchingRulesConnection """ @@ -53541,15 +54043,15 @@ type SalesforceQuery { """ orgWideEmailAddresses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrgWideEmailAddressConnectionFilter """ + """ filter: SalesforceOrgWideEmailAddressConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrgWideEmailAddressSortByFieldEnum """ + """ sortByField: SalesforceOrgWideEmailAddressSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Organization-wide From Email Addresses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrgWideEmailAddresssConnection """ @@ -53557,15 +54059,15 @@ type SalesforceQuery { """ emailMessageRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageRelationConnectionFilter """ + """ filter: SalesforceEmailMessageRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageRelationSortByFieldEnum """ + """ sortByField: SalesforceEmailMessageRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Email Message Relations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailMessageRelationsConnection """ @@ -53573,15 +54075,15 @@ type SalesforceQuery { """ knowledgeableUsers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceKnowledgeableUserConnectionFilter """ + """ filter: SalesforceKnowledgeableUserConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceKnowledgeableUserSortByFieldEnum """ + """ sortByField: SalesforceKnowledgeableUserSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Knowledgeable Users to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceKnowledgeableUsersConnection """ @@ -53589,15 +54091,15 @@ type SalesforceQuery { """ setupAuditTrails(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSetupAuditTrailConnectionFilter """ + """ filter: SalesforceSetupAuditTrailConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSetupAuditTrailSortByFieldEnum """ + """ sortByField: SalesforceSetupAuditTrailSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Setup Audit Trail Entries to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSetupAuditTrailsConnection """ @@ -53605,15 +54107,15 @@ type SalesforceQuery { """ cronTriggers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCronTriggerConnectionFilter """ + """ filter: SalesforceCronTriggerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCronTriggerSortByFieldEnum """ + """ sortByField: SalesforceCronTriggerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Scheduled Jobs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCronTriggersConnection """ @@ -53621,15 +54123,15 @@ type SalesforceQuery { """ grantedByLicenses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGrantedByLicenseConnectionFilter """ + """ filter: SalesforceGrantedByLicenseConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGrantedByLicenseSortByFieldEnum """ + """ sortByField: SalesforceGrantedByLicenseSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Setting Granted By Licenses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceGrantedByLicensesConnection """ @@ -53637,15 +54139,15 @@ type SalesforceQuery { """ cspTrustedSites(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCspTrustedSiteConnectionFilter """ + """ filter: SalesforceCspTrustedSiteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCspTrustedSiteSortByFieldEnum """ + """ sortByField: SalesforceCspTrustedSiteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Content Security Policy Trusted Sites to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCspTrustedSitesConnection """ @@ -53653,15 +54155,15 @@ type SalesforceQuery { """ solutionHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionHistoryConnectionFilter """ + """ filter: SalesforceSolutionHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionHistorySortByFieldEnum """ + """ sortByField: SalesforceSolutionHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Solution Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSolutionHistorysConnection """ @@ -53669,15 +54171,15 @@ type SalesforceQuery { """ contentTagSubscriptions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentTagSubscriptionConnectionFilter """ + """ filter: SalesforceContentTagSubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentTagSubscriptionSortByFieldEnum """ + """ sortByField: SalesforceContentTagSubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Content Tag Subscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentTagSubscriptionsConnection """ @@ -53685,15 +54187,15 @@ type SalesforceQuery { """ contracts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractConnectionFilter """ + """ filter: SalesforceContractConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractSortByFieldEnum """ + """ sortByField: SalesforceContractSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Contracts to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContractsConnection """ @@ -53701,15 +54203,15 @@ type SalesforceQuery { """ documentAttachmentMaps(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDocumentAttachmentMapConnectionFilter """ + """ filter: SalesforceDocumentAttachmentMapConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum """ + """ sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Document Entity Maps to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDocumentAttachmentMapsConnection """ @@ -53717,15 +54219,15 @@ type SalesforceQuery { """ macroInstructions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroInstructionConnectionFilter """ + """ filter: SalesforceMacroInstructionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroInstructionSortByFieldEnum """ + """ sortByField: SalesforceMacroInstructionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Macro Instructions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceMacroInstructionsConnection """ @@ -53733,15 +54235,15 @@ type SalesforceQuery { """ customPermissions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomPermissionConnectionFilter """ + """ filter: SalesforceCustomPermissionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomPermissionSortByFieldEnum """ + """ sortByField: SalesforceCustomPermissionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Custom Permissions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCustomPermissionsConnection """ @@ -53749,15 +54251,15 @@ type SalesforceQuery { """ contractFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractFeedConnectionFilter """ + """ filter: SalesforceContractFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractFeedSortByFieldEnum """ + """ sortByField: SalesforceContractFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Contract Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContractFeedsConnection """ @@ -53765,15 +54267,15 @@ type SalesforceQuery { """ contentWorkspacePermissions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspacePermissionConnectionFilter """ + """ filter: SalesforceContentWorkspacePermissionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspacePermissionSortByFieldEnum """ + """ sortByField: SalesforceContentWorkspacePermissionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Library Permissions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentWorkspacePermissionsConnection """ @@ -53781,15 +54283,15 @@ type SalesforceQuery { """ businessHoursPlural(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceBusinessHoursConnectionFilter """ + """ filter: SalesforceBusinessHoursConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceBusinessHoursSortByFieldEnum """ + """ sortByField: SalesforceBusinessHoursSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Business Hours to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceBusinessHourssConnection """ @@ -53797,15 +54299,15 @@ type SalesforceQuery { """ macroHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroHistoryConnectionFilter """ + """ filter: SalesforceMacroHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroHistorySortByFieldEnum """ + """ sortByField: SalesforceMacroHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Macro Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceMacroHistorysConnection """ @@ -53813,15 +54315,15 @@ type SalesforceQuery { """ users(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserConnectionFilter """ + """ filter: SalesforceUserConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserSortByFieldEnum """ + """ sortByField: SalesforceUserSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Users to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUsersConnection """ @@ -53829,15 +54331,15 @@ type SalesforceQuery { """ dashboards(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardConnectionFilter """ + """ filter: SalesforceDashboardConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardSortByFieldEnum """ + """ sortByField: SalesforceDashboardSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Dashboards to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDashboardsConnection """ @@ -53845,15 +54347,15 @@ type SalesforceQuery { """ contentNotifications(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentNotificationConnectionFilter """ + """ filter: SalesforceContentNotificationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentNotificationSortByFieldEnum """ + """ sortByField: SalesforceContentNotificationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Content Notifications to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentNotificationsConnection """ @@ -53861,15 +54363,15 @@ type SalesforceQuery { """ caseContactRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseContactRoleConnectionFilter """ + """ filter: SalesforceCaseContactRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseContactRoleSortByFieldEnum """ + """ sortByField: SalesforceCaseContactRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Case Contact Roles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseContactRolesConnection """ @@ -53877,15 +54379,15 @@ type SalesforceQuery { """ testSuiteMemberships(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTestSuiteMembershipConnectionFilter """ + """ filter: SalesforceTestSuiteMembershipConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTestSuiteMembershipSortByFieldEnum """ + """ sortByField: SalesforceTestSuiteMembershipSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Test Suite Memberships to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTestSuiteMembershipsConnection """ @@ -53893,15 +54395,15 @@ type SalesforceQuery { """ orderShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderShareConnectionFilter """ + """ filter: SalesforceOrderShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderShareSortByFieldEnum """ + """ sortByField: SalesforceOrderShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Order Shares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderSharesConnection """ @@ -53909,15 +54411,15 @@ type SalesforceQuery { """ userAppMenuCustomizations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserAppMenuCustomizationConnectionFilter """ + """ filter: SalesforceUserAppMenuCustomizationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserAppMenuCustomizationSortByFieldEnum """ + """ sortByField: SalesforceUserAppMenuCustomizationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserAppMenuCustomizations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserAppMenuCustomizationsConnection """ @@ -53925,15 +54427,15 @@ type SalesforceQuery { """ topicUserEvents(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicUserEventConnectionFilter """ + """ filter: SalesforceTopicUserEventConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicUserEventSortByFieldEnum """ + """ sortByField: SalesforceTopicUserEventSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Topic User Events to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicUserEventsConnection """ @@ -53941,15 +54443,15 @@ type SalesforceQuery { """ announcements(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAnnouncementConnectionFilter """ + """ filter: SalesforceAnnouncementConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAnnouncementSortByFieldEnum """ + """ sortByField: SalesforceAnnouncementSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Announcements to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAnnouncementsConnection """ @@ -53957,15 +54459,15 @@ type SalesforceQuery { """ externalDataUserAuths(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceExternalDataUserAuthConnectionFilter """ + """ filter: SalesforceExternalDataUserAuthConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceExternalDataUserAuthSortByFieldEnum """ + """ sortByField: SalesforceExternalDataUserAuthSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of External Data User Authentications to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceExternalDataUserAuthsConnection """ @@ -53973,15 +54475,15 @@ type SalesforceQuery { """ searchPromotionRules(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSearchPromotionRuleConnectionFilter """ + """ filter: SalesforceSearchPromotionRuleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSearchPromotionRuleSortByFieldEnum """ + """ sortByField: SalesforceSearchPromotionRuleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Promoted Search Terms to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSearchPromotionRulesConnection """ @@ -53989,15 +54491,15 @@ type SalesforceQuery { """ leadCleanInfos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadCleanInfoConnectionFilter """ + """ filter: SalesforceLeadCleanInfoConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadCleanInfoSortByFieldEnum """ + """ sortByField: SalesforceLeadCleanInfoSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Lead Clean Infos to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadCleanInfosConnection """ @@ -54005,15 +54507,15 @@ type SalesforceQuery { """ events(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ + """ filter: SalesforceEventConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ + """ sortByField: SalesforceEventSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Events to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventsConnection """ @@ -54021,15 +54523,15 @@ type SalesforceQuery { """ processDefinitions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessDefinitionConnectionFilter """ + """ filter: SalesforceProcessDefinitionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessDefinitionSortByFieldEnum """ + """ sortByField: SalesforceProcessDefinitionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Process Definitions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessDefinitionsConnection """ @@ -54037,15 +54539,15 @@ type SalesforceQuery { """ permissionSetLicenses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetLicenseConnectionFilter """ + """ filter: SalesforcePermissionSetLicenseConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetLicenseSortByFieldEnum """ + """ sortByField: SalesforcePermissionSetLicenseSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Permission Set Licenses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePermissionSetLicensesConnection """ @@ -54053,15 +54555,15 @@ type SalesforceQuery { """ campaignMemberStatuses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignMemberStatusConnectionFilter """ + """ filter: SalesforceCampaignMemberStatusConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignMemberStatusSortByFieldEnum """ + """ sortByField: SalesforceCampaignMemberStatusSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Campaign Member Statuses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignMemberStatussConnection """ @@ -54069,15 +54571,15 @@ type SalesforceQuery { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Content Versions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -54085,15 +54587,15 @@ type SalesforceQuery { """ securityCustomBaselines(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecurityCustomBaselineConnectionFilter """ + """ filter: SalesforceSecurityCustomBaselineConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecurityCustomBaselineSortByFieldEnum """ + """ sortByField: SalesforceSecurityCustomBaselineSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Security Custom Baselines to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSecurityCustomBaselinesConnection """ @@ -54101,15 +54603,15 @@ type SalesforceQuery { """ dataAssessmentFieldMetrics(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDataAssessmentFieldMetricConnectionFilter """ + """ filter: SalesforceDataAssessmentFieldMetricConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDataAssessmentFieldMetricSortByFieldEnum """ + """ sortByField: SalesforceDataAssessmentFieldMetricSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Data Assessment Field Metrics to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDataAssessmentFieldMetricsConnection """ @@ -54117,15 +54619,15 @@ type SalesforceQuery { """ auraDefinitions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuraDefinitionConnectionFilter """ + """ filter: SalesforceAuraDefinitionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuraDefinitionSortByFieldEnum """ + """ sortByField: SalesforceAuraDefinitionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Lightning Component Definitions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAuraDefinitionsConnection """ @@ -54133,15 +54635,15 @@ type SalesforceQuery { """ datacloudPurchaseUsages(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDatacloudPurchaseUsageConnectionFilter """ + """ filter: SalesforceDatacloudPurchaseUsageConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDatacloudPurchaseUsageSortByFieldEnum """ + """ sortByField: SalesforceDatacloudPurchaseUsageSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Data.com Usages to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDatacloudPurchaseUsagesConnection """ @@ -54149,15 +54651,15 @@ type SalesforceQuery { """ contacts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactConnectionFilter """ + """ filter: SalesforceContactConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactSortByFieldEnum """ + """ sortByField: SalesforceContactSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Contacts to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContactsConnection """ @@ -54165,15 +54667,15 @@ type SalesforceQuery { """ contentDocuments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentConnectionFilter """ + """ filter: SalesforceContentDocumentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Content Documents to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentsConnection """ @@ -54181,15 +54683,15 @@ type SalesforceQuery { """ leadHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadHistoryConnectionFilter """ + """ filter: SalesforceLeadHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadHistorySortByFieldEnum """ + """ sortByField: SalesforceLeadHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Lead Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadHistorysConnection """ @@ -54197,15 +54699,15 @@ type SalesforceQuery { """ emailTemplates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailTemplateConnectionFilter """ + """ filter: SalesforceEmailTemplateConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailTemplateSortByFieldEnum """ + """ sortByField: SalesforceEmailTemplateSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Email Templates to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailTemplatesConnection """ @@ -54213,15 +54715,15 @@ type SalesforceQuery { """ contentVersionRatings(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionRatingConnectionFilter """ + """ filter: SalesforceContentVersionRatingConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionRatingSortByFieldEnum """ + """ sortByField: SalesforceContentVersionRatingSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Content Version Ratings to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionRatingsConnection """ @@ -54229,15 +54731,15 @@ type SalesforceQuery { """ quickTextHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQuickTextHistoryConnectionFilter """ + """ filter: SalesforceQuickTextHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQuickTextHistorySortByFieldEnum """ + """ sortByField: SalesforceQuickTextHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Quick Text Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceQuickTextHistorysConnection """ @@ -54245,15 +54747,15 @@ type SalesforceQuery { """ authConfigs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthConfigConnectionFilter """ + """ filter: SalesforceAuthConfigConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthConfigSortByFieldEnum """ + """ sortByField: SalesforceAuthConfigSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Authentication Configurations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAuthConfigsConnection """ @@ -54261,15 +54763,15 @@ type SalesforceQuery { """ topics(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicConnectionFilter """ + """ filter: SalesforceTopicConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicSortByFieldEnum """ + """ sortByField: SalesforceTopicSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Topics to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicsConnection """ @@ -54277,15 +54779,15 @@ type SalesforceQuery { """ taskPriorities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskPriorityConnectionFilter """ + """ filter: SalesforceTaskPriorityConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskPrioritySortByFieldEnum """ + """ sortByField: SalesforceTaskPrioritySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Task Priority Values to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTaskPrioritysConnection """ @@ -54293,15 +54795,15 @@ type SalesforceQuery { """ apexTestSuites(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestSuiteConnectionFilter """ + """ filter: SalesforceApexTestSuiteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestSuiteSortByFieldEnum """ + """ sortByField: SalesforceApexTestSuiteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Apex Test Suites to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexTestSuitesConnection """ @@ -54309,15 +54811,15 @@ type SalesforceQuery { """ reports(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceReportConnectionFilter """ + """ filter: SalesforceReportConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceReportSortByFieldEnum """ + """ sortByField: SalesforceReportSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Reports to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceReportsConnection """ @@ -54325,15 +54827,15 @@ type SalesforceQuery { """ visualforceAccessMetricsPlural(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVisualforceAccessMetricsConnectionFilter """ + """ filter: SalesforceVisualforceAccessMetricsConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVisualforceAccessMetricsSortByFieldEnum """ + """ sortByField: SalesforceVisualforceAccessMetricsSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Visualforce Access Metrics to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceVisualforceAccessMetricssConnection """ @@ -54341,15 +54843,15 @@ type SalesforceQuery { """ authSessions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthSessionConnectionFilter """ + """ filter: SalesforceAuthSessionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthSessionSortByFieldEnum """ + """ sortByField: SalesforceAuthSessionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Auth Sessions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAuthSessionsConnection """ @@ -54357,15 +54859,15 @@ type SalesforceQuery { """ contentWorkspaceMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceMemberConnectionFilter """ + """ filter: SalesforceContentWorkspaceMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum """ + """ sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Library Members to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentWorkspaceMembersConnection """ @@ -54373,15 +54875,15 @@ type SalesforceQuery { """ queueSobjects(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQueueSobjectConnectionFilter """ + """ filter: SalesforceQueueSobjectConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQueueSobjectSortByFieldEnum """ + """ sortByField: SalesforceQueueSobjectSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Queue Sobjects to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceQueueSobjectsConnection """ @@ -54389,15 +54891,15 @@ type SalesforceQuery { """ verificationHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVerificationHistoryConnectionFilter """ + """ filter: SalesforceVerificationHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVerificationHistorySortByFieldEnum """ + """ sortByField: SalesforceVerificationHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Identity Verification Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceVerificationHistorysConnection """ @@ -54405,15 +54907,15 @@ type SalesforceQuery { """ domains(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDomainConnectionFilter """ + """ filter: SalesforceDomainConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDomainSortByFieldEnum """ + """ sortByField: SalesforceDomainSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Domains to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDomainsConnection """ @@ -54421,15 +54923,15 @@ type SalesforceQuery { """ connectedApplications(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceConnectedApplicationConnectionFilter """ + """ filter: SalesforceConnectedApplicationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceConnectedApplicationSortByFieldEnum """ + """ sortByField: SalesforceConnectedApplicationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Connected Apps to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceConnectedApplicationsConnection """ @@ -54437,15 +54939,15 @@ type SalesforceQuery { """ dashboardComponents(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardComponentConnectionFilter """ + """ filter: SalesforceDashboardComponentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardComponentSortByFieldEnum """ + """ sortByField: SalesforceDashboardComponentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Dashboard Components to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDashboardComponentsConnection """ @@ -54453,15 +54955,15 @@ type SalesforceQuery { """ contentDocumentFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentFeedConnectionFilter """ + """ filter: SalesforceContentDocumentFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentFeedSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocument Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentFeedsConnection """ @@ -54469,15 +54971,15 @@ type SalesforceQuery { """ contentWorkspaces(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceConnectionFilter """ + """ filter: SalesforceContentWorkspaceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceSortByFieldEnum """ + """ sortByField: SalesforceContentWorkspaceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Libraries to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentWorkspacesConnection """ @@ -54485,15 +54987,15 @@ type SalesforceQuery { """ contentFolderMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderMemberConnectionFilter """ + """ filter: SalesforceContentFolderMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderMemberSortByFieldEnum """ + """ sortByField: SalesforceContentFolderMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Content Folder Members to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentFolderMembersConnection """ @@ -54501,15 +55003,15 @@ type SalesforceQuery { """ assetRelationshipHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipHistoryConnectionFilter """ + """ filter: SalesforceAssetRelationshipHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipHistorySortByFieldEnum """ + """ sortByField: SalesforceAssetRelationshipHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Asset Relationship Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetRelationshipHistorysConnection """ @@ -54517,15 +55019,15 @@ type SalesforceQuery { """ callCenters(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCallCenterConnectionFilter """ + """ filter: SalesforceCallCenterConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCallCenterSortByFieldEnum """ + """ sortByField: SalesforceCallCenterSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Call Centers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCallCentersConnection """ @@ -54533,15 +55035,15 @@ type SalesforceQuery { """ caseTeamMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamMemberConnectionFilter """ + """ filter: SalesforceCaseTeamMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamMemberSortByFieldEnum """ + """ sortByField: SalesforceCaseTeamMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Case Team Members to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseTeamMembersConnection """ @@ -54549,15 +55051,15 @@ type SalesforceQuery { """ mailmergeTemplates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMailmergeTemplateConnectionFilter """ + """ filter: SalesforceMailmergeTemplateConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMailmergeTemplateSortByFieldEnum """ + """ sortByField: SalesforceMailmergeTemplateSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Mail Merge Templates to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceMailmergeTemplatesConnection """ @@ -54565,15 +55067,15 @@ type SalesforceQuery { """ customObjectUserLicenseMetricsPlural(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomObjectUserLicenseMetricsConnectionFilter """ + """ filter: SalesforceCustomObjectUserLicenseMetricsConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomObjectUserLicenseMetricsSortByFieldEnum """ + """ sortByField: SalesforceCustomObjectUserLicenseMetricsSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Custom Object Usage By User License Metrics to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCustomObjectUserLicenseMetricssConnection """ @@ -54581,15 +55083,15 @@ type SalesforceQuery { """ listViews(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListViewConnectionFilter """ + """ filter: SalesforceListViewConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListViewSortByFieldEnum """ + """ sortByField: SalesforceListViewSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of List Views to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceListViewsConnection """ @@ -54597,15 +55099,15 @@ type SalesforceQuery { """ orgDeleteRequests(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrgDeleteRequestConnectionFilter """ + """ filter: SalesforceOrgDeleteRequestConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrgDeleteRequestSortByFieldEnum """ + """ sortByField: SalesforceOrgDeleteRequestSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Org Delete Requests to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrgDeleteRequestsConnection """ @@ -54613,15 +55115,15 @@ type SalesforceQuery { """ collaborationGroupFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupFeedConnectionFilter """ + """ filter: SalesforceCollaborationGroupFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Group Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupFeedsConnection """ @@ -54629,15 +55131,15 @@ type SalesforceQuery { """ userPreferences(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserPreferenceConnectionFilter """ + """ filter: SalesforceUserPreferenceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserPreferenceSortByFieldEnum """ + """ sortByField: SalesforceUserPreferenceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of User Preferences to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserPreferencesConnection """ @@ -54645,15 +55147,15 @@ type SalesforceQuery { """ collaborationGroupMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupMemberConnectionFilter """ + """ filter: SalesforceCollaborationGroupMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Group Members to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupMembersConnection """ @@ -54661,15 +55163,15 @@ type SalesforceQuery { """ opportunityFieldHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityFieldHistoryConnectionFilter """ + """ filter: SalesforceOpportunityFieldHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityFieldHistorySortByFieldEnum """ + """ sortByField: SalesforceOpportunityFieldHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Opportunity Field Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityFieldHistorysConnection """ @@ -54677,15 +55179,15 @@ type SalesforceQuery { """ accountHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountHistoryConnectionFilter """ + """ filter: SalesforceAccountHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountHistorySortByFieldEnum """ + """ sortByField: SalesforceAccountHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Account Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountHistorysConnection """ @@ -54693,15 +55195,15 @@ type SalesforceQuery { """ samlSsoConfigs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSamlSsoConfigConnectionFilter """ + """ filter: SalesforceSamlSsoConfigConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSamlSsoConfigSortByFieldEnum """ + """ sortByField: SalesforceSamlSsoConfigSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SAML Single Sign-On Settings to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSamlSsoConfigsConnection """ @@ -54709,15 +55211,15 @@ type SalesforceQuery { """ opportunityShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityShareConnectionFilter """ + """ filter: SalesforceOpportunityShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityShareSortByFieldEnum """ + """ sortByField: SalesforceOpportunityShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Opportunity Shares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunitySharesConnection """ @@ -54725,15 +55227,15 @@ type SalesforceQuery { """ eventLogFiles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventLogFileConnectionFilter """ + """ filter: SalesforceEventLogFileConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventLogFileSortByFieldEnum """ + """ sortByField: SalesforceEventLogFileSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Event Log Files to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventLogFilesConnection """ @@ -54741,15 +55243,15 @@ type SalesforceQuery { """ assetRelationships(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipConnectionFilter """ + """ filter: SalesforceAssetRelationshipConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipSortByFieldEnum """ + """ sortByField: SalesforceAssetRelationshipSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Asset Relationships to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetRelationshipsConnection """ @@ -54757,15 +55259,15 @@ type SalesforceQuery { """ eventFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventFeedConnectionFilter """ + """ filter: SalesforceEventFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventFeedSortByFieldEnum """ + """ sortByField: SalesforceEventFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Event Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventFeedsConnection """ @@ -54773,15 +55275,15 @@ type SalesforceQuery { """ userRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserRoleConnectionFilter """ + """ filter: SalesforceUserRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserRoleSortByFieldEnum """ + """ sortByField: SalesforceUserRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Roles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserRolesConnection """ @@ -54789,15 +55291,15 @@ type SalesforceQuery { """ opportunityContactRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityContactRoleConnectionFilter """ + """ filter: SalesforceOpportunityContactRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityContactRoleSortByFieldEnum """ + """ sortByField: SalesforceOpportunityContactRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Opportunity Contact Roles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityContactRolesConnection """ @@ -54805,15 +55307,15 @@ type SalesforceQuery { """ caseSolutions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseSolutionConnectionFilter """ + """ filter: SalesforceCaseSolutionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseSolutionSortByFieldEnum """ + """ sortByField: SalesforceCaseSolutionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Case Solutions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseSolutionsConnection """ @@ -54821,15 +55323,15 @@ type SalesforceQuery { """ emailCaptures(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailCaptureConnectionFilter """ + """ filter: SalesforceEmailCaptureConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailCaptureSortByFieldEnum """ + """ sortByField: SalesforceEmailCaptureSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailCaptures to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailCapturesConnection """ @@ -54837,15 +55339,15 @@ type SalesforceQuery { """ accounts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountConnectionFilter """ + """ filter: SalesforceAccountConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountSortByFieldEnum """ + """ sortByField: SalesforceAccountSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Accounts to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountsConnection """ @@ -54853,15 +55355,15 @@ type SalesforceQuery { """ profiles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProfileConnectionFilter """ + """ filter: SalesforceProfileConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProfileSortByFieldEnum """ + """ sortByField: SalesforceProfileSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Profiles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProfilesConnection """ @@ -54869,15 +55371,15 @@ type SalesforceQuery { """ opportunityStages(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityStageConnectionFilter """ + """ filter: SalesforceOpportunityStageConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityStageSortByFieldEnum """ + """ sortByField: SalesforceOpportunityStageSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Opportunity Stages to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityStagesConnection """ @@ -54885,15 +55387,15 @@ type SalesforceQuery { """ contentFolderItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderItemConnectionFilter """ + """ filter: SalesforceContentFolderItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderItemSortByFieldEnum """ + """ sortByField: SalesforceContentFolderItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Content Folder Items to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentFolderItemsConnection """ @@ -54901,15 +55403,15 @@ type SalesforceQuery { """ actionLinkTemplates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceActionLinkTemplateConnectionFilter """ + """ filter: SalesforceActionLinkTemplateConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceActionLinkTemplateSortByFieldEnum """ + """ sortByField: SalesforceActionLinkTemplateSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Action Link Templates to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceActionLinkTemplatesConnection """ @@ -54917,15 +55419,15 @@ type SalesforceQuery { """ permissionSets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetConnectionFilter """ + """ filter: SalesforcePermissionSetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetSortByFieldEnum """ + """ sortByField: SalesforcePermissionSetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Permission Sets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePermissionSetsConnection """ @@ -54933,15 +55435,15 @@ type SalesforceQuery { """ assetRelationshipFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipFeedConnectionFilter """ + """ filter: SalesforceAssetRelationshipFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum """ + """ sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Asset Relationship Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetRelationshipFeedsConnection """ @@ -54949,15 +55451,15 @@ type SalesforceQuery { """ campaignMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignMemberConnectionFilter """ + """ filter: SalesforceCampaignMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignMemberSortByFieldEnum """ + """ sortByField: SalesforceCampaignMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Campaign Members to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignMembersConnection """ @@ -54965,15 +55467,15 @@ type SalesforceQuery { """ product2Histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProduct2HistoryConnectionFilter """ + """ filter: SalesforceProduct2HistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProduct2HistorySortByFieldEnum """ + """ sortByField: SalesforceProduct2HistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Product Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProduct2HistorysConnection """ @@ -54981,15 +55483,15 @@ type SalesforceQuery { """ contactShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactShareConnectionFilter """ + """ filter: SalesforceContactShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactShareSortByFieldEnum """ + """ sortByField: SalesforceContactShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Contact Shares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContactSharesConnection """ @@ -54997,15 +55499,15 @@ type SalesforceQuery { """ assetShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetShareConnectionFilter """ + """ filter: SalesforceAssetShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetShareSortByFieldEnum """ + """ sortByField: SalesforceAssetShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Asset Shares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetSharesConnection """ @@ -55013,15 +55515,15 @@ type SalesforceQuery { """ accountCleanInfos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountCleanInfoConnectionFilter """ + """ filter: SalesforceAccountCleanInfoConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountCleanInfoSortByFieldEnum """ + """ sortByField: SalesforceAccountCleanInfoSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Account Clean Infos to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountCleanInfosConnection """ @@ -55029,15 +55531,15 @@ type SalesforceQuery { """ packageLicenses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePackageLicenseConnectionFilter """ + """ filter: SalesforcePackageLicenseConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePackageLicenseSortByFieldEnum """ + """ sortByField: SalesforcePackageLicenseSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Package Licenses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePackageLicensesConnection """ @@ -55045,15 +55547,15 @@ type SalesforceQuery { """ userShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserShareConnectionFilter """ + """ filter: SalesforceUserShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserShareSortByFieldEnum """ + """ sortByField: SalesforceUserShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of User Shares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserSharesConnection """ @@ -55061,15 +55563,15 @@ type SalesforceQuery { """ permissionSetLicenseAssigns(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetLicenseAssignConnectionFilter """ + """ filter: SalesforcePermissionSetLicenseAssignConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum """ + """ sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Permission Set License Assignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePermissionSetLicenseAssignsConnection """ @@ -55077,15 +55579,15 @@ type SalesforceQuery { """ userProvisioningRequests(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningRequestConnectionFilter """ + """ filter: SalesforceUserProvisioningRequestConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum """ + """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of User Provisioning Requests to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvisioningRequestsConnection """ @@ -55093,15 +55595,15 @@ type SalesforceQuery { """ userPackageLicenses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserPackageLicenseConnectionFilter """ + """ filter: SalesforceUserPackageLicenseConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserPackageLicenseSortByFieldEnum """ + """ sortByField: SalesforceUserPackageLicenseSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of User Package Licenses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserPackageLicensesConnection """ @@ -55109,15 +55611,15 @@ type SalesforceQuery { """ fileSearchActivities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFileSearchActivityConnectionFilter """ + """ filter: SalesforceFileSearchActivityConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFileSearchActivitySortByFieldEnum """ + """ sortByField: SalesforceFileSearchActivitySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FileSearchActivities to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFileSearchActivitysConnection """ @@ -55125,15 +55627,15 @@ type SalesforceQuery { """ caseFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseFeedConnectionFilter """ + """ filter: SalesforceCaseFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseFeedSortByFieldEnum """ + """ sortByField: SalesforceCaseFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Case Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseFeedsConnection """ @@ -55141,15 +55643,15 @@ type SalesforceQuery { """ partnerRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePartnerRoleConnectionFilter """ + """ filter: SalesforcePartnerRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePartnerRoleSortByFieldEnum """ + """ sortByField: SalesforcePartnerRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Partner Role Values to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePartnerRolesConnection """ @@ -55157,15 +55659,15 @@ type SalesforceQuery { """ assetFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetFeedConnectionFilter """ + """ filter: SalesforceAssetFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetFeedSortByFieldEnum """ + """ sortByField: SalesforceAssetFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Asset Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetFeedsConnection """ @@ -55173,15 +55675,15 @@ type SalesforceQuery { """ clientBrowsers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceClientBrowserConnectionFilter """ + """ filter: SalesforceClientBrowserConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceClientBrowserSortByFieldEnum """ + """ sortByField: SalesforceClientBrowserSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Client Browsers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceClientBrowsersConnection """ @@ -55189,15 +55691,15 @@ type SalesforceQuery { """ accountContactRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountContactRoleConnectionFilter """ + """ filter: SalesforceAccountContactRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountContactRoleSortByFieldEnum """ + """ sortByField: SalesforceAccountContactRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Account Contact Roles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountContactRolesConnection """ @@ -55205,15 +55707,15 @@ type SalesforceQuery { """ listEmails(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListEmailConnectionFilter """ + """ filter: SalesforceListEmailConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListEmailSortByFieldEnum """ + """ sortByField: SalesforceListEmailSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of List Emails to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceListEmailsConnection """ @@ -55221,15 +55723,15 @@ type SalesforceQuery { """ recordTypes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceRecordTypeConnectionFilter """ + """ filter: SalesforceRecordTypeConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceRecordTypeSortByFieldEnum """ + """ sortByField: SalesforceRecordTypeSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Record Types to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceRecordTypesConnection """ @@ -55237,15 +55739,15 @@ type SalesforceQuery { """ topicFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicFeedConnectionFilter """ + """ filter: SalesforceTopicFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicFeedSortByFieldEnum """ + """ sortByField: SalesforceTopicFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Topic Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicFeedsConnection """ @@ -55253,15 +55755,15 @@ type SalesforceQuery { """ contentWorkspaceSubscriptions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceSubscriptionConnectionFilter """ + """ filter: SalesforceContentWorkspaceSubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum """ + """ sortByField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Content Workspace Subscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentWorkspaceSubscriptionsConnection """ @@ -55269,15 +55771,15 @@ type SalesforceQuery { """ caseTeamRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamRoleConnectionFilter """ + """ filter: SalesforceCaseTeamRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamRoleSortByFieldEnum """ + """ sortByField: SalesforceCaseTeamRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Case Team Member Roles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseTeamRolesConnection """ @@ -55285,15 +55787,15 @@ type SalesforceQuery { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Feed Attachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -55301,15 +55803,15 @@ type SalesforceQuery { """ tenantUsageEntitlements(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTenantUsageEntitlementConnectionFilter """ + """ filter: SalesforceTenantUsageEntitlementConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTenantUsageEntitlementSortByFieldEnum """ + """ sortByField: SalesforceTenantUsageEntitlementSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Tenant Usage Entitlements to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTenantUsageEntitlementsConnection """ @@ -55317,15 +55819,15 @@ type SalesforceQuery { """ contentDocumentHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentHistoryConnectionFilter """ + """ filter: SalesforceContentDocumentHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentHistorySortByFieldEnum """ + """ sortByField: SalesforceContentDocumentHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Content Document Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentHistorysConnection """ @@ -55333,15 +55835,15 @@ type SalesforceQuery { """ domainSites(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDomainSiteConnectionFilter """ + """ filter: SalesforceDomainSiteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDomainSiteSortByFieldEnum """ + """ sortByField: SalesforceDomainSiteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Custom URLs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDomainSitesConnection """ @@ -55349,15 +55851,15 @@ type SalesforceQuery { """ pricebookEntries(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePricebookEntryConnectionFilter """ + """ filter: SalesforcePricebookEntryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePricebookEntrySortByFieldEnum """ + """ sortByField: SalesforcePricebookEntrySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Price Book Entries to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePricebookEntrysConnection """ @@ -55365,15 +55867,15 @@ type SalesforceQuery { """ chatterExtensionConfigs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceChatterExtensionConfigConnectionFilter """ + """ filter: SalesforceChatterExtensionConfigConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceChatterExtensionConfigSortByFieldEnum """ + """ sortByField: SalesforceChatterExtensionConfigSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Chatter Extension Configurations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceChatterExtensionConfigsConnection """ @@ -55381,15 +55883,15 @@ type SalesforceQuery { """ campaignFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignFeedConnectionFilter """ + """ filter: SalesforceCampaignFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignFeedSortByFieldEnum """ + """ sortByField: SalesforceCampaignFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Campaign Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignFeedsConnection """ @@ -55397,15 +55899,15 @@ type SalesforceQuery { """ listEmailShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListEmailShareConnectionFilter """ + """ filter: SalesforceListEmailShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListEmailShareSortByFieldEnum """ + """ sortByField: SalesforceListEmailShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of List Email Shares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceListEmailSharesConnection """ @@ -55413,15 +55915,15 @@ type SalesforceQuery { """ fiscalYearSettingsPlural(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFiscalYearSettingsConnectionFilter """ + """ filter: SalesforceFiscalYearSettingsConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFiscalYearSettingsSortByFieldEnum """ + """ sortByField: SalesforceFiscalYearSettingsSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Fiscal Year Settings to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFiscalYearSettingssConnection """ @@ -55429,15 +55931,15 @@ type SalesforceQuery { """ categoryDatas(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCategoryDataConnectionFilter """ + """ filter: SalesforceCategoryDataConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCategoryDataSortByFieldEnum """ + """ sortByField: SalesforceCategoryDataSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Category Datas to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCategoryDatasConnection """ @@ -55445,15 +55947,15 @@ type SalesforceQuery { """ contentDistributions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ + """ filter: SalesforceContentDistributionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Content Deliveries to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDistributionsConnection """ @@ -55461,15 +55963,15 @@ type SalesforceQuery { """ accountPartners(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountPartnerConnectionFilter """ + """ filter: SalesforceAccountPartnerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountPartnerSortByFieldEnum """ + """ sortByField: SalesforceAccountPartnerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Account Partners to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountPartnersConnection """ @@ -55477,15 +55979,15 @@ type SalesforceQuery { """ contentFolders(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderConnectionFilter """ + """ filter: SalesforceContentFolderConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderSortByFieldEnum """ + """ sortByField: SalesforceContentFolderSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Content Folders to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentFoldersConnection """ @@ -55493,15 +55995,15 @@ type SalesforceQuery { """ todayGoalShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTodayGoalShareConnectionFilter """ + """ filter: SalesforceTodayGoalShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTodayGoalShareSortByFieldEnum """ + """ sortByField: SalesforceTodayGoalShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Goal Shares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTodayGoalSharesConnection """ @@ -55509,15 +56011,15 @@ type SalesforceQuery { """ idpEventLogs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdpEventLogConnectionFilter """ + """ filter: SalesforceIdpEventLogConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdpEventLogSortByFieldEnum """ + """ sortByField: SalesforceIdpEventLogSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Identity Provider Event Logs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceIdpEventLogsConnection """ @@ -55525,15 +56027,15 @@ type SalesforceQuery { """ flowInterviews(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowInterviewConnectionFilter """ + """ filter: SalesforceFlowInterviewConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowInterviewSortByFieldEnum """ + """ sortByField: SalesforceFlowInterviewSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Flow Interviews to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowInterviewsConnection """ @@ -55541,15 +56043,15 @@ type SalesforceQuery { """ solutionStatuses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionStatusConnectionFilter """ + """ filter: SalesforceSolutionStatusConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionStatusSortByFieldEnum """ + """ sortByField: SalesforceSolutionStatusSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Solution Status Values to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSolutionStatussConnection """ @@ -55557,15 +56059,15 @@ type SalesforceQuery { """ staticResources(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStaticResourceConnectionFilter """ + """ filter: SalesforceStaticResourceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStaticResourceSortByFieldEnum """ + """ sortByField: SalesforceStaticResourceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Static Resources to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceStaticResourcesConnection """ @@ -55573,15 +56075,15 @@ type SalesforceQuery { """ solutionFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionFeedConnectionFilter """ + """ filter: SalesforceSolutionFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionFeedSortByFieldEnum """ + """ sortByField: SalesforceSolutionFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Solution Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSolutionFeedsConnection """ @@ -55589,15 +56091,15 @@ type SalesforceQuery { """ eventRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventRelationConnectionFilter """ + """ filter: SalesforceEventRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventRelationSortByFieldEnum """ + """ sortByField: SalesforceEventRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Event Relations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventRelationsConnection """ @@ -55605,15 +56107,15 @@ type SalesforceQuery { """ cronJobDetails(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCronJobDetailConnectionFilter """ + """ filter: SalesforceCronJobDetailConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCronJobDetailSortByFieldEnum """ + """ sortByField: SalesforceCronJobDetailSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Cron Jobs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCronJobDetailsConnection """ @@ -55621,15 +56123,15 @@ type SalesforceQuery { """ pricebook2Histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePricebook2HistoryConnectionFilter """ + """ filter: SalesforcePricebook2HistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePricebook2HistorySortByFieldEnum """ + """ sortByField: SalesforcePricebook2HistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Price Book Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePricebook2HistorysConnection """ @@ -55637,15 +56139,15 @@ type SalesforceQuery { """ caseShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseShareConnectionFilter """ + """ filter: SalesforceCaseShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseShareSortByFieldEnum """ + """ sortByField: SalesforceCaseShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Case Shares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseSharesConnection """ @@ -55653,15 +56155,15 @@ type SalesforceQuery { """ webLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceWebLinkConnectionFilter """ + """ filter: SalesforceWebLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceWebLinkSortByFieldEnum """ + """ sortByField: SalesforceWebLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Custom Button or Links to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceWebLinksConnection """ @@ -55669,15 +56171,15 @@ type SalesforceQuery { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Feed Poll Choices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -55685,15 +56187,15 @@ type SalesforceQuery { """ orderItemHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemHistoryConnectionFilter """ + """ filter: SalesforceOrderItemHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemHistorySortByFieldEnum """ + """ sortByField: SalesforceOrderItemHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Order Product Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderItemHistorysConnection """ @@ -55701,15 +56203,15 @@ type SalesforceQuery { """ leads(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadConnectionFilter """ + """ filter: SalesforceLeadConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadSortByFieldEnum """ + """ sortByField: SalesforceLeadSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Leads to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadsConnection """ @@ -55717,15 +56219,15 @@ type SalesforceQuery { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Feed Comments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -55733,15 +56235,15 @@ type SalesforceQuery { """ externalDataSources(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceExternalDataSourceConnectionFilter """ + """ filter: SalesforceExternalDataSourceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceExternalDataSourceSortByFieldEnum """ + """ sortByField: SalesforceExternalDataSourceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of External Data Sources to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceExternalDataSourcesConnection """ @@ -55749,15 +56251,15 @@ type SalesforceQuery { """ sites(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSiteConnectionFilter """ + """ filter: SalesforceSiteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSiteSortByFieldEnum """ + """ sortByField: SalesforceSiteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Sites to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSitesConnection """ @@ -55765,15 +56267,15 @@ type SalesforceQuery { """ loginIps(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLoginIpConnectionFilter """ + """ filter: SalesforceLoginIpConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLoginIpSortByFieldEnum """ + """ sortByField: SalesforceLoginIpSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Login IPs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLoginIpsConnection """ @@ -55781,15 +56283,15 @@ type SalesforceQuery { """ installedMobileApps(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceInstalledMobileAppConnectionFilter """ + """ filter: SalesforceInstalledMobileAppConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceInstalledMobileAppSortByFieldEnum """ + """ sortByField: SalesforceInstalledMobileAppSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Installed Mobile Apps to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceInstalledMobileAppsConnection """ @@ -55797,15 +56299,15 @@ type SalesforceQuery { """ emailDomainKeys(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailDomainKeyConnectionFilter """ + """ filter: SalesforceEmailDomainKeyConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailDomainKeySortByFieldEnum """ + """ sortByField: SalesforceEmailDomainKeySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Email Domain Keys to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailDomainKeysConnection """ @@ -55813,15 +56315,15 @@ type SalesforceQuery { """ chatterActivities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceChatterActivityConnectionFilter """ + """ filter: SalesforceChatterActivityConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceChatterActivitySortByFieldEnum """ + """ sortByField: SalesforceChatterActivitySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Chatter Activities to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceChatterActivitysConnection """ @@ -55829,15 +56331,15 @@ type SalesforceQuery { """ caseHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseHistoryConnectionFilter """ + """ filter: SalesforceCaseHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseHistorySortByFieldEnum """ + """ sortByField: SalesforceCaseHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Case Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseHistorysConnection """ @@ -55845,15 +56347,15 @@ type SalesforceQuery { """ loginHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLoginHistoryConnectionFilter """ + """ filter: SalesforceLoginHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLoginHistorySortByFieldEnum """ + """ sortByField: SalesforceLoginHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Login Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLoginHistorysConnection """ @@ -55861,15 +56363,15 @@ type SalesforceQuery { """ pricebook2s(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePricebook2ConnectionFilter """ + """ filter: SalesforcePricebook2ConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePricebook2SortByFieldEnum """ + """ sortByField: SalesforcePricebook2SortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Price Books to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePricebook2sConnection """ @@ -55877,15 +56379,15 @@ type SalesforceQuery { """ userProvMockTargets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvMockTargetConnectionFilter """ + """ filter: SalesforceUserProvMockTargetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvMockTargetSortByFieldEnum """ + """ sortByField: SalesforceUserProvMockTargetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of User Provisioning Mock Targets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvMockTargetsConnection """ @@ -55893,15 +56395,15 @@ type SalesforceQuery { """ processNodes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessNodeConnectionFilter """ + """ filter: SalesforceProcessNodeConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessNodeSortByFieldEnum """ + """ sortByField: SalesforceProcessNodeSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Process Nodes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessNodesConnection """ @@ -55909,15 +56411,15 @@ type SalesforceQuery { """ orderItemFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemFeedConnectionFilter """ + """ filter: SalesforceOrderItemFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemFeedSortByFieldEnum """ + """ sortByField: SalesforceOrderItemFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Order Product Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderItemFeedsConnection """ @@ -55925,15 +56427,15 @@ type SalesforceQuery { """ listViewCharts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListViewChartConnectionFilter """ + """ filter: SalesforceListViewChartConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListViewChartSortByFieldEnum """ + """ sortByField: SalesforceListViewChartSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of List View Charts to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceListViewChartsConnection """ @@ -55941,15 +56443,15 @@ type SalesforceQuery { """ objectPermissionsPlural(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceObjectPermissionsConnectionFilter """ + """ filter: SalesforceObjectPermissionsConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceObjectPermissionsSortByFieldEnum """ + """ sortByField: SalesforceObjectPermissionsSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Object Permissions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceObjectPermissionssConnection """ @@ -55957,15 +56459,15 @@ type SalesforceQuery { """ processInstanceSteps(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceStepConnectionFilter """ + """ filter: SalesforceProcessInstanceStepConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceStepSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceStepSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Process Instance Steps to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstanceStepsConnection """ @@ -55973,15 +56475,15 @@ type SalesforceQuery { """ caseTeamTemplates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamTemplateConnectionFilter """ + """ filter: SalesforceCaseTeamTemplateConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamTemplateSortByFieldEnum """ + """ sortByField: SalesforceCaseTeamTemplateSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Predefined Case Teams to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseTeamTemplatesConnection """ @@ -55989,15 +56491,15 @@ type SalesforceQuery { """ apexTestResultLimitsPlural(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestResultLimitsConnectionFilter """ + """ filter: SalesforceApexTestResultLimitsConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestResultLimitsSortByFieldEnum """ + """ sortByField: SalesforceApexTestResultLimitsSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Apex Test Result Limits to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexTestResultLimitssConnection """ @@ -56005,15 +56507,15 @@ type SalesforceQuery { """ caseTeamTemplateMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamTemplateMemberConnectionFilter """ + """ filter: SalesforceCaseTeamTemplateMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamTemplateMemberSortByFieldEnum """ + """ sortByField: SalesforceCaseTeamTemplateMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Predefined Case Team Members to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseTeamTemplateMembersConnection """ @@ -56021,15 +56523,15 @@ type SalesforceQuery { """ waveCompatibilityCheckItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceWaveCompatibilityCheckItemConnectionFilter """ + """ filter: SalesforceWaveCompatibilityCheckItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceWaveCompatibilityCheckItemSortByFieldEnum """ + """ sortByField: SalesforceWaveCompatibilityCheckItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Wave Compatibility Check Items to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceWaveCompatibilityCheckItemsConnection """ @@ -56037,15 +56539,15 @@ type SalesforceQuery { """ groupMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGroupMemberConnectionFilter """ + """ filter: SalesforceGroupMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGroupMemberSortByFieldEnum """ + """ sortByField: SalesforceGroupMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Group Members to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceGroupMembersConnection """ @@ -56053,15 +56555,15 @@ type SalesforceQuery { """ caseTeamTemplateRecords(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamTemplateRecordConnectionFilter """ + """ filter: SalesforceCaseTeamTemplateRecordConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamTemplateRecordSortByFieldEnum """ + """ sortByField: SalesforceCaseTeamTemplateRecordSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Predefined Case Team Records to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseTeamTemplateRecordsConnection """ @@ -56069,15 +56571,15 @@ type SalesforceQuery { """ backgroundOperations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceBackgroundOperationConnectionFilter """ + """ filter: SalesforceBackgroundOperationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceBackgroundOperationSortByFieldEnum """ + """ sortByField: SalesforceBackgroundOperationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Background Operations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceBackgroundOperationsConnection """ @@ -56085,15 +56587,15 @@ type SalesforceQuery { """ ideaComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdeaCommentConnectionFilter """ + """ filter: SalesforceIdeaCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdeaCommentSortByFieldEnum """ + """ sortByField: SalesforceIdeaCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Idea Comments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceIdeaCommentsConnection """ @@ -56101,15 +56603,15 @@ type SalesforceQuery { """ opportunityCompetitors(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityCompetitorConnectionFilter """ + """ filter: SalesforceOpportunityCompetitorConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityCompetitorSortByFieldEnum """ + """ sortByField: SalesforceOpportunityCompetitorSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Opportunity: Competitors to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityCompetitorsConnection """ @@ -56117,15 +56619,15 @@ type SalesforceQuery { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Content Document Links to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -56133,15 +56635,15 @@ type SalesforceQuery { """ chatterExtensions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceChatterExtensionConnectionFilter """ + """ filter: SalesforceChatterExtensionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceChatterExtensionSortByFieldEnum """ + """ sortByField: SalesforceChatterExtensionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Chatter Extensions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceChatterExtensionsConnection """ @@ -56149,15 +56651,15 @@ type SalesforceQuery { """ orderHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderHistoryConnectionFilter """ + """ filter: SalesforceOrderHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderHistorySortByFieldEnum """ + """ sortByField: SalesforceOrderHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Order Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderHistorysConnection """ @@ -56165,15 +56667,15 @@ type SalesforceQuery { """ corsWhitelistEntries(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCorsWhitelistEntryConnectionFilter """ + """ filter: SalesforceCorsWhitelistEntryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCorsWhitelistEntrySortByFieldEnum """ + """ sortByField: SalesforceCorsWhitelistEntrySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CORS Whitelist Origins to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCorsWhitelistEntrysConnection """ @@ -56181,15 +56683,15 @@ type SalesforceQuery { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Feed Poll Votes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection """ @@ -56197,15 +56699,15 @@ type SalesforceQuery { """ secureAgentsClusters(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentsClusterConnectionFilter """ + """ filter: SalesforceSecureAgentsClusterConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentsClusterSortByFieldEnum """ + """ sortByField: SalesforceSecureAgentsClusterSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Secure Agent Clusters to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSecureAgentsClustersConnection """ @@ -56213,15 +56715,15 @@ type SalesforceQuery { """ quickTexts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQuickTextConnectionFilter """ + """ filter: SalesforceQuickTextConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQuickTextSortByFieldEnum """ + """ sortByField: SalesforceQuickTextSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Quick Texts to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceQuickTextsConnection """ @@ -56229,15 +56731,15 @@ type SalesforceQuery { """ product2Feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProduct2FeedConnectionFilter """ + """ filter: SalesforceProduct2FeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProduct2FeedSortByFieldEnum """ + """ sortByField: SalesforceProduct2FeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Product Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProduct2FeedsConnection """ @@ -56245,15 +56747,15 @@ type SalesforceQuery { """ contactFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactFeedConnectionFilter """ + """ filter: SalesforceContactFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactFeedSortByFieldEnum """ + """ sortByField: SalesforceContactFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Contact Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContactFeedsConnection """ @@ -56261,15 +56763,15 @@ type SalesforceQuery { """ secureAgents(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentConnectionFilter """ + """ filter: SalesforceSecureAgentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentSortByFieldEnum """ + """ sortByField: SalesforceSecureAgentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Secure Agents to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSecureAgentsConnection """ @@ -56277,15 +56779,15 @@ type SalesforceQuery { """ leadShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadShareConnectionFilter """ + """ filter: SalesforceLeadShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadShareSortByFieldEnum """ + """ sortByField: SalesforceLeadShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Lead Shares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadSharesConnection """ @@ -56293,15 +56795,15 @@ type SalesforceQuery { """ duplicateRecordSets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRecordSetConnectionFilter """ + """ filter: SalesforceDuplicateRecordSetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRecordSetSortByFieldEnum """ + """ sortByField: SalesforceDuplicateRecordSetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Duplicate Record Sets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDuplicateRecordSetsConnection """ @@ -56309,15 +56811,15 @@ type SalesforceQuery { """ contactCleanInfos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactCleanInfoConnectionFilter """ + """ filter: SalesforceContactCleanInfoConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactCleanInfoSortByFieldEnum """ + """ sortByField: SalesforceContactCleanInfoSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Contact Clean Infos to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContactCleanInfosConnection """ @@ -56325,15 +56827,15 @@ type SalesforceQuery { """ setupEntityAccesses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSetupEntityAccessConnectionFilter """ + """ filter: SalesforceSetupEntityAccessConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum """ + """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Setup Entity Accesses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSetupEntityAccesssConnection """ @@ -56341,15 +56843,15 @@ type SalesforceQuery { """ documents(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDocumentConnectionFilter """ + """ filter: SalesforceDocumentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDocumentSortByFieldEnum """ + """ sortByField: SalesforceDocumentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Documents to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDocumentsConnection """ @@ -56357,15 +56859,15 @@ type SalesforceQuery { """ opportunityFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityFeedConnectionFilter """ + """ filter: SalesforceOpportunityFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityFeedSortByFieldEnum """ + """ sortByField: SalesforceOpportunityFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Opportunity Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityFeedsConnection """ @@ -56373,15 +56875,15 @@ type SalesforceQuery { """ groups(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGroupConnectionFilter """ + """ filter: SalesforceGroupConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGroupSortByFieldEnum """ + """ sortByField: SalesforceGroupSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Groups to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceGroupsConnection """ @@ -56389,15 +56891,15 @@ type SalesforceQuery { """ contentWorkspaceDocs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceDocConnectionFilter """ + """ filter: SalesforceContentWorkspaceDocConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceDocSortByFieldEnum """ + """ sortByField: SalesforceContentWorkspaceDocSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Library Documents to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentWorkspaceDocsConnection """ @@ -56405,15 +56907,15 @@ type SalesforceQuery { """ platformCachePartitionTypes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePlatformCachePartitionTypeConnectionFilter """ + """ filter: SalesforcePlatformCachePartitionTypeConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePlatformCachePartitionTypeSortByFieldEnum """ + """ sortByField: SalesforcePlatformCachePartitionTypeSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Platform Cache Partition Types to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePlatformCachePartitionTypesConnection """ @@ -56421,15 +56923,15 @@ type SalesforceQuery { """ processInstanceNodes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceNodeConnectionFilter """ + """ filter: SalesforceProcessInstanceNodeConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceNodeSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceNodeSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Process Instance Nodes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstanceNodesConnection """ @@ -56437,15 +56939,15 @@ type SalesforceQuery { """ contractStatuses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractStatusConnectionFilter """ + """ filter: SalesforceContractStatusConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractStatusSortByFieldEnum """ + """ sortByField: SalesforceContractStatusSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Contract Status Values to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContractStatussConnection """ @@ -56453,15 +56955,15 @@ type SalesforceQuery { """ dandBCompanies(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDandBCompanyConnectionFilter """ + """ filter: SalesforceDandBCompanyConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDandBCompanySortByFieldEnum """ + """ sortByField: SalesforceDandBCompanySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of D&B Companies to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDandBCompanysConnection """ @@ -56469,15 +56971,15 @@ type SalesforceQuery { """ userProvisioningLogs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningLogConnectionFilter """ + """ filter: SalesforceUserProvisioningLogConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningLogSortByFieldEnum """ + """ sortByField: SalesforceUserProvisioningLogSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of User Provisioning Logs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvisioningLogsConnection """ @@ -56485,15 +56987,15 @@ type SalesforceQuery { """ transactionSecurityPolicies(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTransactionSecurityPolicyConnectionFilter """ + """ filter: SalesforceTransactionSecurityPolicyConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTransactionSecurityPolicySortByFieldEnum """ + """ sortByField: SalesforceTransactionSecurityPolicySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Transaction Security Policies to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTransactionSecurityPolicysConnection """ @@ -56501,15 +57003,15 @@ type SalesforceQuery { """ loginGeos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLoginGeoConnectionFilter """ + """ filter: SalesforceLoginGeoConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLoginGeoSortByFieldEnum """ + """ sortByField: SalesforceLoginGeoSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Login Geo Datas to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLoginGeosConnection """ @@ -56517,15 +57019,15 @@ type SalesforceQuery { """ caseStatuses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseStatusConnectionFilter """ + """ filter: SalesforceCaseStatusConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseStatusSortByFieldEnum """ + """ sortByField: SalesforceCaseStatusSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Case Status Values to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseStatussConnection """ @@ -56533,15 +57035,15 @@ type SalesforceQuery { """ pushTopics(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePushTopicConnectionFilter """ + """ filter: SalesforcePushTopicConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePushTopicSortByFieldEnum """ + """ sortByField: SalesforcePushTopicSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Push Topics to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePushTopicsConnection """ @@ -56549,15 +57051,15 @@ type SalesforceQuery { """ holidays(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceHolidayConnectionFilter """ + """ filter: SalesforceHolidayConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceHolidaySortByFieldEnum """ + """ sortByField: SalesforceHolidaySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Holidays to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceHolidaysConnection """ @@ -56565,15 +57067,15 @@ type SalesforceQuery { """ contractHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractHistoryConnectionFilter """ + """ filter: SalesforceContractHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractHistorySortByFieldEnum """ + """ sortByField: SalesforceContractHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Contract Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContractHistorysConnection """ @@ -56581,15 +57083,15 @@ type SalesforceQuery { """ emailServicesAddresses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailServicesAddressConnectionFilter """ + """ filter: SalesforceEmailServicesAddressConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailServicesAddressSortByFieldEnum """ + """ sortByField: SalesforceEmailServicesAddressSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Email Services Addresses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailServicesAddresssConnection """ @@ -56597,15 +57099,15 @@ type SalesforceQuery { """ macros(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroConnectionFilter """ + """ filter: SalesforceMacroConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroSortByFieldEnum """ + """ sortByField: SalesforceMacroSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Macros to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceMacrosConnection """ @@ -56613,15 +57115,15 @@ type SalesforceQuery { """ secureAgentPluginProperties(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentPluginPropertyConnectionFilter """ + """ filter: SalesforceSecureAgentPluginPropertyConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentPluginPropertySortByFieldEnum """ + """ sortByField: SalesforceSecureAgentPluginPropertySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Secure Agent Plug-in Properties to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSecureAgentPluginPropertysConnection """ @@ -56629,15 +57131,15 @@ type SalesforceQuery { """ fieldPermissionsPlural(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFieldPermissionsConnectionFilter """ + """ filter: SalesforceFieldPermissionsConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFieldPermissionsSortByFieldEnum """ + """ sortByField: SalesforceFieldPermissionsSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Field Permissions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFieldPermissionssConnection """ @@ -56645,15 +57147,15 @@ type SalesforceQuery { """ apexTestQueueItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestQueueItemConnectionFilter """ + """ filter: SalesforceApexTestQueueItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestQueueItemSortByFieldEnum """ + """ sortByField: SalesforceApexTestQueueItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Apex Test Queue Items to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexTestQueueItemsConnection """ @@ -56661,15 +57163,15 @@ type SalesforceQuery { """ stamps(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStampConnectionFilter """ + """ filter: SalesforceStampConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStampSortByFieldEnum """ + """ sortByField: SalesforceStampSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Stamps to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceStampsConnection """ @@ -56677,15 +57179,15 @@ type SalesforceQuery { """ streamingChannels(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStreamingChannelConnectionFilter """ + """ filter: SalesforceStreamingChannelConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStreamingChannelSortByFieldEnum """ + """ sortByField: SalesforceStreamingChannelSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Streaming Channels to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceStreamingChannelsConnection """ @@ -56693,15 +57195,15 @@ type SalesforceQuery { """ contentVersionComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionCommentConnectionFilter """ + """ filter: SalesforceContentVersionCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionCommentSortByFieldEnum """ + """ sortByField: SalesforceContentVersionCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Content Version Comments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionCommentsConnection """ @@ -56709,15 +57211,15 @@ type SalesforceQuery { """ matchingRuleItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMatchingRuleItemConnectionFilter """ + """ filter: SalesforceMatchingRuleItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMatchingRuleItemSortByFieldEnum """ + """ sortByField: SalesforceMatchingRuleItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Matching Rule Items to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceMatchingRuleItemsConnection """ @@ -56725,15 +57227,15 @@ type SalesforceQuery { """ userFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserFeedConnectionFilter """ + """ filter: SalesforceUserFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserFeedSortByFieldEnum """ + """ sortByField: SalesforceUserFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of User Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserFeedsConnection """ @@ -56741,15 +57243,15 @@ type SalesforceQuery { """ taskStatuses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskStatusConnectionFilter """ + """ filter: SalesforceTaskStatusConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskStatusSortByFieldEnum """ + """ sortByField: SalesforceTaskStatusSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Task Status Values to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTaskStatussConnection """ @@ -56757,15 +57259,15 @@ type SalesforceQuery { """ campaignHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignHistoryConnectionFilter """ + """ filter: SalesforceCampaignHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignHistorySortByFieldEnum """ + """ sortByField: SalesforceCampaignHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Campaign Field Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignHistorysConnection """ @@ -56773,15 +57275,15 @@ type SalesforceQuery { """ tasks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ + """ filter: SalesforceTaskConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ + """ sortByField: SalesforceTaskSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Tasks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTasksConnection """ @@ -56789,15 +57291,15 @@ type SalesforceQuery { """ userProvisioningConfigs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningConfigConnectionFilter """ + """ filter: SalesforceUserProvisioningConfigConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningConfigSortByFieldEnum """ + """ sortByField: SalesforceUserProvisioningConfigSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of User Provisioning Configs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvisioningConfigsConnection """ @@ -56805,15 +57307,15 @@ type SalesforceQuery { """ declinedEventRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDeclinedEventRelationConnectionFilter """ + """ filter: SalesforceDeclinedEventRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDeclinedEventRelationSortByFieldEnum """ + """ sortByField: SalesforceDeclinedEventRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Declined Event Relations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDeclinedEventRelationsConnection """ @@ -56821,15 +57323,15 @@ type SalesforceQuery { """ duplicateRecordItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRecordItemConnectionFilter """ + """ filter: SalesforceDuplicateRecordItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum """ + """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Duplicate Record Items to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDuplicateRecordItemsConnection """ @@ -56837,15 +57339,15 @@ type SalesforceQuery { """ permissionSetAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetAssignmentConnectionFilter """ + """ filter: SalesforcePermissionSetAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetAssignmentSortByFieldEnum """ + """ sortByField: SalesforcePermissionSetAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Permission Set Assignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePermissionSetAssignmentsConnection """ @@ -56853,15 +57355,15 @@ type SalesforceQuery { """ campaignShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignShareConnectionFilter """ + """ filter: SalesforceCampaignShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignShareSortByFieldEnum """ + """ sortByField: SalesforceCampaignShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Campaign Shares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignSharesConnection """ @@ -56869,15 +57371,15 @@ type SalesforceQuery { """ searchActivities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSearchActivityConnectionFilter """ + """ filter: SalesforceSearchActivityConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSearchActivitySortByFieldEnum """ + """ sortByField: SalesforceSearchActivitySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SearchActivities to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSearchActivitysConnection """ @@ -56885,15 +57387,15 @@ type SalesforceQuery { """ asyncApexJobs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAsyncApexJobConnectionFilter """ + """ filter: SalesforceAsyncApexJobConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAsyncApexJobSortByFieldEnum """ + """ sortByField: SalesforceAsyncApexJobSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Apex Jobs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAsyncApexJobsConnection """ @@ -56901,15 +57403,15 @@ type SalesforceQuery { """ userListViewCriterions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserListViewCriterionConnectionFilter """ + """ filter: SalesforceUserListViewCriterionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserListViewCriterionSortByFieldEnum """ + """ sortByField: SalesforceUserListViewCriterionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of User List View Criterias to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserListViewCriterionsConnection """ @@ -56917,15 +57419,15 @@ type SalesforceQuery { """ orderItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemConnectionFilter """ + """ filter: SalesforceOrderItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemSortByFieldEnum """ + """ sortByField: SalesforceOrderItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Order Products to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderItemsConnection """ @@ -56933,15 +57435,15 @@ type SalesforceQuery { """ emailMessages(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ + """ filter: SalesforceEmailMessageConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Email Messages to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailMessagesConnection """ @@ -56949,15 +57451,15 @@ type SalesforceQuery { """ collaborationGroupRecords(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupRecordConnectionFilter """ + """ filter: SalesforceCollaborationGroupRecordConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Group Records to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupRecordsConnection """ @@ -56965,15 +57467,15 @@ type SalesforceQuery { """ apexLogs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexLogConnectionFilter """ + """ filter: SalesforceApexLogConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexLogSortByFieldEnum """ + """ sortByField: SalesforceApexLogSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Apex Debug Logs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexLogsConnection """ @@ -56981,15 +57483,15 @@ type SalesforceQuery { """ secureAgentPlugins(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentPluginConnectionFilter """ + """ filter: SalesforceSecureAgentPluginConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentPluginSortByFieldEnum """ + """ sortByField: SalesforceSecureAgentPluginSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Secure Agent Plug-ins to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSecureAgentPluginsConnection """ @@ -56997,15 +57499,15 @@ type SalesforceQuery { """ duplicateRules(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRuleConnectionFilter """ + """ filter: SalesforceDuplicateRuleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRuleSortByFieldEnum """ + """ sortByField: SalesforceDuplicateRuleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Duplicate Rules to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDuplicateRulesConnection """ @@ -57013,15 +57515,15 @@ type SalesforceQuery { """ scontrols(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceScontrolConnectionFilter """ + """ filter: SalesforceScontrolConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceScontrolSortByFieldEnum """ + """ sortByField: SalesforceScontrolSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Custom S-Controls to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceScontrolsConnection """ @@ -57029,15 +57531,15 @@ type SalesforceQuery { """ feedRevisions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedRevisionConnectionFilter """ + """ filter: SalesforceFeedRevisionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedRevisionSortByFieldEnum """ + """ sortByField: SalesforceFeedRevisionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Feed Revisions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedRevisionsConnection """ @@ -57045,15 +57547,15 @@ type SalesforceQuery { """ leadFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadFeedConnectionFilter """ + """ filter: SalesforceLeadFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadFeedSortByFieldEnum """ + """ sortByField: SalesforceLeadFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Lead Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadFeedsConnection """ @@ -57061,15 +57563,15 @@ type SalesforceQuery { """ lightningComponentBundles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLightningComponentBundleConnectionFilter """ + """ filter: SalesforceLightningComponentBundleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLightningComponentBundleSortByFieldEnum """ + """ sortByField: SalesforceLightningComponentBundleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LightningComponentBundles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLightningComponentBundlesConnection """ @@ -57077,15 +57579,15 @@ type SalesforceQuery { """ topicAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ + """ filter: SalesforceTopicAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Records to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicAssignmentsConnection """ @@ -57093,15 +57595,15 @@ type SalesforceQuery { """ dataAssessmentMetrics(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDataAssessmentMetricConnectionFilter """ + """ filter: SalesforceDataAssessmentMetricConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDataAssessmentMetricSortByFieldEnum """ + """ sortByField: SalesforceDataAssessmentMetricSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Data Assessment Metrics to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDataAssessmentMetricsConnection """ @@ -57109,15 +57611,15 @@ type SalesforceQuery { """ apexTestRunResults(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestRunResultConnectionFilter """ + """ filter: SalesforceApexTestRunResultConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestRunResultSortByFieldEnum """ + """ sortByField: SalesforceApexTestRunResultSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Apex Test Run Results to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexTestRunResultsConnection """ @@ -57125,15 +57627,15 @@ type SalesforceQuery { """ auraDefinitionBundles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuraDefinitionBundleConnectionFilter """ + """ filter: SalesforceAuraDefinitionBundleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ + """ sortByCustomField: String, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuraDefinitionBundleSortByFieldEnum """ + """ sortByField: SalesforceAuraDefinitionBundleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Lightning Component Bundles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAuraDefinitionBundlesConnection """ @@ -57162,7 +57664,8 @@ type SalesforceQuery { } ``` """ - soql(query: String!): SalesforceSoqlResult! @deprecated(reason: "This field is still in beta and has many rough edges.") + soql(query: String!): SalesforceSoqlResult! + @deprecated(reason: "This field is still in beta and has many rough edges.") """ Make a REST API call to the Salesforce API. @@ -57216,7 +57719,7 @@ type NpmOverallDownloadData { """ period(""" The later date for download stats, e.g. 2018-12-07. Must be after `startDate` - """ endDate: String! """ + """ endDate: String!, """ The earlier date for download stats, e.g. 2018-12-06. Must be before `endDate` """ startDate: String!): NpmOverallDownloadPeriodData """ @@ -57321,7 +57824,7 @@ type NpmPackageDownloadData { """ period(""" The later date for download stats, e.g. 2018-12-07. Must be after `startDate` - """ endDate: String! """ + """ endDate: String!, """ The earlier date for download stats, e.g. 2018-12-06. Must be before `endDate` """ startDate: String!): NpmPackageDownloadPeriodData """ @@ -57638,11 +58141,11 @@ type NetlifyPassthroughQuery { """ get(""" Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -58451,7 +58954,7 @@ type NetlifyQuery { """ sites(""" Site name to filter for XXX TODO FIXME - """ filter: String """ + """ filter: String, """ Site name to filter for """ name: String): [NetlifySite!] """ @@ -58463,7 +58966,7 @@ type NetlifyQuery { """ domainAvailability(""" Domain to search for (e.g. example.com) - """ domain: String! """ + """ domain: String!, """ Netlify account id """ accountId: String!): NetlifyDomainAvailability! """ @@ -58489,11 +58992,11 @@ type MixpanelPassthroughQuery { """ get(""" Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -58525,11 +59028,11 @@ type MeetupPassthroughQuery { """ get(""" Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -58561,11 +59064,11 @@ type MailchimpPassthroughQuery { """ get(""" Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -58699,23 +59202,23 @@ type LogdnaQuery { """ export(""" Allows user to set the subject of the email - """ emailSubject: String """ + """ emailSubject: String, """ Specifies an email that the results will be sent to, by default results are streamed back. - """ email: String """ + """ email: String, """ If total results was 654 lines, tail would return the last 100 lines and head would return the first 100 lines. - """ prefer: LogdnaExportPreferEnumArg """ + """ prefer: LogdnaExportPreferEnumArg, """ Search query. Same format as LogDNA's log viewer. See [https://docs.logdna.com/docs/search](https://docs.logdna.com/docs/search) - """ query: String """ + """ query: String, """ List of levels to filter by. - """ levels: [String!] """ + """ levels: [String!], """ List of apps to filter by. - """ apps: [String!] """ + """ apps: [String!], """ List of hosts to filter by. - """ hosts: [String!] """ + """ hosts: [String!], """ Number of results to return. Depends on your plan, but generally the max is 10,000. Defaults to 100 - """ first: Int """ + """ first: Int, """ End time for logs to export, in Unix timestamp in seconds or milliseconds. - """ to: Float! """ + """ to: Float!, """ Start time for logs to export, in Unix timestamp in seconds or milliseconds. """ from: Float!): LogdnaLogLinesConnection! } @@ -58771,9 +59274,9 @@ type IntercomQuery { """ user(""" The email you have defined for the user. - """ email: String """ + """ email: String, """ The user id you have defined for the user. - """ userId: String """ + """ userId: String, """ The canonical user id from Intercom. """ intercomId: String): IntercomUser """ @@ -58781,9 +59284,9 @@ type IntercomQuery { """ company(""" The name you have defined for the user. - """ name: String """ + """ name: String, """ The company_id you have defined for the user. - """ companyId: String """ + """ companyId: String, """ The canonical company id from Intercom. """ intercomId: String): IntercomCompany """ @@ -58791,7 +59294,7 @@ type IntercomQuery { """ conversation(""" If true, retrieves conversation messages in plain text - """ displayAsPlaintext: Boolean """ + """ displayAsPlaintext: Boolean, """ id of the conversation """ id: String!): IntercomConversation """ @@ -58799,11 +59302,11 @@ type IntercomQuery { """ conversations(""" When true, retrieves conversation messages in plain text. Defaults to false. - """ displayAsPlaintext: Boolean """ + """ displayAsPlaintext: Boolean, """ Return the conversations before a timestamp - """ before: Int """ + """ before: Int, """ What field to sort the results by. Defaults to UPDATED_AT. - """ sortByField: IntercomConversationSortByField """ + """ sortByField: IntercomConversationSortByField, """ Return the conversations in ascending or descending order. Defaults to DESC. """ orderBy: IntercomSortOrderBy): IntercomConversationsConnection """ @@ -58813,13 +59316,13 @@ type IntercomQuery { """ conversationsByAdmins(""" When true, retrieves conversation messages in plain text. Defaults to false. - """ displayAsPlaintext: Boolean """ + """ displayAsPlaintext: Boolean, """ Defaults to true. When true, fetches just open conversations. When false, fetches just closed conversations. - """ open: Boolean """ + """ open: Boolean, """ The id of the admin. If not provided, defaults to unassigned. - """ adminId: String """ + """ adminId: String, """ What field to sort the results by. Defaults to UPDATED_AT. - """ sortByField: IntercomConversationSortByField """ + """ sortByField: IntercomConversationSortByField, """ Return the conversations in ascending or descending order. Defaults to DESC. """ orderBy: IntercomSortOrderBy): IntercomConversationsConnection """ @@ -58829,17 +59332,17 @@ type IntercomQuery { """ conversationsByUsers(""" When true, retrieves conversation messages in plain text. Defaults to false. - """ displayAsPlaintext: Boolean """ + """ displayAsPlaintext: Boolean, """ Defaults to false. When true, fetches just unread conversations. - """ unread: Boolean """ + """ unread: Boolean, """ The id of the user. Provide only one of userId, email, or intercomUserId. - """ intercomUserId: String """ + """ intercomUserId: String, """ Your email for the user. Provide only one of userId, email, or intercomUserId. - """ email: String """ + """ email: String, """ Your user_id for the user. Provide only one of userId, email, or intercomUserId. - """ userId: String """ + """ userId: String, """ What field to sort the results by. Defaults to UPDATED_AT. - """ sortByField: IntercomConversationSortByField """ + """ sortByField: IntercomConversationSortByField, """ Return the conversations in ascending or descending order. Defaults to DESC. """ orderBy: IntercomSortOrderBy): IntercomConversationsConnection """ @@ -58847,17 +59350,17 @@ type IntercomQuery { """ users(""" Filter by segment, only provide one of tagId or segmentId - """ segmentId: String """ + """ segmentId: String, """ Filter by tag, only provide one of tagId or segmentId - """ tagId: String """ + """ tagId: String, """ Limit results to users that were created in that last number of days - """ createdDaysAgo: Int """ + """ createdDaysAgo: Int, """ What field to sort the results by. Defaults to CREATED_AT. - """ sortByField: IntercomUsersSortByField """ + """ sortByField: IntercomUsersSortByField, """ Return the users in ascending or descending order. Defaults to DESC. - """ orderBy: IntercomSortOrderBy """ + """ orderBy: IntercomSortOrderBy, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Number of user to fetch, maximum is 60 """ first: Int): IntercomUsersConnection """ @@ -58869,13 +59372,13 @@ type IntercomQuery { """ events(""" Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Get events by the Intercom-defiend user id. - """ intercomUserId: String """ + """ intercomUserId: String, """ Get events by the email you have defined for the user. - """ email: String """ + """ email: String, """ Get events by the user id you have defined for the user. - """ userId: String """ + """ userId: String, """ Number of events to fetch, defaults to 50 """ first: Int): IntercomEventssConnection """ @@ -58883,9 +59386,9 @@ type IntercomQuery { """ eventsSummary(""" Get events by the Intercom-defiend user id. - """ intercomUserId: String """ + """ intercomUserId: String, """ Get events by the email you have defined for the user. - """ email: String """ + """ email: String, """ Get events by the user id you have defined for the user. """ userId: String): [IntercomEventSummary!] """ @@ -58893,7 +59396,7 @@ type IntercomQuery { """ tag(""" The id of the tag. Only provide one of name or id. - """ id: String """ + """ id: String, """ The name of the tag. Only provide one of name or id. """ name: String): IntercomTag """ @@ -58915,11 +59418,11 @@ type HubspotPassthroughQuery { """ get(""" Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -60580,7 +61083,7 @@ type HubspotContact { """ engagements(""" Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Number of engagments to fetch. Defaults to 10. Maximum is 100. """ first: Int): HubspotEngagementsConnection! } @@ -61083,7 +61586,7 @@ type HubspotCompany { """ contacts(""" Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Number of contacts to fetch, maximum is 100. Defaults to 20. """ first: Int): HubspotContactsConnection } @@ -61101,7 +61604,7 @@ type HubspotQuery { """ companies(""" Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Number of companies to fetch, maximum is 250. Defaults to 20. """ first: Int): HubspotCompaniesConnection """ @@ -61109,7 +61612,7 @@ type HubspotQuery { """ contact(""" Contact email. Must provide exactly one of id or email. - """ email: String """ + """ email: String, """ Contact id. Must provide exactly one of id or email. """ id: Int): HubspotContact! """ @@ -61117,7 +61620,7 @@ type HubspotQuery { """ contacts(""" Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Number of contacts to fetch, maximum is 100. Defaults to 20. """ first: Int): HubspotContactsConnection """ @@ -61129,7 +61632,7 @@ type HubspotQuery { """ deals(""" Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Number of deals to fetch, maximum is 250. Defaults to 100. """ first: Int): HubspotDealsConnection """ @@ -61137,7 +61640,7 @@ type HubspotQuery { """ engagements(""" Fetch results after the specified cursor. - """ after: String """ + """ after: String, """ Number of results to fetch. Defaults to 10, max is 100. """ first: Int): HubspotEngagementsConnection! """ @@ -61632,7 +62135,7 @@ type GoogleDiscoveryApiApis { type GoogleDiscoveryQuery { apis: GoogleDiscoveryApiApis! - api(version: String! name: String!): GoogleDiscoveryApiDetails! + api(version: String!, name: String!): GoogleDiscoveryApiDetails! } """ @@ -63079,17 +63582,17 @@ type GoogleDrive { | properties | collection | has | Public custom file properties. | | appProperties | collection | has | Private custom file properties. | | visibility | string | =, '!=' | The visibility level of the file. Valid values are anyoneCanFind, anyoneWithLink, domainCanFind, domainWithLink, and limited. | - """ q: String """ + """ q: String, """ Body of items (files/documents) to which the query applies. Supported bodies are `USER`, `DOMAIN`, `TEAM_DRIVE` and `ALL_TEAM_DRIVES`. Prefer `USER` or `TEAM_DRIVE` to `ALL_TEAM_DRIVES` for efficiency. Defaults to `USER` - """ corpora: GoogleDriveFilesCorporaEnum """ + """ corpora: GoogleDriveFilesCorporaEnum, """ Sort keys. Can sort by multiple different keys. Please note that there is a current limitation for users with approximately one million files in which the requested sort order is ignored. - """ orderBy: [GoogleDriveFilesOrderByEnum!] """ + """ orderBy: [GoogleDriveFilesOrderByEnum!], """ The maximum number of files to return. Partial or empty result pages are possible even before the end of the files list has been reached. Acceptable values are 1 to 1000, inclusive. Defaults to 10. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Spaces to query within the corpus. - """ spaces: [GoogleDriveFilesSpacesEnum!] """ + """ spaces: [GoogleDriveFilesSpacesEnum!], """ ID of Team Drive to search """ teamDriveId: String): GoogleDriveFilesConnection! } @@ -63529,7 +64032,7 @@ type GoogleComputeInstances { Google Compute Engine """ type GoogleComputeEngine { - instances(zone: String! projectId: String!): GoogleComputeInstances! + instances(zone: String!, projectId: String!): GoogleComputeInstances! } """ @@ -63669,17 +64172,17 @@ type GoogleCalendarCalendar { """ events(""" Time zone used in the response. The default is the time zone of the calendar. - """ timeZone: String """ + """ timeZone: String, """ Upper bound (exclusive) for an event's start time to filter by. Optional. The default is not to filter by start time. Must be an RFC3339 timestamp with mandatory time zone offset, e.g., 2011-06-03T10:00:00-07:00, 2011-06-03T10:00:00Z. Milliseconds may be provided but will be ignored. If timeMin is set, timeMax must be greater than timeMin. - """ timeMax: String """ + """ timeMax: String, """ Lower bound (inclusive) for an event's end time to filter by. Optional. The default is not to filter by end time. Must be an RFC3339 timestamp with mandatory time zone offset, e.g., 2011-06-03T10:00:00-07:00, 2011-06-03T10:00:00Z. Milliseconds may be provided but will be ignored. If timeMax is set, timeMin must be smaller than timeMax. - """ timeMin: String """ + """ timeMin: String, """ Whether to include deleted events (with status equals "cancelled") in the result. Cancelled instances of recurring events (but not the underlying recurring event) will still be included if showDeleted and singleEvents are both False. If showDeleted and singleEvents are both True, only single instances of deleted events (but not the underlying recurring events) are returned. The default is false. - """ showDeleted: Boolean """ + """ showDeleted: Boolean, """ Free text search terms to find events that match these terms in any field, except for extended properties. - """ q: String """ + """ q: String, """ Whether to expand recurring events into instances and only return single one-off events and instances of recurring events, but not the underlying recurring events themselves. The default is false unless ordering by startTime, in which case it must be true. - """ singleEvents: Boolean """ + """ singleEvents: Boolean, """ The order of the events returned in the result. The default is an unspecified, stable order. Acceptable values are: @@ -63687,9 +64190,9 @@ type GoogleCalendarCalendar { "startTime": Order by the start date/time (ascending). This is only available when querying single events (i.e. the parameter singleEvents is true) "updated": Order by last modification time (ascending). - """ orderBy: String """ + """ orderBy: String, """ Cursor for use in pagination. Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Number of events to return. """ first: Int): GoogleCalendarEventsConnection } @@ -64373,17 +64876,17 @@ type GoogleCalendarQuery { """ events(""" Time zone used in the response. The default is the time zone of the calendar. - """ timeZone: String """ + """ timeZone: String, """ Upper bound (exclusive) for an event's start time to filter by. Optional. The default is not to filter by start time. Must be an RFC3339 timestamp with mandatory time zone offset, e.g., 2011-06-03T10:00:00-07:00, 2011-06-03T10:00:00Z. Milliseconds may be provided but will be ignored. If timeMin is set, timeMax must be greater than timeMin. - """ timeMax: String """ + """ timeMax: String, """ Lower bound (inclusive) for an event's end time to filter by. Optional. The default is not to filter by end time. Must be an RFC3339 timestamp with mandatory time zone offset, e.g., 2011-06-03T10:00:00-07:00, 2011-06-03T10:00:00Z. Milliseconds may be provided but will be ignored. If timeMax is set, timeMin must be smaller than timeMax. - """ timeMin: String """ + """ timeMin: String, """ Whether to include deleted events (with status equals "cancelled") in the result. Cancelled instances of recurring events (but not the underlying recurring event) will still be included if showDeleted and singleEvents are both False. If showDeleted and singleEvents are both True, only single instances of deleted events (but not the underlying recurring events) are returned. The default is false. - """ showDeleted: Boolean """ + """ showDeleted: Boolean, """ Free text search terms to find events that match these terms in any field, except for extended properties. - """ q: String """ + """ q: String, """ Whether to expand recurring events into instances and only return single one-off events and instances of recurring events, but not the underlying recurring events themselves. The default is false unless ordering by startTime, in which case it must be true. - """ singleEvents: Boolean """ + """ singleEvents: Boolean, """ The order of the events returned in the result. The default is an unspecified, stable order. Acceptable values are: @@ -64391,11 +64894,11 @@ type GoogleCalendarQuery { "startTime": Order by the start date/time (ascending). This is only available when querying single events (i.e. the parameter singleEvents is true) "updated": Order by last modification time (ascending). - """ orderBy: String """ + """ orderBy: String, """ Cursor for use in pagination. Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Number of events to return. - """ first: Int """ + """ first: Int, """ Id of the calendar. Use "primary" to get the logged in user's primary calendar. """ calendarId: String!): GoogleCalendarEventsConnection """ @@ -64407,7 +64910,7 @@ type GoogleCalendarQuery { """ calendars(""" Cursor for use in pagination. Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Number of events to return. """ first: Int): GoogleCalendarCalendarsConnection } @@ -67032,7 +67535,7 @@ type GoogleSheetsSpreadsheet { Google Sheets """ type Sheets { - sheet(includeGridData: Boolean ranges: String id: String!): GoogleSheetsSpreadsheet! + sheet(includeGridData: Boolean, ranges: String, id: String!): GoogleSheetsSpreadsheet! } type GoogleMapsGeolocationAddressComponent { @@ -67098,7 +67601,7 @@ type GoogleMapsElevation { } type GoogleMaps { - elevation(path: GoogleMapsPathArg locations: [GoogleMapsLatLngArg!]): [GoogleMapsElevation!]! + elevation(path: GoogleMapsPathArg, locations: [GoogleMapsLatLngArg!]): [GoogleMapsElevation!]! """ Do a geolocation lookup by address or lat/lng """ @@ -67502,11 +68005,11 @@ type Gmail { "full": Returns the full email message data with body content parsed in the payload field; the raw field is not used. (default) "metadata": Returns only email message ID, labels, and email headers. "minimal": Returns only email message ID and labels; does not return the email headers, body, or payload. - """ format: String """ + """ format: String, """ Only return drafts matching the specified query. Supports the same query format as the Gmail search box. For example, "from:someuser@example.com rfc822msgid: is:unread". Parameter cannot be used when accessing the api using the gmail.metadata scope. - """ q: String """ + """ q: String, """ Returns the drafts in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ The maximum number of drafts to return. Defaults to 10. """ first: Int): GmailDraftsConnection! messages(""" @@ -67514,25 +68017,25 @@ type Gmail { "full": Returns the full email message data with body content parsed in the payload field; the raw field is not used. (default) "metadata": Returns only email message ID, labels, and email headers. "minimal": Returns only email message ID and labels; does not return the email headers, body, or payload. - """ format: String """ + """ format: String, """ Only return messages matching the specified query. Supports the same query format as the Gmail search box. For example, "from:someuser@example.com rfc822msgid: is:unread". Parameter cannot be used when accessing the api using the gmail.metadata scope. - """ q: String """ + """ q: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ The maximum number of messages to return. Defaults to 10. - """ first: Int labelIds: String): GmailMessagesConnection! + """ first: Int, labelIds: String): GmailMessagesConnection! messageThreads(""" The format to return. Options are "full": Returns the full email message data with body content parsed in the payload field; the raw field is not used. (default) "metadata": Returns only email message ID, labels, and email headers. "minimal": Returns only email message ID and labels; does not return the email headers, body, or payload. - """ format: String """ + """ format: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Only return messages matching the specified query. Supports the same query format as the Gmail search box. For example, "from:someuser@example.com rfc822msgid: is:unread". Parameter cannot be used when accessing the api using the gmail.metadata scope. - """ q: String """ + """ q: String, """ The maximum number of messages to return. Defaults to 10. - """ first: Int labelIds: String): GmailThreadsConnection! + """ first: Int, labelIds: String): GmailThreadsConnection! """ Return a draft by its id """ @@ -67547,12 +68050,14 @@ type Gmail { Return a thread by its id """ thread(id: String!): GmailThread! - threads(pageToken: String """ + threads(pageToken: String, """ Only return messages matching the specified query. Supports the same query format as the Gmail search box. For example, "from:someuser@example.com rfc822msgid: is:unread". Parameter cannot be used when accessing the api using the gmail.metadata scope. - """ q: String maxResults: Int labelIds: String): GmailListThreadsResponseDeprecated! @deprecated(reason: "Use messageThreads instead") - queryThreads(pageToken: String """ + """ q: String, maxResults: Int, labelIds: String): GmailListThreadsResponseDeprecated! + @deprecated(reason: "Use messageThreads instead") + queryThreads(pageToken: String, """ Only return messages matching the specified query. Supports the same query format as the Gmail search box. For example, "from:someuser@example.com rfc822msgid: is:unread". Parameter cannot be used when accessing the api using the gmail.metadata scope. - """ q: String maxResults: Int labelIds: String): GmailListThreadsResponseDeprecated! @deprecated(reason: "Use messageThreads instead") + """ q: String, maxResults: Int, labelIds: String): GmailListThreadsResponseDeprecated! + @deprecated(reason: "Use messageThreads instead") labels: GmailListLabelsResponse! } @@ -67821,11 +68326,11 @@ type GoogleAnalyticsRealtimePassthroughQuery { """ get(""" Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -67854,11 +68359,11 @@ type GoogleAnalyticsReportingPassthroughQuery { """ get(""" Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -69765,8 +70270,18 @@ type FacebookBusinessWhatsAppBusinessAccount { purchaseOrderNumber: String status: String timezoneId: String - messageTemplates(status: [FacebookBusinessStatusEnum!] nameOrContent: String name: String language: [String!] content: String category: [FacebookBusinessCategoryEnum!] before: String after: String first: Int): FacebookBusinessJSONConnection! - phoneNumbers(before: String after: String first: Int): FacebookBusinessJSONConnection! + messageTemplates( + status: [FacebookBusinessStatusEnum!] + nameOrContent: String + name: String + language: [String!] + content: String + category: [FacebookBusinessCategoryEnum!] + before: String + after: String + first: Int + ): FacebookBusinessJSONConnection! + phoneNumbers(before: String, after: String, first: Int): FacebookBusinessJSONConnection! } """ @@ -69867,8 +70382,21 @@ type FacebookBusinessOpenGraphObject { title: String updatedTime: String video: [JSON] - comments(since: String order: FacebookBusinessOrderEnum liveFilter: FacebookBusinessLiveFilterEnum filter: FacebookBusinessFilterEnum before: String after: String first: Int): FacebookBusinessCommentConnection! - reactions(type: FacebookBusinessTypeEnum before: String after: String first: Int): FacebookBusinessProfileConnection! + comments( + since: String + order: FacebookBusinessOrderEnum + liveFilter: FacebookBusinessLiveFilterEnum + filter: FacebookBusinessFilterEnum + before: String + after: String + first: Int + ): FacebookBusinessCommentConnection! + reactions( + type: FacebookBusinessTypeEnum + before: String + after: String + first: Int + ): FacebookBusinessProfileConnection! } """ @@ -69876,9 +70404,9 @@ type FacebookBusinessOpenGraphObject { """ type FacebookBusinessOpenGraphContext { id: String - friendsTaggedAt(before: String after: String first: Int): FacebookBusinessUserConnection! - musicListenFriends(before: String after: String first: Int): FacebookBusinessUserConnection! - videoWatchFriends(before: String after: String first: Int): FacebookBusinessUserConnection! + friendsTaggedAt(before: String, after: String, first: Int): FacebookBusinessUserConnection! + musicListenFriends(before: String, after: String, first: Int): FacebookBusinessUserConnection! + videoWatchFriends(before: String, after: String, first: Int): FacebookBusinessUserConnection! } """ @@ -69932,9 +70460,14 @@ type FacebookBusinessLink { name: String privacy: FacebookBusinessPrivacy via: JSON - likes(before: String after: String first: Int): FacebookBusinessProfileConnection! - reactions(type: FacebookBusinessTypeEnum before: String after: String first: Int): FacebookBusinessProfileConnection! - sharedPosts(before: String after: String first: Int): FacebookBusinessPostConnection! + likes(before: String, after: String, first: Int): FacebookBusinessProfileConnection! + reactions( + type: FacebookBusinessTypeEnum + before: String + after: String + first: Int + ): FacebookBusinessProfileConnection! + sharedPosts(before: String, after: String, first: Int): FacebookBusinessPostConnection! } """ @@ -69949,10 +70482,18 @@ type FacebookBusinessLifeEvent { startTime: String title: String updatedTime: String - comments(since: String order: FacebookBusinessOrderEnum liveFilter: FacebookBusinessLiveFilterEnum filter: FacebookBusinessFilterEnum before: String after: String first: Int): FacebookBusinessCommentConnection! - likes(before: String after: String first: Int): FacebookBusinessProfileConnection! - photos(before: String after: String first: Int): FacebookBusinessPhotoConnection! - sharedPosts(before: String after: String first: Int): FacebookBusinessPostConnection! + comments( + since: String + order: FacebookBusinessOrderEnum + liveFilter: FacebookBusinessLiveFilterEnum + filter: FacebookBusinessFilterEnum + before: String + after: String + first: Int + ): FacebookBusinessCommentConnection! + likes(before: String, after: String, first: Int): FacebookBusinessProfileConnection! + photos(before: String, after: String, first: Int): FacebookBusinessPhotoConnection! + sharedPosts(before: String, after: String, first: Int): FacebookBusinessPostConnection! } """ @@ -70010,9 +70551,20 @@ type FacebookBusinessBusinessImage { url: String url128: String width: Int - adPlacementValidationResults(before: String after: String first: Int): FacebookBusinessJSONConnection! - creativeAssetTags(businessId: String! before: String after: String first: Int): FacebookBusinessCreativeAssetTagConnection! - insights(timeRangeJson: JSON breakdowns: [FacebookBusinessBreakdownsEnum!] before: String after: String first: Int): FacebookBusinessJSONConnection! + adPlacementValidationResults(before: String, after: String, first: Int): FacebookBusinessJSONConnection! + creativeAssetTags( + businessId: String! + before: String + after: String + first: Int + ): FacebookBusinessCreativeAssetTagConnection! + insights( + timeRangeJson: JSON + breakdowns: [FacebookBusinessBreakdownsEnum!] + before: String + after: String + first: Int + ): FacebookBusinessJSONConnection! } """ @@ -70224,7 +70776,7 @@ type FacebookBusinessAdReportRun { scheduleId: String timeCompleted: Int timeRef: Int - insights(before: String after: String first: Int): FacebookBusinessAdsInsightsConnection! + insights(before: String, after: String, first: Int): FacebookBusinessAdsInsightsConnection! } """ @@ -70232,8 +70784,25 @@ type FacebookBusinessAdReportRun { """ type FacebookBusinessAdMonetizationProperty { id: String - adNetworkAnalytics(until: String since: String orderingType: FacebookBusinessOrderingTypeEnum orderingColumn: FacebookBusinessOrderingColumnEnum metrics: [FacebookBusinessMetricsEnum!]! filtersJson: [JSON!] breakdowns: [FacebookBusinessBreakdownsEnum!] aggregationPeriod: FacebookBusinessAggregationPeriodEnum before: String after: String first: Int): FacebookBusinessAdNetworkAnalyticsSyncQueryResultConnection! - adNetworkAnalyticsResults(queryIds: [String!] before: String after: String first: Int): FacebookBusinessAdNetworkAnalyticsAsyncQueryResultConnection! + adNetworkAnalytics( + until: String + since: String + orderingType: FacebookBusinessOrderingTypeEnum + orderingColumn: FacebookBusinessOrderingColumnEnum + metrics: [FacebookBusinessMetricsEnum!]! + filtersJson: [JSON!] + breakdowns: [FacebookBusinessBreakdownsEnum!] + aggregationPeriod: FacebookBusinessAggregationPeriodEnum + before: String + after: String + first: Int + ): FacebookBusinessAdNetworkAnalyticsSyncQueryResultConnection! + adNetworkAnalyticsResults( + queryIds: [String!] + before: String + after: String + first: Int + ): FacebookBusinessAdNetworkAnalyticsAsyncQueryResultConnection! } enum FacebookBusinessAdcampaigngroupactivityObjectiveOld { @@ -70509,7 +71078,15 @@ type FacebookBusinessUserTaggableFriend { lastName: String middleName: String name: String - picture(width: Int type: FacebookBusinessTypeEnum redirect: Boolean height: Int before: String after: String first: Int): FacebookBusinessProfilePictureSourceConnection! + picture( + width: Int + type: FacebookBusinessTypeEnum + redirect: Boolean + height: Int + before: String + after: String + first: Int + ): FacebookBusinessProfilePictureSourceConnection! } type FacebookBusinessUserTaggableFriendConnection { @@ -70709,7 +71286,7 @@ type FacebookBusinessVideoList { thumbnail: String title: String videosCount: Int - videos(before: String after: String first: Int): FacebookBusinessAdVideoConnection! + videos(before: String, after: String, first: Int): FacebookBusinessAdVideoConnection! } type FacebookBusinessVideoListConnection { @@ -70769,8 +71346,8 @@ type FacebookBusinessEventTour { startTime: String ticketingUri: String video: FacebookBusinessAdVideo - events(before: String after: String first: Int): FacebookBusinessEventConnection! - pages(before: String after: String first: Int): FacebookBusinessPageConnection! + events(before: String, after: String, first: Int): FacebookBusinessEventConnection! + pages(before: String, after: String, first: Int): FacebookBusinessPageConnection! } type FacebookBusinessEventTourConnection { @@ -70883,7 +71460,7 @@ type FacebookBusinessNativeOfferView { id: String offer: FacebookBusinessNativeOffer saveCount: Int - photos(before: String after: String first: Int): FacebookBusinessPhotoConnection! + photos(before: String, after: String, first: Int): FacebookBusinessPhotoConnection! } type FacebookBusinessNativeOfferViewConnection { @@ -70932,7 +71509,7 @@ type FacebookBusinessNativeOffer { uniqueCodesFileCodeType: String uniqueCodesFileName: String uniqueCodesFileUploadStatus: String - views(before: String after: String first: Int): FacebookBusinessNativeOfferViewConnection! + views(before: String, after: String, first: Int): FacebookBusinessNativeOfferViewConnection! } type FacebookBusinessNativeOfferConnection { @@ -71067,8 +71644,8 @@ type FacebookBusinessLeadgenForm { status: String thankYouPage: JSON trackingParameters: JSON - leads(before: String after: String first: Int): FacebookBusinessLeadConnection! - testLeads(before: String after: String first: Int): FacebookBusinessLeadConnection! + leads(before: String, after: String, first: Int): FacebookBusinessLeadConnection! + testLeads(before: String, after: String, first: Int): FacebookBusinessLeadConnection! } type FacebookBusinessLeadgenFormConnection { @@ -71142,7 +71719,12 @@ type FacebookBusinessUnifiedThread { unreadCount: Int updatedTime: String wallpaper: String - messages(source: FacebookBusinessSourceEnum before: String after: String first: Int): FacebookBusinessJSONConnection! + messages( + source: FacebookBusinessSourceEnum + before: String + after: String + first: Int + ): FacebookBusinessJSONConnection! } type FacebookBusinessUnifiedThreadConnection { @@ -71190,7 +71772,16 @@ type FacebookBusinessInstantArticle { publishStatus: String published: Boolean videos: [JSON] - insights(until: String since: String period: FacebookBusinessPeriodEnum! metricJson: [JSON!]! breakdown: FacebookBusinessBreakdownEnum before: String after: String first: Int): FacebookBusinessInstantArticleInsightsQueryResultConnection! + insights( + until: String + since: String + period: FacebookBusinessPeriodEnum! + metricJson: [JSON!]! + breakdown: FacebookBusinessBreakdownEnum + before: String + after: String + first: Int + ): FacebookBusinessInstantArticleInsightsQueryResultConnection! } """ @@ -71326,15 +71917,37 @@ type FacebookBusinessPagePost { via: JSON videoBuyingEligibility: [String] width: Int - attachments(before: String after: String first: Int): FacebookBusinessJSONConnection! - comments(since: String order: FacebookBusinessOrderEnum liveFilter: FacebookBusinessLiveFilterEnum filter: FacebookBusinessFilterEnum before: String after: String first: Int): FacebookBusinessCommentConnection! - dynamicPosts(before: String after: String first: Int): FacebookBusinessRTBDynamicPostConnection! - insights(until: String since: String period: FacebookBusinessPeriodEnum metricJson: [JSON!] datePreset: FacebookBusinessDatePresetEnum before: String after: String first: Int): FacebookBusinessInsightsResultConnection! - likes(before: String after: String first: Int): FacebookBusinessProfileConnection! - reactions(type: FacebookBusinessTypeEnum before: String after: String first: Int): FacebookBusinessProfileConnection! - sharedPosts(before: String after: String first: Int): FacebookBusinessPostConnection! - sponsorTags(before: String after: String first: Int): FacebookBusinessPageConnection! - to(before: String after: String first: Int): FacebookBusinessProfileConnection! + attachments(before: String, after: String, first: Int): FacebookBusinessJSONConnection! + comments( + since: String + order: FacebookBusinessOrderEnum + liveFilter: FacebookBusinessLiveFilterEnum + filter: FacebookBusinessFilterEnum + before: String + after: String + first: Int + ): FacebookBusinessCommentConnection! + dynamicPosts(before: String, after: String, first: Int): FacebookBusinessRTBDynamicPostConnection! + insights( + until: String + since: String + period: FacebookBusinessPeriodEnum + metricJson: [JSON!] + datePreset: FacebookBusinessDatePresetEnum + before: String + after: String + first: Int + ): FacebookBusinessInsightsResultConnection! + likes(before: String, after: String, first: Int): FacebookBusinessProfileConnection! + reactions( + type: FacebookBusinessTypeEnum + before: String + after: String + first: Int + ): FacebookBusinessProfileConnection! + sharedPosts(before: String, after: String, first: Int): FacebookBusinessPostConnection! + sponsorTags(before: String, after: String, first: Int): FacebookBusinessPageConnection! + to(before: String, after: String, first: Int): FacebookBusinessProfileConnection! } type FacebookBusinessPagePostConnection { @@ -71531,9 +72144,15 @@ type FacebookBusinessIGMedia { thumbnailUrl: String timestamp: String username: String - children(before: String after: String first: Int): FacebookBusinessIGMediaConnection! - comments(before: String after: String first: Int): FacebookBusinessIGCommentConnection! - insights(period: [FacebookBusinessPeriodEnum!] metric: [FacebookBusinessMetricEnum!]! before: String after: String first: Int): FacebookBusinessInstagramInsightsResultConnection! + children(before: String, after: String, first: Int): FacebookBusinessIGMediaConnection! + comments(before: String, after: String, first: Int): FacebookBusinessIGCommentConnection! + insights( + period: [FacebookBusinessPeriodEnum!] + metric: [FacebookBusinessMetricEnum!]! + before: String + after: String + first: Int + ): FacebookBusinessInstagramInsightsResultConnection! } """ @@ -71548,7 +72167,7 @@ type FacebookBusinessIGComment { timestamp: String user: FacebookBusinessIGUser username: String - replies(before: String after: String first: Int): FacebookBusinessIGCommentConnection! + replies(before: String, after: String, first: Int): FacebookBusinessIGCommentConnection! } """ @@ -71568,11 +72187,19 @@ type FacebookBusinessIGUser { profilePictureUrl: String username: String website: String - insights(until: String since: String period: [FacebookBusinessPeriodEnum!]! metric: [FacebookBusinessMetricEnum!]! before: String after: String first: Int): FacebookBusinessInstagramInsightsResultConnection! - media(before: String after: String first: Int): FacebookBusinessIGMediaConnection! - recentlySearchedHashtags(before: String after: String first: Int): FacebookBusinessJSONConnection! - stories(before: String after: String first: Int): FacebookBusinessIGMediaConnection! - tags(before: String after: String first: Int): FacebookBusinessIGMediaConnection! + insights( + until: String + since: String + period: [FacebookBusinessPeriodEnum!]! + metric: [FacebookBusinessMetricEnum!]! + before: String + after: String + first: Int + ): FacebookBusinessInstagramInsightsResultConnection! + media(before: String, after: String, first: Int): FacebookBusinessIGMediaConnection! + recentlySearchedHashtags(before: String, after: String, first: Int): FacebookBusinessJSONConnection! + stories(before: String, after: String, first: Int): FacebookBusinessIGMediaConnection! + tags(before: String, after: String, first: Int): FacebookBusinessIGMediaConnection! } """ @@ -72208,8 +72835,8 @@ type FacebookBusinessPublisherBlockList { name: String ownerAdAccountId: String webPublishers: [JSON] - pagedAppPublishers(draftId: String before: String after: String first: Int): FacebookBusinessJSONConnection! - pagedWebPublishers(draftId: String before: String after: String first: Int): FacebookBusinessJSONConnection! + pagedAppPublishers(draftId: String, before: String, after: String, first: Int): FacebookBusinessJSONConnection! + pagedWebPublishers(draftId: String, before: String, after: String, first: Int): FacebookBusinessJSONConnection! } type FacebookBusinessPublisherBlockListConnection { @@ -72454,7 +73081,12 @@ type FacebookBusinessAdAsyncRequestSet { successCount: Int totalCount: Int updatedTime: String - requests(statuses: [FacebookBusinessStatusesEnum!] before: String after: String first: Int): FacebookBusinessAdAsyncRequestConnection! + requests( + statuses: [FacebookBusinessStatusesEnum!] + before: String + after: String + first: Int + ): FacebookBusinessAdAsyncRequestConnection! } type FacebookBusinessAdAsyncRequestSetConnection { @@ -72770,11 +73402,16 @@ type FacebookBusinessSystemUser { id: String ipPermission: String name: String - assignedAdAccounts(before: String after: String first: Int): FacebookBusinessAdAccountConnection! - assignedBusinessAssetGroups(containedAssetId: String before: String after: String first: Int): FacebookBusinessBusinessAssetGroupConnection! - assignedPages(before: String after: String first: Int): FacebookBusinessPageConnection! - assignedProductCatalogs(before: String after: String first: Int): FacebookBusinessProductCatalogConnection! - updatedBy(before: String after: String first: Int): FacebookBusinessUserConnection! + assignedAdAccounts(before: String, after: String, first: Int): FacebookBusinessAdAccountConnection! + assignedBusinessAssetGroups( + containedAssetId: String + before: String + after: String + first: Int + ): FacebookBusinessBusinessAssetGroupConnection! + assignedPages(before: String, after: String, first: Int): FacebookBusinessPageConnection! + assignedProductCatalogs(before: String, after: String, first: Int): FacebookBusinessProductCatalogConnection! + updatedBy(before: String, after: String, first: Int): FacebookBusinessUserConnection! } type FacebookBusinessSystemUserConnection { @@ -72891,7 +73528,7 @@ type FacebookBusinessExtendedCreditInvoiceGroup { emails: [String] id: String name: String - adAccounts(before: String after: String first: Int): FacebookBusinessAdAccountConnection! + adAccounts(before: String, after: String, first: Int): FacebookBusinessAdAccountConnection! } type FacebookBusinessExtendedCreditInvoiceGroupConnection { @@ -72936,8 +73573,13 @@ type FacebookBusinessExtendedCredit { partitionFrom: String receivingCreditAllocationConfig: FacebookBusinessExtendedCreditAllocationConfig sendBillToBizName: String - extendedCreditInvoiceGroups(before: String after: String first: Int): FacebookBusinessExtendedCreditInvoiceGroupConnection! - owningCreditAllocationConfigs(receivingBusinessId: String before: String after: String first: Int): FacebookBusinessExtendedCreditAllocationConfigConnection! + extendedCreditInvoiceGroups(before: String, after: String, first: Int): FacebookBusinessExtendedCreditInvoiceGroupConnection! + owningCreditAllocationConfigs( + receivingBusinessId: String + before: String + after: String + first: Int + ): FacebookBusinessExtendedCreditAllocationConfigConnection! } type FacebookBusinessExtendedCreditConnection { @@ -72953,7 +73595,7 @@ type FacebookBusinessEventSourceGroup { eventSources: [FacebookBusinessExternalEventSource] id: String name: String - sharedAccounts(before: String after: String first: Int): FacebookBusinessAdAccountConnection! + sharedAccounts(before: String, after: String, first: Int): FacebookBusinessAdAccountConnection! } type FacebookBusinessEventSourceGroupConnection { @@ -72975,7 +73617,7 @@ type FacebookBusinessBusinessCreative { url: String videoId: String width: Int - adPlacementValidationResults(before: String after: String first: Int): FacebookBusinessJSONConnection! + adPlacementValidationResults(before: String, after: String, first: Int): FacebookBusinessJSONConnection! } type FacebookBusinessBusinessCreativeConnection { @@ -72995,9 +73637,9 @@ type FacebookBusinessBusinessCreativeFolder { mediaLibraryUrl: String name: String parentFolder: FacebookBusinessBusinessCreativeFolder - agencies(before: String after: String first: Int): FacebookBusinessBusinessConnection! - assignedUsers(business: String! before: String after: String first: Int): FacebookBusinessAssignedUserConnection! - subFolders(before: String after: String first: Int): FacebookBusinessBusinessCreativeFolderConnection! + agencies(before: String, after: String, first: Int): FacebookBusinessBusinessConnection! + assignedUsers(business: String!, before: String, after: String, first: Int): FacebookBusinessAssignedUserConnection! + subFolders(before: String, after: String, first: Int): FacebookBusinessBusinessCreativeFolderConnection! } type FacebookBusinessBusinessCreativeFolderConnection { @@ -73070,10 +73712,15 @@ type FacebookBusinessBusinessUser { role: String title: String twoFacStatus: String - assignedAdAccounts(before: String after: String first: Int): FacebookBusinessAdAccountConnection! - assignedBusinessAssetGroups(containedAssetId: String before: String after: String first: Int): FacebookBusinessBusinessAssetGroupConnection! - assignedPages(before: String after: String first: Int): FacebookBusinessPageConnection! - assignedProductCatalogs(before: String after: String first: Int): FacebookBusinessProductCatalogConnection! + assignedAdAccounts(before: String, after: String, first: Int): FacebookBusinessAdAccountConnection! + assignedBusinessAssetGroups( + containedAssetId: String + before: String + after: String + first: Int + ): FacebookBusinessBusinessAssetGroupConnection! + assignedPages(before: String, after: String, first: Int): FacebookBusinessPageConnection! + assignedProductCatalogs(before: String, after: String, first: Int): FacebookBusinessProductCatalogConnection! } type FacebookBusinessBusinessUserConnection { @@ -73126,18 +73773,81 @@ type FacebookBusinessBusinessUnit { name: String timeZone: String visitsAvailableDate: Int - adAccounts(before: String after: String first: Int): FacebookBusinessAdAccountConnection! - adPlatforms(orderBy: String metricScopeJson: JSON filterBy: String before: String after: String first: Int): FacebookBusinessJSONConnection! - atlasSalesAccesses(before: String after: String first: Int): FacebookBusinessJSONConnection! - campaigns(orderBy: String metricScopeJson: JSON filterBy: String before: String after: String first: Int): FacebookBusinessAtlasCampaignConnection! - conversionEvents(orderBy: String metricScopeJson: JSON filterBy: String before: String after: String first: Int): FacebookBusinessJSONConnection! - conversionPaths(viewLookbackWindow: Int! timePeriod: FacebookBusinessTimePeriodEnum! metricContextJson: JSON fbConversionEventId: Int! dateRangeJson: JSON clickLookbackWindow: Int! before: String after: String first: Int): FacebookBusinessJSONConnection! - customBreakdowns(orderBy: String filterBy: String before: String after: String first: Int): FacebookBusinessJSONConnection! - diagnostics(orderBy: String filterBy: String before: String after: String first: Int): FacebookBusinessJSONConnection! - externalImportFile(orderBy: String filterBy: String before: String after: String first: Int): FacebookBusinessJSONConnection! - reports(orderBy: String metricScopeJson: JSON filterBy: String before: String after: String first: Int): FacebookBusinessJSONConnection! - sources(orderBy: String metricScopeJson: JSON filterBy: String before: String after: String first: Int): FacebookBusinessJSONConnection! - users(before: String after: String first: Int): FacebookBusinessBusinessUserConnection! + adAccounts(before: String, after: String, first: Int): FacebookBusinessAdAccountConnection! + adPlatforms( + orderBy: String + metricScopeJson: JSON + filterBy: String + before: String + after: String + first: Int + ): FacebookBusinessJSONConnection! + atlasSalesAccesses(before: String, after: String, first: Int): FacebookBusinessJSONConnection! + campaigns( + orderBy: String + metricScopeJson: JSON + filterBy: String + before: String + after: String + first: Int + ): FacebookBusinessAtlasCampaignConnection! + conversionEvents( + orderBy: String + metricScopeJson: JSON + filterBy: String + before: String + after: String + first: Int + ): FacebookBusinessJSONConnection! + conversionPaths( + viewLookbackWindow: Int! + timePeriod: FacebookBusinessTimePeriodEnum! + metricContextJson: JSON + fbConversionEventId: Int! + dateRangeJson: JSON + clickLookbackWindow: Int! + before: String + after: String + first: Int + ): FacebookBusinessJSONConnection! + customBreakdowns( + orderBy: String + filterBy: String + before: String + after: String + first: Int + ): FacebookBusinessJSONConnection! + diagnostics( + orderBy: String + filterBy: String + before: String + after: String + first: Int + ): FacebookBusinessJSONConnection! + externalImportFile( + orderBy: String + filterBy: String + before: String + after: String + first: Int + ): FacebookBusinessJSONConnection! + reports( + orderBy: String + metricScopeJson: JSON + filterBy: String + before: String + after: String + first: Int + ): FacebookBusinessJSONConnection! + sources( + orderBy: String + metricScopeJson: JSON + filterBy: String + before: String + after: String + first: Int + ): FacebookBusinessJSONConnection! + users(before: String, after: String, first: Int): FacebookBusinessBusinessUserConnection! } type FacebookBusinessBusinessUnitConnection { @@ -73246,10 +73956,31 @@ type FacebookBusinessAtlasCampaign { timeDecay7dayCpa: Float timeDecay7dayRevenue: Float timeDecay7dayRoas: Float - adSets(orderBy: String metricScopeJson: JSON filterBy: String before: String after: String first: Int): FacebookBusinessJSONConnection! - businessUnit(before: String after: String first: Int): FacebookBusinessBusinessUnitConnection! - metricsBreakdown(metricScopeJson: JSON granularity: FacebookBusinessGranularityEnum dimensions: [FacebookBusinessDimensionsEnum!] before: String after: String first: Int): FacebookBusinessJSONConnection! - sources(orderBy: String metricScopeJson: JSON filterBy: String before: String after: String first: Int): FacebookBusinessJSONConnection! + adSets( + orderBy: String + metricScopeJson: JSON + filterBy: String + before: String + after: String + first: Int + ): FacebookBusinessJSONConnection! + businessUnit(before: String, after: String, first: Int): FacebookBusinessBusinessUnitConnection! + metricsBreakdown( + metricScopeJson: JSON + granularity: FacebookBusinessGranularityEnum + dimensions: [FacebookBusinessDimensionsEnum!] + before: String + after: String + first: Int + ): FacebookBusinessJSONConnection! + sources( + orderBy: String + metricScopeJson: JSON + filterBy: String + before: String + after: String + first: Int + ): FacebookBusinessJSONConnection! } """ @@ -73294,8 +74025,8 @@ type FacebookBusinessOracleTransaction { liabilityType: String paymentStatus: String paymentTerm: String - campaigns(before: String after: String first: Int): FacebookBusinessInvoiceCampaignConnection! - data(redirect: Boolean before: String after: String first: Int): FacebookBusinessAtlasURLConnection! + campaigns(before: String, after: String, first: Int): FacebookBusinessInvoiceCampaignConnection! + data(redirect: Boolean, before: String, after: String, first: Int): FacebookBusinessAtlasURLConnection! } type FacebookBusinessOracleTransactionConnection { @@ -73406,14 +74137,62 @@ type FacebookBusinessProductSet { name: String productCatalog: FacebookBusinessProductCatalog productCount: Int - automotiveModels(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessAutomotiveModelConnection! - destinations(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessDestinationConnection! - flights(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessFlightConnection! - homeListings(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessHomeListingConnection! - hotels(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessHotelConnection! - products(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessProductItemConnection! - vehicleOffers(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessVehicleOfferConnection! - vehicles(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessVehicleConnection! + automotiveModels( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessAutomotiveModelConnection! + destinations( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessDestinationConnection! + flights( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessFlightConnection! + homeListings( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessHomeListingConnection! + hotels( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessHotelConnection! + products( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessProductItemConnection! + vehicleOffers( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessVehicleOfferConnection! + vehicles( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessVehicleConnection! } type FacebookBusinessProductSetConnection { @@ -73457,7 +74236,7 @@ type FacebookBusinessProductGroup { productCatalog: FacebookBusinessProductCatalog retailerId: String variants: [FacebookBusinessProductVariant] - products(before: String after: String first: Int): FacebookBusinessProductItemConnection! + products(before: String, after: String, first: Int): FacebookBusinessProductItemConnection! } enum FacebookBusinessProductitemGender { @@ -73560,7 +74339,7 @@ type FacebookBusinessProductItem { startDate: String url: String visibility: FacebookBusinessProductitemVisibility - productSets(before: String after: String first: Int): FacebookBusinessProductSetConnection! + productSets(before: String, after: String, first: Int): FacebookBusinessProductSetConnection! } type FacebookBusinessProductItemConnection { @@ -73656,8 +74435,8 @@ type FacebookBusinessProductFeedUploadError { severity: FacebookBusinessProductfeeduploaderrorSeverity summary: String totalCount: Int - samples(before: String after: String first: Int): FacebookBusinessProductFeedUploadErrorSampleConnection! - suggestedRules(before: String after: String first: Int): FacebookBusinessProductFeedRuleSuggestionConnection! + samples(before: String, after: String, first: Int): FacebookBusinessProductFeedUploadErrorSampleConnection! + suggestedRules(before: String, after: String, first: Int): FacebookBusinessProductFeedRuleSuggestionConnection! } type FacebookBusinessProductFeedUploadErrorConnection { @@ -73698,7 +74477,7 @@ type FacebookBusinessProductFeedUpload { startTime: String url: String warningCount: Int - errors(before: String after: String first: Int): FacebookBusinessProductFeedUploadErrorConnection! + errors(before: String, after: String, first: Int): FacebookBusinessProductFeedUploadErrorConnection! } enum FacebookBusinessProductfeedDelimiter { @@ -73729,17 +74508,65 @@ type FacebookBusinessProductFeed { quotedFieldsMode: FacebookBusinessProductfeedQuotedFieldsMode schedule: FacebookBusinessProductFeedSchedule updateSchedule: FacebookBusinessProductFeedSchedule - automotiveModels(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessAutomotiveModelConnection! - destinations(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessDestinationConnection! - flights(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessFlightConnection! - homeListings(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessHomeListingConnection! - hotels(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessHotelConnection! - products(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessProductItemConnection! - rules(before: String after: String first: Int): FacebookBusinessProductFeedRuleConnection! - uploadSchedules(before: String after: String first: Int): FacebookBusinessProductFeedScheduleConnection! - uploads(before: String after: String first: Int): FacebookBusinessProductFeedUploadConnection! - vehicleOffers(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessVehicleOfferConnection! - vehicles(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessVehicleConnection! + automotiveModels( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessAutomotiveModelConnection! + destinations( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessDestinationConnection! + flights( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessFlightConnection! + homeListings( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessHomeListingConnection! + hotels( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessHotelConnection! + products( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessProductItemConnection! + rules(before: String, after: String, first: Int): FacebookBusinessProductFeedRuleConnection! + uploadSchedules(before: String, after: String, first: Int): FacebookBusinessProductFeedScheduleConnection! + uploads(before: String, after: String, first: Int): FacebookBusinessProductFeedUploadConnection! + vehicleOffers( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessVehicleOfferConnection! + vehicles( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessVehicleConnection! } type FacebookBusinessProductFeedConnection { @@ -73791,7 +74618,7 @@ type FacebookBusinessHotelRoom { roomId: String salePrice: String url: String - pricingVariables(before: String after: String first: Int): FacebookBusinessDynamicPriceConfigByDateConnection! + pricingVariables(before: String, after: String, first: Int): FacebookBusinessDynamicPriceConfigByDateConnection! } type FacebookBusinessHotelRoomConnection { @@ -73821,7 +74648,7 @@ type FacebookBusinessHotel { sanitizedImages: [String] starRating: Float url: String - hotelRooms(before: String after: String first: Int): FacebookBusinessHotelRoomConnection! + hotelRooms(before: String, after: String, first: Int): FacebookBusinessHotelRoomConnection! } type FacebookBusinessHotelConnection { @@ -74091,27 +74918,106 @@ type FacebookBusinessProductCatalog { productCount: Int storeCatalogSettings: FacebookBusinessStoreCatalogSettings vertical: String - agencies(before: String after: String first: Int): FacebookBusinessBusinessConnection! - assignedUsers(business: String! before: String after: String first: Int): FacebookBusinessAssignedUserConnection! - automotiveModels(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessAutomotiveModelConnection! - categories(filterJson: JSON categorizationCriteria: FacebookBusinessCategorizationCriteriaEnum! before: String after: String first: Int): FacebookBusinessProductCatalogCategoryConnection! - checkBatchRequestStatus(loadIdsOfInvalidRequests: Boolean handle: String! before: String after: String first: Int): FacebookBusinessCheckBatchRequestStatusConnection! - collaborativeAdsShareSettings(before: String after: String first: Int): FacebookBusinessCollaborativeAdsShareSettingsConnection! - destinations(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessDestinationConnection! - eventStats(breakdowns: [FacebookBusinessBreakdownsEnum!] before: String after: String first: Int): FacebookBusinessProductEventStatConnection! - externalEventSources(before: String after: String first: Int): FacebookBusinessExternalEventSourceConnection! - flights(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessFlightConnection! - homeListings(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessHomeListingConnection! - hotelRoomsBatch(handle: String! before: String after: String first: Int): FacebookBusinessProductCatalogHotelRoomsBatchConnection! - hotels(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessHotelConnection! - pricingVariablesBatch(handle: String! before: String after: String first: Int): FacebookBusinessProductCatalogPricingVariablesBatchConnection! - productFeeds(before: String after: String first: Int): FacebookBusinessProductFeedConnection! - productGroups(before: String after: String first: Int): FacebookBusinessProductGroupConnection! - productSets(retailerId: String parentId: String hasChildren: Boolean ancestorId: String before: String after: String first: Int): FacebookBusinessProductSetConnection! - productSetsBatch(handle: String! before: String after: String first: Int): FacebookBusinessProductCatalogProductSetsBatchConnection! - products(returnOnlyApprovedProducts: Boolean filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessProductItemConnection! - vehicleOffers(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessVehicleOfferConnection! - vehicles(filterJson: JSON bulkPagination: Boolean before: String after: String first: Int): FacebookBusinessVehicleConnection! + agencies(before: String, after: String, first: Int): FacebookBusinessBusinessConnection! + assignedUsers(business: String!, before: String, after: String, first: Int): FacebookBusinessAssignedUserConnection! + automotiveModels( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessAutomotiveModelConnection! + categories( + filterJson: JSON + categorizationCriteria: FacebookBusinessCategorizationCriteriaEnum! + before: String + after: String + first: Int + ): FacebookBusinessProductCatalogCategoryConnection! + checkBatchRequestStatus( + loadIdsOfInvalidRequests: Boolean + handle: String! + before: String + after: String + first: Int + ): FacebookBusinessCheckBatchRequestStatusConnection! + collaborativeAdsShareSettings(before: String, after: String, first: Int): FacebookBusinessCollaborativeAdsShareSettingsConnection! + destinations( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessDestinationConnection! + eventStats( + breakdowns: [FacebookBusinessBreakdownsEnum!] + before: String + after: String + first: Int + ): FacebookBusinessProductEventStatConnection! + externalEventSources(before: String, after: String, first: Int): FacebookBusinessExternalEventSourceConnection! + flights( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessFlightConnection! + homeListings( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessHomeListingConnection! + hotelRoomsBatch(handle: String!, before: String, after: String, first: Int): FacebookBusinessProductCatalogHotelRoomsBatchConnection! + hotels( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessHotelConnection! + pricingVariablesBatch( + handle: String! + before: String + after: String + first: Int + ): FacebookBusinessProductCatalogPricingVariablesBatchConnection! + productFeeds(before: String, after: String, first: Int): FacebookBusinessProductFeedConnection! + productGroups(before: String, after: String, first: Int): FacebookBusinessProductGroupConnection! + productSets( + retailerId: String + parentId: String + hasChildren: Boolean + ancestorId: String + before: String + after: String + first: Int + ): FacebookBusinessProductSetConnection! + productSetsBatch(handle: String!, before: String, after: String, first: Int): FacebookBusinessProductCatalogProductSetsBatchConnection! + products( + returnOnlyApprovedProducts: Boolean + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessProductItemConnection! + vehicleOffers( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessVehicleOfferConnection! + vehicles( + filterJson: JSON + bulkPagination: Boolean + before: String + after: String + first: Int + ): FacebookBusinessVehicleConnection! } type FacebookBusinessProductCatalogConnection { @@ -74130,15 +75036,15 @@ type FacebookBusinessInstagramUserConnection { type FacebookBusinessBusinessAssetGroup { id: String name: String - assignedUsers(business: String! before: String after: String first: Int): FacebookBusinessAssignedUserConnection! - containedAdAccounts(before: String after: String first: Int): FacebookBusinessAdAccountConnection! - containedApplications(before: String after: String first: Int): FacebookBusinessApplicationConnection! - containedCustomConversions(before: String after: String first: Int): FacebookBusinessCustomConversionConnection! - containedInstagramAccounts(before: String after: String first: Int): FacebookBusinessInstagramUserConnection! - containedOfflineConversionDataSets(before: String after: String first: Int): FacebookBusinessOfflineConversionDataSetConnection! - containedPages(before: String after: String first: Int): FacebookBusinessPageConnection! - containedPixels(before: String after: String first: Int): FacebookBusinessAdsPixelConnection! - containedProductCatalogs(before: String after: String first: Int): FacebookBusinessProductCatalogConnection! + assignedUsers(business: String!, before: String, after: String, first: Int): FacebookBusinessAssignedUserConnection! + containedAdAccounts(before: String, after: String, first: Int): FacebookBusinessAdAccountConnection! + containedApplications(before: String, after: String, first: Int): FacebookBusinessApplicationConnection! + containedCustomConversions(before: String, after: String, first: Int): FacebookBusinessCustomConversionConnection! + containedInstagramAccounts(before: String, after: String, first: Int): FacebookBusinessInstagramUserConnection! + containedOfflineConversionDataSets(before: String, after: String, first: Int): FacebookBusinessOfflineConversionDataSetConnection! + containedPages(before: String, after: String, first: Int): FacebookBusinessPageConnection! + containedPixels(before: String, after: String, first: Int): FacebookBusinessAdsPixelConnection! + containedProductCatalogs(before: String, after: String, first: Int): FacebookBusinessProductCatalogConnection! } type FacebookBusinessBusinessAssetGroupConnection { @@ -74210,7 +75116,7 @@ type FacebookBusinessPartnerStudy { studyStartDate: String studyType: String submitDate: String - submitters(before: String after: String first: Int): FacebookBusinessUserConnection! + submitters(before: String, after: String, first: Int): FacebookBusinessUserConnection! } type FacebookBusinessPartnerStudyConnection { @@ -74477,11 +75383,17 @@ type FacebookBusinessCustomAudience { timeContentUpdated: Int timeCreated: Int timeUpdated: Int - adAccounts(permissions: String before: String after: String first: Int): FacebookBusinessAdAccountConnection! - ads(status: [String!] effectiveStatus: [String!] before: String after: String first: Int): FacebookBusinessAdConnection! - prefills(before: String after: String first: Int): FacebookBusinessCustomAudiencePrefillStateConnection! - sessions(sessionId: Int before: String after: String first: Int): FacebookBusinessCustomAudienceSessionConnection! - sharedAccountInfo(before: String after: String first: Int): FacebookBusinessCustomAudiencesharedAccountInfoConnection! + adAccounts(permissions: String, before: String, after: String, first: Int): FacebookBusinessAdAccountConnection! + ads( + status: [String!] + effectiveStatus: [String!] + before: String + after: String + first: Int + ): FacebookBusinessAdConnection! + prefills(before: String, after: String, first: Int): FacebookBusinessCustomAudiencePrefillStateConnection! + sessions(sessionId: Int, before: String, after: String, first: Int): FacebookBusinessCustomAudienceSessionConnection! + sharedAccountInfo(before: String, after: String, first: Int): FacebookBusinessCustomAudiencesharedAccountInfoConnection! } type FacebookBusinessCustomAudienceConnection { @@ -74513,12 +75425,36 @@ type FacebookBusinessOfflineConversionDataSet { name: String usage: JSON validEntries: Int - adAccounts(business: String! before: String after: String first: Int): FacebookBusinessAdAccountConnection! - agencies(before: String after: String first: Int): FacebookBusinessBusinessConnection! - audiences(adAccount: String before: String after: String first: Int): FacebookBusinessCustomAudienceConnection! - customConversions(adAccount: String before: String after: String first: Int): FacebookBusinessCustomConversionConnection! - stats(userTimezoneId: Int start: Int skipEmptyValues: Boolean granularity: FacebookBusinessGranularityEnum end: Int aggrTime: FacebookBusinessAggrTimeEnum before: String after: String first: Int): FacebookBusinessJSONConnection! - uploads(uploadTag: String startTime: String sortBy: FacebookBusinessSortByEnum order: FacebookBusinessOrderEnum endTime: String before: String after: String first: Int): FacebookBusinessJSONConnection! + adAccounts(business: String!, before: String, after: String, first: Int): FacebookBusinessAdAccountConnection! + agencies(before: String, after: String, first: Int): FacebookBusinessBusinessConnection! + audiences(adAccount: String, before: String, after: String, first: Int): FacebookBusinessCustomAudienceConnection! + customConversions( + adAccount: String + before: String + after: String + first: Int + ): FacebookBusinessCustomConversionConnection! + stats( + userTimezoneId: Int + start: Int + skipEmptyValues: Boolean + granularity: FacebookBusinessGranularityEnum + end: Int + aggrTime: FacebookBusinessAggrTimeEnum + before: String + after: String + first: Int + ): FacebookBusinessJSONConnection! + uploads( + uploadTag: String + startTime: String + sortBy: FacebookBusinessSortByEnum + order: FacebookBusinessOrderEnum + endTime: String + before: String + after: String + first: Int + ): FacebookBusinessJSONConnection! } """ @@ -74575,7 +75511,14 @@ type FacebookBusinessCustomConversion { pixel: FacebookBusinessAdsPixel retentionDays: Int rule: String - stats(startTime: String endTime: String aggregation: FacebookBusinessAggregationEnum before: String after: String first: Int): FacebookBusinessCustomConversionStatsResultConnection! + stats( + startTime: String + endTime: String + aggregation: FacebookBusinessAggregationEnum + before: String + after: String + first: Int + ): FacebookBusinessCustomConversionStatsResultConnection! } type FacebookBusinessCustomConversionConnection { @@ -74668,7 +75611,7 @@ type FacebookBusinessVideoPoll { showGradient: Boolean showResults: Boolean status: FacebookBusinessVideopollStatus - pollOptions(before: String after: String first: Int): FacebookBusinessJSONConnection! + pollOptions(before: String, after: String, first: Int): FacebookBusinessJSONConnection! } type FacebookBusinessVideoPollConnection { @@ -74740,17 +75683,33 @@ type FacebookBusinessAdVideo { title: String universalVideoId: String updatedTime: String - captions(before: String after: String first: Int): FacebookBusinessJSONConnection! - comments(since: String order: FacebookBusinessOrderEnum liveFilter: FacebookBusinessLiveFilterEnum filter: FacebookBusinessFilterEnum before: String after: String first: Int): FacebookBusinessCommentConnection! - crosspostSharedPages(before: String after: String first: Int): FacebookBusinessPageConnection! - likes(before: String after: String first: Int): FacebookBusinessProfileConnection! - pollSettings(before: String after: String first: Int): FacebookBusinessJSONConnection! - polls(before: String after: String first: Int): FacebookBusinessVideoPollConnection! - sharedPosts(before: String after: String first: Int): FacebookBusinessPostConnection! - sponsorTags(before: String after: String first: Int): FacebookBusinessPageConnection! - tags(before: String after: String first: Int): FacebookBusinessJSONConnection! - thumbnails(before: String after: String first: Int): FacebookBusinessVideoThumbnailConnection! - videoInsights(until: String since: String period: FacebookBusinessPeriodEnum metricJson: [JSON!] before: String after: String first: Int): FacebookBusinessInsightsResultConnection! + captions(before: String, after: String, first: Int): FacebookBusinessJSONConnection! + comments( + since: String + order: FacebookBusinessOrderEnum + liveFilter: FacebookBusinessLiveFilterEnum + filter: FacebookBusinessFilterEnum + before: String + after: String + first: Int + ): FacebookBusinessCommentConnection! + crosspostSharedPages(before: String, after: String, first: Int): FacebookBusinessPageConnection! + likes(before: String, after: String, first: Int): FacebookBusinessProfileConnection! + pollSettings(before: String, after: String, first: Int): FacebookBusinessJSONConnection! + polls(before: String, after: String, first: Int): FacebookBusinessVideoPollConnection! + sharedPosts(before: String, after: String, first: Int): FacebookBusinessPostConnection! + sponsorTags(before: String, after: String, first: Int): FacebookBusinessPageConnection! + tags(before: String, after: String, first: Int): FacebookBusinessJSONConnection! + thumbnails(before: String, after: String, first: Int): FacebookBusinessVideoThumbnailConnection! + videoInsights( + until: String + since: String + period: FacebookBusinessPeriodEnum + metricJson: [JSON!] + before: String + after: String + first: Int + ): FacebookBusinessInsightsResultConnection! } """ @@ -74921,14 +75880,27 @@ type FacebookBusinessLiveVideo { title: String totalViews: String video: FacebookBusinessAdVideo - blockedUsers(uidJson: JSON before: String after: String first: Int): FacebookBusinessUserConnection! - comments(since: String order: FacebookBusinessOrderEnum liveFilter: FacebookBusinessLiveFilterEnum filter: FacebookBusinessFilterEnum before: String after: String first: Int): FacebookBusinessCommentConnection! - crosspostSharedPages(before: String after: String first: Int): FacebookBusinessPageConnection! - crosspostedBroadcasts(before: String after: String first: Int): FacebookBusinessLiveVideoConnection! - errors(before: String after: String first: Int): FacebookBusinessLiveVideoErrorConnection! - likes(before: String after: String first: Int): FacebookBusinessProfileConnection! - polls(before: String after: String first: Int): FacebookBusinessVideoPollConnection! - reactions(type: FacebookBusinessTypeEnum before: String after: String first: Int): FacebookBusinessProfileConnection! + blockedUsers(uidJson: JSON, before: String, after: String, first: Int): FacebookBusinessUserConnection! + comments( + since: String + order: FacebookBusinessOrderEnum + liveFilter: FacebookBusinessLiveFilterEnum + filter: FacebookBusinessFilterEnum + before: String + after: String + first: Int + ): FacebookBusinessCommentConnection! + crosspostSharedPages(before: String, after: String, first: Int): FacebookBusinessPageConnection! + crosspostedBroadcasts(before: String, after: String, first: Int): FacebookBusinessLiveVideoConnection! + errors(before: String, after: String, first: Int): FacebookBusinessLiveVideoErrorConnection! + likes(before: String, after: String, first: Int): FacebookBusinessProfileConnection! + polls(before: String, after: String, first: Int): FacebookBusinessVideoPollConnection! + reactions( + type: FacebookBusinessTypeEnum + before: String + after: String + first: Int + ): FacebookBusinessProfileConnection! } type FacebookBusinessLiveVideoConnection { @@ -74964,8 +75936,13 @@ type FacebookBusinessInstagramUser { mediaCount: Int profilePic: String username: String - agencies(before: String after: String first: Int): FacebookBusinessBusinessConnection! - authorizedAdAccounts(business: String! before: String after: String first: Int): FacebookBusinessAdAccountConnection! + agencies(before: String, after: String, first: Int): FacebookBusinessBusinessConnection! + authorizedAdAccounts( + business: String! + before: String + after: String + first: Int + ): FacebookBusinessAdAccountConnection! } """ @@ -74979,7 +75956,7 @@ type FacebookBusinessInstagramComment { instagramUser: FacebookBusinessInstagramUser mentionedInstagramUsers: [FacebookBusinessInstagramUser] message: String - replies(before: String after: String first: Int): FacebookBusinessInstagramCommentConnection! + replies(before: String, after: String, first: Int): FacebookBusinessInstagramCommentConnection! } type FacebookBusinessInstagramCommentConnection { @@ -75014,9 +75991,17 @@ type FacebookBusinessRTBDynamicPost { placeId: String productId: String title: String - comments(since: String order: FacebookBusinessOrderEnum liveFilter: FacebookBusinessLiveFilterEnum filter: FacebookBusinessFilterEnum before: String after: String first: Int): FacebookBusinessCommentConnection! - instagramComments(before: String after: String first: Int): FacebookBusinessInstagramCommentConnection! - likes(before: String after: String first: Int): FacebookBusinessProfileConnection! + comments( + since: String + order: FacebookBusinessOrderEnum + liveFilter: FacebookBusinessLiveFilterEnum + filter: FacebookBusinessFilterEnum + before: String + after: String + first: Int + ): FacebookBusinessCommentConnection! + instagramComments(before: String, after: String, first: Int): FacebookBusinessInstagramCommentConnection! + likes(before: String, after: String, first: Int): FacebookBusinessProfileConnection! } type FacebookBusinessRTBDynamicPostConnection { @@ -75095,14 +76080,36 @@ type FacebookBusinessPost { via: JSON videoBuyingEligibility: [String] width: Int - attachments(before: String after: String first: Int): FacebookBusinessJSONConnection! - comments(since: String order: FacebookBusinessOrderEnum liveFilter: FacebookBusinessLiveFilterEnum filter: FacebookBusinessFilterEnum before: String after: String first: Int): FacebookBusinessCommentConnection! - dynamicPosts(before: String after: String first: Int): FacebookBusinessRTBDynamicPostConnection! - insights(until: String since: String period: FacebookBusinessPeriodEnum metricJson: [JSON!] datePreset: FacebookBusinessDatePresetEnum before: String after: String first: Int): FacebookBusinessInsightsResultConnection! - reactions(type: FacebookBusinessTypeEnum before: String after: String first: Int): FacebookBusinessProfileConnection! - sharedPosts(before: String after: String first: Int): FacebookBusinessPostConnection! - sponsorTags(before: String after: String first: Int): FacebookBusinessPageConnection! - to(before: String after: String first: Int): FacebookBusinessProfileConnection! + attachments(before: String, after: String, first: Int): FacebookBusinessJSONConnection! + comments( + since: String + order: FacebookBusinessOrderEnum + liveFilter: FacebookBusinessLiveFilterEnum + filter: FacebookBusinessFilterEnum + before: String + after: String + first: Int + ): FacebookBusinessCommentConnection! + dynamicPosts(before: String, after: String, first: Int): FacebookBusinessRTBDynamicPostConnection! + insights( + until: String + since: String + period: FacebookBusinessPeriodEnum + metricJson: [JSON!] + datePreset: FacebookBusinessDatePresetEnum + before: String + after: String + first: Int + ): FacebookBusinessInsightsResultConnection! + reactions( + type: FacebookBusinessTypeEnum + before: String + after: String + first: Int + ): FacebookBusinessProfileConnection! + sharedPosts(before: String, after: String, first: Int): FacebookBusinessPostConnection! + sponsorTags(before: String, after: String, first: Int): FacebookBusinessPageConnection! + to(before: String, after: String, first: Int): FacebookBusinessProfileConnection! } type FacebookBusinessPostConnection { @@ -75170,8 +76177,21 @@ type FacebookBusinessComment { permalinkUrl: String privateReplyConversation: JSON userLikes: Boolean - comments(since: String order: FacebookBusinessOrderEnum liveFilter: FacebookBusinessLiveFilterEnum filter: FacebookBusinessFilterEnum before: String after: String first: Int): FacebookBusinessCommentConnection! - reactions(type: FacebookBusinessTypeEnum before: String after: String first: Int): FacebookBusinessProfileConnection! + comments( + since: String + order: FacebookBusinessOrderEnum + liveFilter: FacebookBusinessLiveFilterEnum + filter: FacebookBusinessFilterEnum + before: String + after: String + first: Int + ): FacebookBusinessCommentConnection! + reactions( + type: FacebookBusinessTypeEnum + before: String + after: String + first: Int + ): FacebookBusinessProfileConnection! } type FacebookBusinessCommentConnection { @@ -75242,7 +76262,15 @@ type FacebookBusinessProfile { picSquare: String profileType: FacebookBusinessProfileProfileType username: String - picture(width: Int type: FacebookBusinessTypeEnum redirect: Boolean height: Int before: String after: String first: Int): FacebookBusinessProfilePictureSourceConnection! + picture( + width: Int + type: FacebookBusinessTypeEnum + redirect: Boolean + height: Int + before: String + after: String + first: Int + ): FacebookBusinessProfilePictureSourceConnection! } type FacebookBusinessProfileConnection { @@ -75344,14 +76372,14 @@ type FacebookBusinessEvent { ticketingTermsUri: String timezone: String updatedTime: String - comments(before: String after: String first: Int): FacebookBusinessNullNodeConnection! - feed(before: String after: String first: Int): FacebookBusinessNullNodeConnection! - liveVideos(before: String after: String first: Int): FacebookBusinessNullNodeConnection! - photos(before: String after: String first: Int): FacebookBusinessNullNodeConnection! - picture(before: String after: String first: Int): FacebookBusinessNullNodeConnection! - posts(before: String after: String first: Int): FacebookBusinessNullNodeConnection! - roles(before: String after: String first: Int): FacebookBusinessProfileConnection! - videos(before: String after: String first: Int): FacebookBusinessNullNodeConnection! + comments(before: String, after: String, first: Int): FacebookBusinessNullNodeConnection! + feed(before: String, after: String, first: Int): FacebookBusinessNullNodeConnection! + liveVideos(before: String, after: String, first: Int): FacebookBusinessNullNodeConnection! + photos(before: String, after: String, first: Int): FacebookBusinessNullNodeConnection! + picture(before: String, after: String, first: Int): FacebookBusinessNullNodeConnection! + posts(before: String, after: String, first: Int): FacebookBusinessNullNodeConnection! + roles(before: String, after: String, first: Int): FacebookBusinessProfileConnection! + videos(before: String, after: String, first: Int): FacebookBusinessNullNodeConnection! } """ @@ -75385,11 +76413,28 @@ type FacebookBusinessPhoto { updatedTime: String webpImages: [FacebookBusinessPlatformImageSource] width: Int - comments(since: String order: FacebookBusinessOrderEnum liveFilter: FacebookBusinessLiveFilterEnum filter: FacebookBusinessFilterEnum before: String after: String first: Int): FacebookBusinessCommentConnection! - insights(until: String since: String period: FacebookBusinessPeriodEnum metricJson: [JSON!] datePreset: FacebookBusinessDatePresetEnum before: String after: String first: Int): FacebookBusinessInsightsResultConnection! - likes(before: String after: String first: Int): FacebookBusinessProfileConnection! - sharedPosts(before: String after: String first: Int): FacebookBusinessPostConnection! - sponsorTags(before: String after: String first: Int): FacebookBusinessPageConnection! + comments( + since: String + order: FacebookBusinessOrderEnum + liveFilter: FacebookBusinessLiveFilterEnum + filter: FacebookBusinessFilterEnum + before: String + after: String + first: Int + ): FacebookBusinessCommentConnection! + insights( + until: String + since: String + period: FacebookBusinessPeriodEnum + metricJson: [JSON!] + datePreset: FacebookBusinessDatePresetEnum + before: String + after: String + first: Int + ): FacebookBusinessInsightsResultConnection! + likes(before: String, after: String, first: Int): FacebookBusinessProfileConnection! + sharedPosts(before: String, after: String, first: Int): FacebookBusinessPostConnection! + sponsorTags(before: String, after: String, first: Int): FacebookBusinessPageConnection! } """ @@ -75418,10 +76463,24 @@ type FacebookBusinessAlbum { privacy: String updatedTime: String videoCount: Int - comments(since: String order: FacebookBusinessOrderEnum liveFilter: FacebookBusinessLiveFilterEnum filter: FacebookBusinessFilterEnum before: String after: String first: Int): FacebookBusinessCommentConnection! - photos(before: String after: String first: Int): FacebookBusinessPhotoConnection! - picture(type: FacebookBusinessTypeEnum redirect: Boolean before: String after: String first: Int): FacebookBusinessProfilePictureSourceConnection! - sharedPosts(before: String after: String first: Int): FacebookBusinessPostConnection! + comments( + since: String + order: FacebookBusinessOrderEnum + liveFilter: FacebookBusinessLiveFilterEnum + filter: FacebookBusinessFilterEnum + before: String + after: String + first: Int + ): FacebookBusinessCommentConnection! + photos(before: String, after: String, first: Int): FacebookBusinessPhotoConnection! + picture( + type: FacebookBusinessTypeEnum + redirect: Boolean + before: String + after: String + first: Int + ): FacebookBusinessProfilePictureSourceConnection! + sharedPosts(before: String, after: String, first: Int): FacebookBusinessPostConnection! } type FacebookBusinessAlbumConnection { @@ -75463,14 +76522,33 @@ type FacebookBusinessGroup { subdomain: String updatedTime: String venue: FacebookBusinessLocation - albums(before: String after: String first: Int): FacebookBusinessAlbumConnection! - docs(before: String after: String first: Int): FacebookBusinessJSONConnection! - events(before: String after: String first: Int): FacebookBusinessEventConnection! - groups(before: String after: String first: Int): FacebookBusinessGroupConnection! - liveVideos(source: FacebookBusinessSourceEnum broadcastStatus: [FacebookBusinessBroadcastStatusEnum!] before: String after: String first: Int): FacebookBusinessLiveVideoConnection! - optedInMembers(before: String after: String first: Int): FacebookBusinessUserConnection! - picture(width: Int type: FacebookBusinessTypeEnum redirect: Boolean height: Int before: String after: String first: Int): FacebookBusinessProfilePictureSourceConnection! - videos(type: FacebookBusinessTypeEnum before: String after: String first: Int): FacebookBusinessAdVideoConnection! + albums(before: String, after: String, first: Int): FacebookBusinessAlbumConnection! + docs(before: String, after: String, first: Int): FacebookBusinessJSONConnection! + events(before: String, after: String, first: Int): FacebookBusinessEventConnection! + groups(before: String, after: String, first: Int): FacebookBusinessGroupConnection! + liveVideos( + source: FacebookBusinessSourceEnum + broadcastStatus: [FacebookBusinessBroadcastStatusEnum!] + before: String + after: String + first: Int + ): FacebookBusinessLiveVideoConnection! + optedInMembers(before: String, after: String, first: Int): FacebookBusinessUserConnection! + picture( + width: Int + type: FacebookBusinessTypeEnum + redirect: Boolean + height: Int + before: String + after: String + first: Int + ): FacebookBusinessProfilePictureSourceConnection! + videos( + type: FacebookBusinessTypeEnum + before: String + after: String + first: Int + ): FacebookBusinessAdVideoConnection! } type FacebookBusinessGroupConnection { @@ -75730,28 +76808,95 @@ type FacebookBusinessApplication { userSupportUrl: String websiteUrl: String weeklyActiveUsers: String - accounts(type: FacebookBusinessTypeEnum before: String after: String first: Int): FacebookBusinessJSONConnection! - adNetworkAnalytics(until: String since: String orderingType: FacebookBusinessOrderingTypeEnum orderingColumn: FacebookBusinessOrderingColumnEnum metrics: [FacebookBusinessMetricsEnum!]! filtersJson: [JSON!] breakdowns: [FacebookBusinessBreakdownsEnum!] aggregationPeriod: FacebookBusinessAggregationPeriodEnum before: String after: String first: Int): FacebookBusinessAdNetworkAnalyticsSyncQueryResultConnection! - adNetworkAnalyticsResults(queryIds: [String!] before: String after: String first: Int): FacebookBusinessAdNetworkAnalyticsAsyncQueryResultConnection! - agencies(before: String after: String first: Int): FacebookBusinessBusinessConnection! - appEventTypes(before: String after: String first: Int): FacebookBusinessJSONConnection! - appInsights(until: String since: String period: FacebookBusinessPeriodEnum metricKey: String! intervalsToAggregate: Int eventName: String ecosystem: FacebookBusinessEcosystemEnum breakdowns: [String!] aggregateby: FacebookBusinessAggregatebyEnum before: String after: String first: Int): FacebookBusinessJSONConnection! - appInstalledGroups(groupId: String before: String after: String first: Int): FacebookBusinessGroupConnection! - appAssets(before: String after: String first: Int): FacebookBusinessJSONConnection! - authorizedAdAccounts(business: String before: String after: String first: Int): FacebookBusinessAdAccountConnection! - buttonAutoDetectionDeviceSelection(deviceId: String before: String after: String first: Int): FacebookBusinessJSONConnection! - daChecks(checks: [String!] before: String after: String first: Int): FacebookBusinessDACheckConnection! - events(type: FacebookBusinessTypeEnum includeCanceled: Boolean before: String after: String first: Int): FacebookBusinessEventConnection! - insightsPushSchedule(before: String after: String first: Int): FacebookBusinessJSONConnection! - iosDialogConfigs(before: String after: String first: Int): FacebookBusinessJSONConnection! - mobileSdkGk(sdkVersion: String! platform: FacebookBusinessPlatformEnum! extinfoJson: JSON deviceId: String before: String after: String first: Int): FacebookBusinessJSONConnection! - ozoneRelease(before: String after: String first: Int): FacebookBusinessJSONConnection! - permissions(status: [FacebookBusinessStatusEnum!] proxiedAppId: Int iosBundleId: String androidKeyHash: String before: String after: String first: Int): FacebookBusinessJSONConnection! - products(productIds: [String!] before: String after: String first: Int): FacebookBusinessJSONConnection! - purchases(isPremium: Boolean before: String after: String first: Int): FacebookBusinessJSONConnection! - roles(before: String after: String first: Int): FacebookBusinessJSONConnection! - subscribedDomains(before: String after: String first: Int): FacebookBusinessJSONConnection! - subscribedDomainsPhishing(before: String after: String first: Int): FacebookBusinessJSONConnection! + accounts( + type: FacebookBusinessTypeEnum + before: String + after: String + first: Int + ): FacebookBusinessJSONConnection! + adNetworkAnalytics( + until: String + since: String + orderingType: FacebookBusinessOrderingTypeEnum + orderingColumn: FacebookBusinessOrderingColumnEnum + metrics: [FacebookBusinessMetricsEnum!]! + filtersJson: [JSON!] + breakdowns: [FacebookBusinessBreakdownsEnum!] + aggregationPeriod: FacebookBusinessAggregationPeriodEnum + before: String + after: String + first: Int + ): FacebookBusinessAdNetworkAnalyticsSyncQueryResultConnection! + adNetworkAnalyticsResults( + queryIds: [String!] + before: String + after: String + first: Int + ): FacebookBusinessAdNetworkAnalyticsAsyncQueryResultConnection! + agencies(before: String, after: String, first: Int): FacebookBusinessBusinessConnection! + appEventTypes(before: String, after: String, first: Int): FacebookBusinessJSONConnection! + appInsights( + until: String + since: String + period: FacebookBusinessPeriodEnum + metricKey: String! + intervalsToAggregate: Int + eventName: String + ecosystem: FacebookBusinessEcosystemEnum + breakdowns: [String!] + aggregateby: FacebookBusinessAggregatebyEnum + before: String + after: String + first: Int + ): FacebookBusinessJSONConnection! + appInstalledGroups(groupId: String, before: String, after: String, first: Int): FacebookBusinessGroupConnection! + appAssets(before: String, after: String, first: Int): FacebookBusinessJSONConnection! + authorizedAdAccounts( + business: String + before: String + after: String + first: Int + ): FacebookBusinessAdAccountConnection! + buttonAutoDetectionDeviceSelection( + deviceId: String + before: String + after: String + first: Int + ): FacebookBusinessJSONConnection! + daChecks(checks: [String!], before: String, after: String, first: Int): FacebookBusinessDACheckConnection! + events( + type: FacebookBusinessTypeEnum + includeCanceled: Boolean + before: String + after: String + first: Int + ): FacebookBusinessEventConnection! + insightsPushSchedule(before: String, after: String, first: Int): FacebookBusinessJSONConnection! + iosDialogConfigs(before: String, after: String, first: Int): FacebookBusinessJSONConnection! + mobileSdkGk( + sdkVersion: String! + platform: FacebookBusinessPlatformEnum! + extinfoJson: JSON + deviceId: String + before: String + after: String + first: Int + ): FacebookBusinessJSONConnection! + ozoneRelease(before: String, after: String, first: Int): FacebookBusinessJSONConnection! + permissions( + status: [FacebookBusinessStatusEnum!] + proxiedAppId: Int + iosBundleId: String + androidKeyHash: String + before: String + after: String + first: Int + ): FacebookBusinessJSONConnection! + products(productIds: [String!], before: String, after: String, first: Int): FacebookBusinessJSONConnection! + purchases(isPremium: Boolean, before: String, after: String, first: Int): FacebookBusinessJSONConnection! + roles(before: String, after: String, first: Int): FacebookBusinessJSONConnection! + subscribedDomains(before: String, after: String, first: Int): FacebookBusinessJSONConnection! + subscribedDomainsPhishing(before: String, after: String, first: Int): FacebookBusinessJSONConnection! } type FacebookBusinessApplicationConnection { @@ -75858,11 +77003,20 @@ type FacebookBusinessAdsPixel { name: String ownerAdAccount: FacebookBusinessAdAccount ownerBusiness: FacebookBusinessBusiness - assignedUsers(business: String! before: String after: String first: Int): FacebookBusinessAssignedUserConnection! - daChecks(checks: [String!] before: String after: String first: Int): FacebookBusinessDACheckConnection! - sharedAccounts(business: String! before: String after: String first: Int): FacebookBusinessAdAccountConnection! - sharedAgencies(before: String after: String first: Int): FacebookBusinessBusinessConnection! - stats(startTime: String eventSource: String event: String endTime: String aggregation: FacebookBusinessAggregationEnum before: String after: String first: Int): FacebookBusinessAdsPixelStatsResultConnection! + assignedUsers(business: String!, before: String, after: String, first: Int): FacebookBusinessAssignedUserConnection! + daChecks(checks: [String!], before: String, after: String, first: Int): FacebookBusinessDACheckConnection! + sharedAccounts(business: String!, before: String, after: String, first: Int): FacebookBusinessAdAccountConnection! + sharedAgencies(before: String, after: String, first: Int): FacebookBusinessBusinessConnection! + stats( + startTime: String + eventSource: String + event: String + endTime: String + aggregation: FacebookBusinessAggregationEnum + before: String + after: String + first: Int + ): FacebookBusinessAdsPixelStatsResultConnection! } type FacebookBusinessAdsPixelConnection { @@ -75896,13 +77050,13 @@ type FacebookBusinessAdStudyObjective { lastUpdatedResults: String name: String results: [String] - adPlacePageSets(before: String after: String first: Int): FacebookBusinessAdPlacePageSetConnection! - adsPixels(before: String after: String first: Int): FacebookBusinessAdsPixelConnection! - applications(before: String after: String first: Int): FacebookBusinessApplicationConnection! - customConversions(before: String after: String first: Int): FacebookBusinessCustomConversionConnection! - offlineConversionDataSets(before: String after: String first: Int): FacebookBusinessOfflineConversionDataSetConnection! - offsitePixels(before: String after: String first: Int): FacebookBusinessOffsitePixelConnection! - partnerStudies(before: String after: String first: Int): FacebookBusinessPartnerStudyConnection! + adPlacePageSets(before: String, after: String, first: Int): FacebookBusinessAdPlacePageSetConnection! + adsPixels(before: String, after: String, first: Int): FacebookBusinessAdsPixelConnection! + applications(before: String, after: String, first: Int): FacebookBusinessApplicationConnection! + customConversions(before: String, after: String, first: Int): FacebookBusinessCustomConversionConnection! + offlineConversionDataSets(before: String, after: String, first: Int): FacebookBusinessOfflineConversionDataSetConnection! + offsitePixels(before: String, after: String, first: Int): FacebookBusinessOffsitePixelConnection! + partnerStudies(before: String, after: String, first: Int): FacebookBusinessPartnerStudyConnection! } type FacebookBusinessAdStudyObjectiveConnection { @@ -77227,8 +78381,25 @@ type FacebookBusinessAdCreative { urlTags: String usePageActorOverride: Boolean videoId: String - creativeInsights(before: String after: String first: Int): FacebookBusinessAdCreativeInsightsConnection! - previews(width: Int startDate: String renderType: FacebookBusinessRenderTypeEnum productItemIds: [String!] postJson: JSON placePageId: Int locale: String height: Int endDate: String dynamicCustomizationJson: JSON dynamicCreativeSpecJson: JSON dynamicAssetLabel: String adFormat: FacebookBusinessAdFormatEnum! before: String after: String first: Int): FacebookBusinessAdPreviewConnection! + creativeInsights(before: String, after: String, first: Int): FacebookBusinessAdCreativeInsightsConnection! + previews( + width: Int + startDate: String + renderType: FacebookBusinessRenderTypeEnum + productItemIds: [String!] + postJson: JSON + placePageId: Int + locale: String + height: Int + endDate: String + dynamicCustomizationJson: JSON + dynamicCreativeSpecJson: JSON + dynamicAssetLabel: String + adFormat: FacebookBusinessAdFormatEnum! + before: String + after: String + first: Int + ): FacebookBusinessAdPreviewConnection! } """ @@ -77348,13 +78519,67 @@ type FacebookBusinessAd { trackingAndConversionWithDefaults: FacebookBusinessTrackingAndConversionWithDefaults trackingSpecs: [FacebookBusinessConversionActionQuery] updatedTime: String - adCreatives(before: String after: String first: Int): FacebookBusinessAdCreativeConnection! - adRulesGoverned(passEvaluation: Boolean before: String after: String first: Int): FacebookBusinessAdRuleConnection! - copies(updatedSince: Int timeRangeJson: JSON effectiveStatus: [String!] datePreset: FacebookBusinessDatePresetEnum before: String after: String first: Int): FacebookBusinessAdConnection! - insights(useAccountAttributionSetting: Boolean timeRangesJson: [JSON!] timeRangeJson: JSON timeIncrement: String summaryActionBreakdowns: [FacebookBusinessSummaryActionBreakdownsEnum!] summary: [String!] sort: [String!] productIdLimit: Int level: FacebookBusinessLevelEnum filteringJson: [JSON!] fields: [String!] exportName: String exportFormat: String exportColumns: [String!] defaultSummary: Boolean datePreset: FacebookBusinessDatePresetEnum breakdowns: [FacebookBusinessBreakdownsEnum!] actionReportTime: FacebookBusinessActionReportTimeEnum actionBreakdowns: [FacebookBusinessActionBreakdownsEnum!] actionAttributionWindows: [FacebookBusinessActionAttributionWindowsEnum!] before: String after: String first: Int): FacebookBusinessAdsInsightsConnection! - leads(before: String after: String first: Int): FacebookBusinessLeadConnection! - previews(width: Int startDate: String renderType: FacebookBusinessRenderTypeEnum productItemIds: [String!] postJson: JSON placePageId: Int locale: String height: Int endDate: String dynamicCustomizationJson: JSON dynamicCreativeSpecJson: JSON dynamicAssetLabel: String adFormat: FacebookBusinessAdFormatEnum! before: String after: String first: Int): FacebookBusinessAdPreviewConnection! - targetingSentenceLines(before: String after: String first: Int): FacebookBusinessTargetingSentenceLineConnection! + adCreatives(before: String, after: String, first: Int): FacebookBusinessAdCreativeConnection! + adRulesGoverned( + passEvaluation: Boolean + before: String + after: String + first: Int + ): FacebookBusinessAdRuleConnection! + copies( + updatedSince: Int + timeRangeJson: JSON + effectiveStatus: [String!] + datePreset: FacebookBusinessDatePresetEnum + before: String + after: String + first: Int + ): FacebookBusinessAdConnection! + insights( + useAccountAttributionSetting: Boolean + timeRangesJson: [JSON!] + timeRangeJson: JSON + timeIncrement: String + summaryActionBreakdowns: [FacebookBusinessSummaryActionBreakdownsEnum!] + summary: [String!] + sort: [String!] + productIdLimit: Int + level: FacebookBusinessLevelEnum + filteringJson: [JSON!] + fields: [String!] + exportName: String + exportFormat: String + exportColumns: [String!] + defaultSummary: Boolean + datePreset: FacebookBusinessDatePresetEnum + breakdowns: [FacebookBusinessBreakdownsEnum!] + actionReportTime: FacebookBusinessActionReportTimeEnum + actionBreakdowns: [FacebookBusinessActionBreakdownsEnum!] + actionAttributionWindows: [FacebookBusinessActionAttributionWindowsEnum!] + before: String + after: String + first: Int + ): FacebookBusinessAdsInsightsConnection! + leads(before: String, after: String, first: Int): FacebookBusinessLeadConnection! + previews( + width: Int + startDate: String + renderType: FacebookBusinessRenderTypeEnum + productItemIds: [String!] + postJson: JSON + placePageId: Int + locale: String + height: Int + endDate: String + dynamicCustomizationJson: JSON + dynamicCreativeSpecJson: JSON + dynamicAssetLabel: String + adFormat: FacebookBusinessAdFormatEnum! + before: String + after: String + first: Int + ): FacebookBusinessAdPreviewConnection! + targetingSentenceLines(before: String, after: String, first: Int): FacebookBusinessTargetingSentenceLineConnection! } type FacebookBusinessAdConnection { @@ -77549,7 +78774,14 @@ type FacebookBusinessAdRule { scheduleSpec: FacebookBusinessAdRuleScheduleSpec status: String updatedTime: String - history(objectId: String hideNoChanges: Boolean action: FacebookBusinessActionEnum before: String after: String first: Int): FacebookBusinessAdRuleHistoryConnection! + history( + objectId: String + hideNoChanges: Boolean + action: FacebookBusinessActionEnum + before: String + after: String + first: Int + ): FacebookBusinessAdRuleHistoryConnection! } type FacebookBusinessAdRuleConnection { @@ -77665,13 +78897,80 @@ type FacebookBusinessCampaign { stopTime: String toplineId: String updatedTime: String - adStudies(before: String after: String first: Int): FacebookBusinessAdStudyConnection! - adRulesGoverned(passEvaluation: Boolean before: String after: String first: Int): FacebookBusinessAdRuleConnection! - ads(updatedSince: Int timeRangeJson: JSON includeDrafts: Boolean effectiveStatus: [String!] datePreset: FacebookBusinessDatePresetEnum adDraftId: String before: String after: String first: Int): FacebookBusinessAdConnection! - adSets(timeRangeJson: JSON isCompleted: Boolean includeDrafts: Boolean effectiveStatus: [FacebookBusinessEffectiveStatusEnum!] datePreset: FacebookBusinessDatePresetEnum adDraftId: String before: String after: String first: Int): FacebookBusinessAdSetConnection! - contentDeliveryReport(summary: Boolean startDate: String position: FacebookBusinessPositionEnum! platform: FacebookBusinessPlatformEnum! pageId: Int endDate: String before: String after: String first: Int): FacebookBusinessContentDeliveryReportConnection! - copies(timeRangeJson: JSON isCompleted: Boolean effectiveStatus: [FacebookBusinessEffectiveStatusEnum!] datePreset: FacebookBusinessDatePresetEnum before: String after: String first: Int): FacebookBusinessCampaignConnection! - insights(useAccountAttributionSetting: Boolean timeRangesJson: [JSON!] timeRangeJson: JSON timeIncrement: String summaryActionBreakdowns: [FacebookBusinessSummaryActionBreakdownsEnum!] summary: [String!] sort: [String!] productIdLimit: Int level: FacebookBusinessLevelEnum filteringJson: [JSON!] fields: [String!] exportName: String exportFormat: String exportColumns: [String!] defaultSummary: Boolean datePreset: FacebookBusinessDatePresetEnum breakdowns: [FacebookBusinessBreakdownsEnum!] actionReportTime: FacebookBusinessActionReportTimeEnum actionBreakdowns: [FacebookBusinessActionBreakdownsEnum!] actionAttributionWindows: [FacebookBusinessActionAttributionWindowsEnum!] before: String after: String first: Int): FacebookBusinessAdsInsightsConnection! + adStudies(before: String, after: String, first: Int): FacebookBusinessAdStudyConnection! + adRulesGoverned( + passEvaluation: Boolean + before: String + after: String + first: Int + ): FacebookBusinessAdRuleConnection! + ads( + updatedSince: Int + timeRangeJson: JSON + includeDrafts: Boolean + effectiveStatus: [String!] + datePreset: FacebookBusinessDatePresetEnum + adDraftId: String + before: String + after: String + first: Int + ): FacebookBusinessAdConnection! + adSets( + timeRangeJson: JSON + isCompleted: Boolean + includeDrafts: Boolean + effectiveStatus: [FacebookBusinessEffectiveStatusEnum!] + datePreset: FacebookBusinessDatePresetEnum + adDraftId: String + before: String + after: String + first: Int + ): FacebookBusinessAdSetConnection! + contentDeliveryReport( + summary: Boolean + startDate: String + position: FacebookBusinessPositionEnum! + platform: FacebookBusinessPlatformEnum! + pageId: Int + endDate: String + before: String + after: String + first: Int + ): FacebookBusinessContentDeliveryReportConnection! + copies( + timeRangeJson: JSON + isCompleted: Boolean + effectiveStatus: [FacebookBusinessEffectiveStatusEnum!] + datePreset: FacebookBusinessDatePresetEnum + before: String + after: String + first: Int + ): FacebookBusinessCampaignConnection! + insights( + useAccountAttributionSetting: Boolean + timeRangesJson: [JSON!] + timeRangeJson: JSON + timeIncrement: String + summaryActionBreakdowns: [FacebookBusinessSummaryActionBreakdownsEnum!] + summary: [String!] + sort: [String!] + productIdLimit: Int + level: FacebookBusinessLevelEnum + filteringJson: [JSON!] + fields: [String!] + exportName: String + exportFormat: String + exportColumns: [String!] + defaultSummary: Boolean + datePreset: FacebookBusinessDatePresetEnum + breakdowns: [FacebookBusinessBreakdownsEnum!] + actionReportTime: FacebookBusinessActionReportTimeEnum + actionBreakdowns: [FacebookBusinessActionBreakdownsEnum!] + actionAttributionWindows: [FacebookBusinessActionAttributionWindowsEnum!] + before: String + after: String + first: Int + ): FacebookBusinessAdsInsightsConnection! } type FacebookBusinessCampaignConnection { @@ -77698,9 +78997,9 @@ type FacebookBusinessAdStudyCell { id: String name: String treatmentPercentage: Float - adAccounts(before: String after: String first: Int): FacebookBusinessAdAccountConnection! - adSets(before: String after: String first: Int): FacebookBusinessAdSetConnection! - campaigns(before: String after: String first: Int): FacebookBusinessCampaignConnection! + adAccounts(before: String, after: String, first: Int): FacebookBusinessAdAccountConnection! + adSets(before: String, after: String, first: Int): FacebookBusinessAdSetConnection! + campaigns(before: String, after: String, first: Int): FacebookBusinessCampaignConnection! } type FacebookBusinessAdStudyCellConnection { @@ -77726,8 +79025,8 @@ type FacebookBusinessAdStudy { startTime: String updatedBy: FacebookBusinessUser updatedTime: String - cells(before: String after: String first: Int): FacebookBusinessAdStudyCellConnection! - objectives(before: String after: String first: Int): FacebookBusinessAdStudyObjectiveConnection! + cells(before: String, after: String, first: Int): FacebookBusinessAdStudyCellConnection! + objectives(before: String, after: String, first: Int): FacebookBusinessAdStudyObjectiveConnection! } type FacebookBusinessAdStudyConnection { @@ -77758,51 +79057,122 @@ type FacebookBusinessBusiness { verificationStatus: String vertical: String verticalId: Int - adStudies(before: String after: String first: Int): FacebookBusinessAdStudyConnection! - adNetworkAnalytics(until: String since: String orderingType: FacebookBusinessOrderingTypeEnum orderingColumn: FacebookBusinessOrderingColumnEnum metrics: [FacebookBusinessMetricsEnum!]! filtersJson: [JSON!] breakdowns: [FacebookBusinessBreakdownsEnum!] aggregationPeriod: FacebookBusinessAggregationPeriodEnum before: String after: String first: Int): FacebookBusinessAdNetworkAnalyticsSyncQueryResultConnection! - adNetworkAnalyticsResults(queryIds: [String!] before: String after: String first: Int): FacebookBusinessAdNetworkAnalyticsAsyncQueryResultConnection! - adsPixels(sortBy: FacebookBusinessSortByEnum nameFilter: String idFilter: String before: String after: String first: Int): FacebookBusinessAdsPixelConnection! - agencies(before: String after: String first: Int): FacebookBusinessBusinessConnection! - anPlacements(before: String after: String first: Int): FacebookBusinessAdPlacementConnection! - attemptedSharingAgreements(requestingBusinessId: String requestStatus: FacebookBusinessRequestStatusEnum before: String after: String first: Int): FacebookBusinessBusinessCreativeFolderSharingAgreementConnection! - businessAssetGroups(before: String after: String first: Int): FacebookBusinessBusinessAssetGroupConnection! - businessInvoices(type: FacebookBusinessTypeEnum startDate: String rootId: Int issueStartDate: String issueEndDate: String invoiceId: Int endDate: String before: String after: String first: Int): FacebookBusinessOracleTransactionConnection! - businessUnits(before: String after: String first: Int): FacebookBusinessBusinessUnitConnection! - businessUsers(before: String after: String first: Int): FacebookBusinessBusinessUserConnection! - clientAdAccounts(before: String after: String first: Int): FacebookBusinessAdAccountConnection! - clientApps(before: String after: String first: Int): FacebookBusinessApplicationConnection! - clientPages(before: String after: String first: Int): FacebookBusinessPageConnection! - clientPixels(before: String after: String first: Int): FacebookBusinessAdsPixelConnection! - clientProductCatalogs(before: String after: String first: Int): FacebookBusinessProductCatalogConnection! - clients(before: String after: String first: Int): FacebookBusinessBusinessConnection! - contentDeliveryReport(summary: Boolean startDate: String position: FacebookBusinessPositionEnum! platform: FacebookBusinessPlatformEnum! pageId: Int endDate: String before: String after: String first: Int): FacebookBusinessContentDeliveryReportConnection! - creativeAssetTags(before: String after: String first: Int): FacebookBusinessCreativeAssetTagConnection! - creativeFolders(before: String after: String first: Int): FacebookBusinessBusinessCreativeFolderConnection! - creatives(creativeFolderId: String before: String after: String first: Int): FacebookBusinessBusinessCreativeConnection! - eventSourceGroups(before: String after: String first: Int): FacebookBusinessEventSourceGroupConnection! - extendedCredits(before: String after: String first: Int): FacebookBusinessExtendedCreditConnection! - initiatedAudienceSharingRequests(requestStatus: FacebookBusinessRequestStatusEnum recipientId: String before: String after: String first: Int): FacebookBusinessBusinessAssetSharingAgreementConnection! - instagramAccounts(before: String after: String first: Int): FacebookBusinessInstagramUserConnection! - offlineConversionDataSets(before: String after: String first: Int): FacebookBusinessOfflineConversionDataSetConnection! - ownedAdAccounts(before: String after: String first: Int): FacebookBusinessAdAccountConnection! - ownedApps(before: String after: String first: Int): FacebookBusinessApplicationConnection! - ownedBusinesses(clientUserId: Int before: String after: String first: Int): FacebookBusinessBusinessConnection! - ownedInstagramAccounts(before: String after: String first: Int): FacebookBusinessInstagramUserConnection! - ownedPages(before: String after: String first: Int): FacebookBusinessPageConnection! - ownedPixels(before: String after: String first: Int): FacebookBusinessAdsPixelConnection! - ownedProductCatalogs(before: String after: String first: Int): FacebookBusinessProductCatalogConnection! - pendingClientAdAccounts(before: String after: String first: Int): FacebookBusinessBusinessAdAccountRequestConnection! - pendingClientApps(before: String after: String first: Int): FacebookBusinessBusinessApplicationRequestConnection! - pendingClientPages(before: String after: String first: Int): FacebookBusinessBusinessPageRequestConnection! - pendingOwnedAdAccounts(before: String after: String first: Int): FacebookBusinessBusinessAdAccountRequestConnection! - pendingOwnedPages(before: String after: String first: Int): FacebookBusinessBusinessPageRequestConnection! - pendingSharedCreativeFolders(before: String after: String first: Int): FacebookBusinessBusinessCreativeFolderConnection! - pendingUsers(email: String before: String after: String first: Int): FacebookBusinessBusinessRoleRequestConnection! - picture(width: Int type: FacebookBusinessTypeEnum redirect: Boolean height: Int before: String after: String first: Int): FacebookBusinessProfilePictureSourceConnection! - pixelTos(before: String after: String first: Int): FacebookBusinessBusinessPixelTOSConnection! - receivedAudienceSharingRequests(requestStatus: FacebookBusinessRequestStatusEnum initiatorId: String before: String after: String first: Int): FacebookBusinessBusinessAssetSharingAgreementConnection! - systemUsers(before: String after: String first: Int): FacebookBusinessSystemUserConnection! - thirdPartyMeasurementReportDataset(before: String after: String first: Int): FacebookBusinessThirdPartyMeasurementReportDatasetConnection! + adStudies(before: String, after: String, first: Int): FacebookBusinessAdStudyConnection! + adNetworkAnalytics( + until: String + since: String + orderingType: FacebookBusinessOrderingTypeEnum + orderingColumn: FacebookBusinessOrderingColumnEnum + metrics: [FacebookBusinessMetricsEnum!]! + filtersJson: [JSON!] + breakdowns: [FacebookBusinessBreakdownsEnum!] + aggregationPeriod: FacebookBusinessAggregationPeriodEnum + before: String + after: String + first: Int + ): FacebookBusinessAdNetworkAnalyticsSyncQueryResultConnection! + adNetworkAnalyticsResults( + queryIds: [String!] + before: String + after: String + first: Int + ): FacebookBusinessAdNetworkAnalyticsAsyncQueryResultConnection! + adsPixels( + sortBy: FacebookBusinessSortByEnum + nameFilter: String + idFilter: String + before: String + after: String + first: Int + ): FacebookBusinessAdsPixelConnection! + agencies(before: String, after: String, first: Int): FacebookBusinessBusinessConnection! + anPlacements(before: String, after: String, first: Int): FacebookBusinessAdPlacementConnection! + attemptedSharingAgreements( + requestingBusinessId: String + requestStatus: FacebookBusinessRequestStatusEnum + before: String + after: String + first: Int + ): FacebookBusinessBusinessCreativeFolderSharingAgreementConnection! + businessAssetGroups(before: String, after: String, first: Int): FacebookBusinessBusinessAssetGroupConnection! + businessInvoices( + type: FacebookBusinessTypeEnum + startDate: String + rootId: Int + issueStartDate: String + issueEndDate: String + invoiceId: Int + endDate: String + before: String + after: String + first: Int + ): FacebookBusinessOracleTransactionConnection! + businessUnits(before: String, after: String, first: Int): FacebookBusinessBusinessUnitConnection! + businessUsers(before: String, after: String, first: Int): FacebookBusinessBusinessUserConnection! + clientAdAccounts(before: String, after: String, first: Int): FacebookBusinessAdAccountConnection! + clientApps(before: String, after: String, first: Int): FacebookBusinessApplicationConnection! + clientPages(before: String, after: String, first: Int): FacebookBusinessPageConnection! + clientPixels(before: String, after: String, first: Int): FacebookBusinessAdsPixelConnection! + clientProductCatalogs(before: String, after: String, first: Int): FacebookBusinessProductCatalogConnection! + clients(before: String, after: String, first: Int): FacebookBusinessBusinessConnection! + contentDeliveryReport( + summary: Boolean + startDate: String + position: FacebookBusinessPositionEnum! + platform: FacebookBusinessPlatformEnum! + pageId: Int + endDate: String + before: String + after: String + first: Int + ): FacebookBusinessContentDeliveryReportConnection! + creativeAssetTags(before: String, after: String, first: Int): FacebookBusinessCreativeAssetTagConnection! + creativeFolders(before: String, after: String, first: Int): FacebookBusinessBusinessCreativeFolderConnection! + creatives(creativeFolderId: String, before: String, after: String, first: Int): FacebookBusinessBusinessCreativeConnection! + eventSourceGroups(before: String, after: String, first: Int): FacebookBusinessEventSourceGroupConnection! + extendedCredits(before: String, after: String, first: Int): FacebookBusinessExtendedCreditConnection! + initiatedAudienceSharingRequests( + requestStatus: FacebookBusinessRequestStatusEnum + recipientId: String + before: String + after: String + first: Int + ): FacebookBusinessBusinessAssetSharingAgreementConnection! + instagramAccounts(before: String, after: String, first: Int): FacebookBusinessInstagramUserConnection! + offlineConversionDataSets(before: String, after: String, first: Int): FacebookBusinessOfflineConversionDataSetConnection! + ownedAdAccounts(before: String, after: String, first: Int): FacebookBusinessAdAccountConnection! + ownedApps(before: String, after: String, first: Int): FacebookBusinessApplicationConnection! + ownedBusinesses(clientUserId: Int, before: String, after: String, first: Int): FacebookBusinessBusinessConnection! + ownedInstagramAccounts(before: String, after: String, first: Int): FacebookBusinessInstagramUserConnection! + ownedPages(before: String, after: String, first: Int): FacebookBusinessPageConnection! + ownedPixels(before: String, after: String, first: Int): FacebookBusinessAdsPixelConnection! + ownedProductCatalogs(before: String, after: String, first: Int): FacebookBusinessProductCatalogConnection! + pendingClientAdAccounts(before: String, after: String, first: Int): FacebookBusinessBusinessAdAccountRequestConnection! + pendingClientApps(before: String, after: String, first: Int): FacebookBusinessBusinessApplicationRequestConnection! + pendingClientPages(before: String, after: String, first: Int): FacebookBusinessBusinessPageRequestConnection! + pendingOwnedAdAccounts(before: String, after: String, first: Int): FacebookBusinessBusinessAdAccountRequestConnection! + pendingOwnedPages(before: String, after: String, first: Int): FacebookBusinessBusinessPageRequestConnection! + pendingSharedCreativeFolders(before: String, after: String, first: Int): FacebookBusinessBusinessCreativeFolderConnection! + pendingUsers(email: String, before: String, after: String, first: Int): FacebookBusinessBusinessRoleRequestConnection! + picture( + width: Int + type: FacebookBusinessTypeEnum + redirect: Boolean + height: Int + before: String + after: String + first: Int + ): FacebookBusinessProfilePictureSourceConnection! + pixelTos(before: String, after: String, first: Int): FacebookBusinessBusinessPixelTOSConnection! + receivedAudienceSharingRequests( + requestStatus: FacebookBusinessRequestStatusEnum + initiatorId: String + before: String + after: String + first: Int + ): FacebookBusinessBusinessAssetSharingAgreementConnection! + systemUsers(before: String, after: String, first: Int): FacebookBusinessSystemUserConnection! + thirdPartyMeasurementReportDataset(before: String, after: String, first: Int): FacebookBusinessThirdPartyMeasurementReportDatasetConnection! } """ @@ -77843,7 +79213,7 @@ type FacebookBusinessAdAccountCreationRequest { subvertical: String timeCreated: String vertical: String - adAccounts(before: String after: String first: Int): FacebookBusinessAdAccountConnection! + adAccounts(before: String, after: String, first: Int): FacebookBusinessAdAccountConnection! } """ @@ -77910,63 +79280,355 @@ type FacebookBusinessAdAccount { tosAccepted: JSON userTasks: [String] userTosAccepted: JSON - activities(until: String uid: Int since: String oid: String extraOids: [String!] category: FacebookBusinessCategoryEnum businessId: String addChildren: Boolean before: String after: String first: Int): FacebookBusinessAdActivityConnection! - adPlacePageSets(before: String after: String first: Int): FacebookBusinessAdPlacePageSetConnection! - adStudies(before: String after: String first: Int): FacebookBusinessAdStudyConnection! - adCreatives(before: String after: String first: Int): FacebookBusinessAdCreativeConnection! - adCreativesByLabels(operator: FacebookBusinessOperatorEnum adLabelIds: [String!]! before: String after: String first: Int): FacebookBusinessAdCreativeConnection! - adImages(name: String minwidth: Int minheight: Int hashes: [String!] businessId: String bizTagId: Int before: String after: String first: Int): FacebookBusinessAdImageConnection! - adLabels(before: String after: String first: Int): FacebookBusinessAdLabelConnection! - adPlayables(before: String after: String first: Int): FacebookBusinessPlayableContentConnection! - adReportSchedules(before: String after: String first: Int): FacebookBusinessJSONConnection! - adRulesHistory(objectId: String hideNoChanges: Boolean evaluationType: FacebookBusinessEvaluationTypeEnum action: FacebookBusinessActionEnum before: String after: String first: Int): FacebookBusinessAdAccountAdRulesHistoryConnection! - adRulesLibrary(before: String after: String first: Int): FacebookBusinessAdRuleConnection! - ads(useEmployeeDraft: Boolean updatedSince: Int timeRangeJson: JSON includeDrafts: Boolean effectiveStatus: [String!] datePreset: FacebookBusinessDatePresetEnum adDraftId: String before: String after: String first: Int): FacebookBusinessAdConnection! - adsVolume(showBreakdownByActor: Boolean pageId: Int before: String after: String first: Int): FacebookBusinessAdAccountAdVolumeConnection! - adsByLabels(operator: FacebookBusinessOperatorEnum adLabelIds: [String!]! before: String after: String first: Int): FacebookBusinessAdConnection! - adSets(useEmployeeDraft: Boolean timeRangeJson: JSON isCompleted: Boolean includeDrafts: Boolean effectiveStatus: [FacebookBusinessEffectiveStatusEnum!] datePreset: FacebookBusinessDatePresetEnum adDraftId: String before: String after: String first: Int): FacebookBusinessAdSetConnection! - adSetsByLabels(operator: FacebookBusinessOperatorEnum adLabelIds: [String!]! before: String after: String first: Int): FacebookBusinessAdSetConnection! - adsPixels(sortBy: FacebookBusinessSortByEnum before: String after: String first: Int): FacebookBusinessAdsPixelConnection! - advertisableApplications(businessId: String appId: String before: String after: String first: Int): FacebookBusinessApplicationConnection! - adVideos(title: String minwidth: Int minlength: Int minheight: Int minAspectRatio: Float maxwidth: Int maxlength: Int maxheight: Int maxAspectRatio: Float before: String after: String first: Int): FacebookBusinessAdVideoConnection! - affectedAdSets(before: String after: String first: Int): FacebookBusinessAdSetConnection! - agencies(before: String after: String first: Int): FacebookBusinessBusinessConnection! - applications(before: String after: String first: Int): FacebookBusinessApplicationConnection! - assignedUsers(business: String! before: String after: String first: Int): FacebookBusinessAssignedUserConnection! - asyncRequests(type: FacebookBusinessTypeEnum status: FacebookBusinessStatusEnum before: String after: String first: Int): FacebookBusinessAsyncRequestConnection! - asyncAdRequestSets(isCompleted: Boolean before: String after: String first: Int): FacebookBusinessAdAsyncRequestSetConnection! - broadTargetingCategories(customCategoriesOnly: Boolean before: String after: String first: Int): FacebookBusinessBroadTargetingCategoriesConnection! - campaigns(useEmployeeDraft: Boolean timeRangeJson: JSON isCompleted: Boolean includeDrafts: Boolean effectiveStatus: [FacebookBusinessEffectiveStatusEnum!] datePreset: FacebookBusinessDatePresetEnum before: String after: String first: Int): FacebookBusinessCampaignConnection! - campaignsByLabels(operator: FacebookBusinessOperatorEnum adLabelIds: [String!]! before: String after: String first: Int): FacebookBusinessCampaignConnection! - contentDeliveryReport(summary: Boolean startDate: String position: FacebookBusinessPositionEnum! platform: FacebookBusinessPlatformEnum! pageId: Int endDate: String before: String after: String first: Int): FacebookBusinessContentDeliveryReportConnection! - customAudiences(pixelId: String filteringJson: [JSON!] fields: [String!] businessId: String before: String after: String first: Int): FacebookBusinessCustomAudienceConnection! - customAudiencesTos(before: String after: String first: Int): FacebookBusinessCustomAudiencesTOSConnection! - customConversions(before: String after: String first: Int): FacebookBusinessCustomConversionConnection! - deliveryEstimate(promotedObjectJson: JSON optimizationGoal: FacebookBusinessOptimizationGoalEnum! before: String after: String first: Int): FacebookBusinessAdAccountDeliveryEstimateConnection! - deprecatedTargetingAdSets(type: String before: String after: String first: Int): FacebookBusinessAdSetConnection! - generatePreviews(width: Int startDate: String renderType: FacebookBusinessRenderTypeEnum productItemIds: [String!] postJson: JSON placePageId: Int locale: String height: Int endDate: String dynamicCustomizationJson: JSON dynamicCreativeSpecJson: JSON dynamicAssetLabel: String adFormat: FacebookBusinessAdFormatEnum! before: String after: String first: Int): FacebookBusinessAdPreviewConnection! - impactingAdStudies(before: String after: String first: Int): FacebookBusinessAdStudyConnection! - insights(useAccountAttributionSetting: Boolean timeRangesJson: [JSON!] timeRangeJson: JSON timeIncrement: String summaryActionBreakdowns: [FacebookBusinessSummaryActionBreakdownsEnum!] summary: [String!] sort: [String!] productIdLimit: Int level: FacebookBusinessLevelEnum filteringJson: [JSON!] fields: [String!] exportName: String exportFormat: String exportColumns: [String!] defaultSummary: Boolean datePreset: FacebookBusinessDatePresetEnum breakdowns: [FacebookBusinessBreakdownsEnum!] actionReportTime: FacebookBusinessActionReportTimeEnum actionBreakdowns: [FacebookBusinessActionBreakdownsEnum!] actionAttributionWindows: [FacebookBusinessActionAttributionWindowsEnum!] before: String after: String first: Int): FacebookBusinessAdsInsightsConnection! - instagramAccounts(before: String after: String first: Int): FacebookBusinessInstagramUserConnection! - matchedSearchApplications(queryTerm: String! businessId: String appStoreCountry: String appStore: FacebookBusinessAppStoreEnum! allowIncompleteApp: Boolean before: String after: String first: Int): FacebookBusinessAdAccountMatchedSearchApplicationsEdgeDataConnection! - maxBid(before: String after: String first: Int): FacebookBusinessAdAccountMaxBidConnection! - minimumBudgets(bidAmount: Int before: String after: String first: Int): FacebookBusinessMinimumBudgetConnection! - offlineConversionDataSets(before: String after: String first: Int): FacebookBusinessOfflineConversionDataSetConnection! - onBehalfRequests(status: FacebookBusinessStatusEnum before: String after: String first: Int): FacebookBusinessBusinessOwnedObjectOnBehalfOfRequestConnection! - promotePages(before: String after: String first: Int): FacebookBusinessPageConnection! - publisherBlockLists(before: String after: String first: Int): FacebookBusinessPublisherBlockListConnection! - reachEstimate(objectStoreUrl: String isDebug: Boolean creativeActionSpec: String concepts: String callerId: String adgroupIds: [String!] before: String after: String first: Int): FacebookBusinessAdAccountReachEstimateConnection! - reachFrequencyPredictions(before: String after: String first: Int): FacebookBusinessReachFrequencyPredictionConnection! - roas(timeRangeJson: JSON! timeIncrement: String filteringJson: [JSON!]! fields: [String!] before: String after: String first: Int): FacebookBusinessAdAccountRoasConnection! - savedAudiences(filteringJson: [JSON!] fields: [String!] businessId: String before: String after: String first: Int): FacebookBusinessSavedAudienceConnection! - subscribedApps(before: String after: String first: Int): FacebookBusinessAdAccountSubscribedAppsConnection! - targetingBrowse(whitelistedTypes: [FacebookBusinessWhitelistedTypesEnum!] regulatedCategories: [FacebookBusinessRegulatedCategoriesEnum!] limitType: FacebookBusinessLimitTypeEnum isExclusion: Boolean includeNodes: Boolean excludedCategory: String before: String after: String first: Int): FacebookBusinessAdAccountTargetingUnifiedConnection! - targetingSearch(whitelistedTypes: [FacebookBusinessWhitelistedTypesEnum!] targetingListJson: [JSON!] sessionId: Int regulatedCategories: [FacebookBusinessRegulatedCategoriesEnum!] q: String! limitType: FacebookBusinessLimitTypeEnum isExclusion: Boolean countries: [String!] allowOnlyFatHeadInterests: Boolean before: String after: String first: Int): FacebookBusinessAdAccountTargetingUnifiedConnection! - targetingSentenceLines(hideTargetingSpecFromReturn: Boolean discardPlacements: Boolean discardAges: Boolean before: String after: String first: Int): FacebookBusinessTargetingSentenceLineConnection! - targetingSuggestions(whitelistedTypes: [FacebookBusinessWhitelistedTypesEnum!] targetingListJson: [JSON!] sessionId: Int regulatedCategories: [FacebookBusinessRegulatedCategoriesEnum!] objectsJson: JSON objective: FacebookBusinessObjectiveEnum mode: FacebookBusinessModeEnum limitType: FacebookBusinessLimitTypeEnum countries: [String!] before: String after: String first: Int): FacebookBusinessAdAccountTargetingUnifiedConnection! - targetingValidation(targetingListJson: [JSON!] nameList: [String!] isExclusion: Boolean idList: [Int!] before: String after: String first: Int): FacebookBusinessAdAccountTargetingUnifiedConnection! - tracking(before: String after: String first: Int): FacebookBusinessAdAccountTrackingDataConnection! - users(before: String after: String first: Int): FacebookBusinessAdAccountUserConnection! + activities( + until: String + uid: Int + since: String + oid: String + extraOids: [String!] + category: FacebookBusinessCategoryEnum + businessId: String + addChildren: Boolean + before: String + after: String + first: Int + ): FacebookBusinessAdActivityConnection! + adPlacePageSets(before: String, after: String, first: Int): FacebookBusinessAdPlacePageSetConnection! + adStudies(before: String, after: String, first: Int): FacebookBusinessAdStudyConnection! + adCreatives(before: String, after: String, first: Int): FacebookBusinessAdCreativeConnection! + adCreativesByLabels( + operator: FacebookBusinessOperatorEnum + adLabelIds: [String!]! + before: String + after: String + first: Int + ): FacebookBusinessAdCreativeConnection! + adImages( + name: String + minwidth: Int + minheight: Int + hashes: [String!] + businessId: String + bizTagId: Int + before: String + after: String + first: Int + ): FacebookBusinessAdImageConnection! + adLabels(before: String, after: String, first: Int): FacebookBusinessAdLabelConnection! + adPlayables(before: String, after: String, first: Int): FacebookBusinessPlayableContentConnection! + adReportSchedules(before: String, after: String, first: Int): FacebookBusinessJSONConnection! + adRulesHistory( + objectId: String + hideNoChanges: Boolean + evaluationType: FacebookBusinessEvaluationTypeEnum + action: FacebookBusinessActionEnum + before: String + after: String + first: Int + ): FacebookBusinessAdAccountAdRulesHistoryConnection! + adRulesLibrary(before: String, after: String, first: Int): FacebookBusinessAdRuleConnection! + ads( + useEmployeeDraft: Boolean + updatedSince: Int + timeRangeJson: JSON + includeDrafts: Boolean + effectiveStatus: [String!] + datePreset: FacebookBusinessDatePresetEnum + adDraftId: String + before: String + after: String + first: Int + ): FacebookBusinessAdConnection! + adsVolume( + showBreakdownByActor: Boolean + pageId: Int + before: String + after: String + first: Int + ): FacebookBusinessAdAccountAdVolumeConnection! + adsByLabels( + operator: FacebookBusinessOperatorEnum + adLabelIds: [String!]! + before: String + after: String + first: Int + ): FacebookBusinessAdConnection! + adSets( + useEmployeeDraft: Boolean + timeRangeJson: JSON + isCompleted: Boolean + includeDrafts: Boolean + effectiveStatus: [FacebookBusinessEffectiveStatusEnum!] + datePreset: FacebookBusinessDatePresetEnum + adDraftId: String + before: String + after: String + first: Int + ): FacebookBusinessAdSetConnection! + adSetsByLabels( + operator: FacebookBusinessOperatorEnum + adLabelIds: [String!]! + before: String + after: String + first: Int + ): FacebookBusinessAdSetConnection! + adsPixels( + sortBy: FacebookBusinessSortByEnum + before: String + after: String + first: Int + ): FacebookBusinessAdsPixelConnection! + advertisableApplications( + businessId: String + appId: String + before: String + after: String + first: Int + ): FacebookBusinessApplicationConnection! + adVideos( + title: String + minwidth: Int + minlength: Int + minheight: Int + minAspectRatio: Float + maxwidth: Int + maxlength: Int + maxheight: Int + maxAspectRatio: Float + before: String + after: String + first: Int + ): FacebookBusinessAdVideoConnection! + affectedAdSets(before: String, after: String, first: Int): FacebookBusinessAdSetConnection! + agencies(before: String, after: String, first: Int): FacebookBusinessBusinessConnection! + applications(before: String, after: String, first: Int): FacebookBusinessApplicationConnection! + assignedUsers(business: String!, before: String, after: String, first: Int): FacebookBusinessAssignedUserConnection! + asyncRequests( + type: FacebookBusinessTypeEnum + status: FacebookBusinessStatusEnum + before: String + after: String + first: Int + ): FacebookBusinessAsyncRequestConnection! + asyncAdRequestSets( + isCompleted: Boolean + before: String + after: String + first: Int + ): FacebookBusinessAdAsyncRequestSetConnection! + broadTargetingCategories( + customCategoriesOnly: Boolean + before: String + after: String + first: Int + ): FacebookBusinessBroadTargetingCategoriesConnection! + campaigns( + useEmployeeDraft: Boolean + timeRangeJson: JSON + isCompleted: Boolean + includeDrafts: Boolean + effectiveStatus: [FacebookBusinessEffectiveStatusEnum!] + datePreset: FacebookBusinessDatePresetEnum + before: String + after: String + first: Int + ): FacebookBusinessCampaignConnection! + campaignsByLabels( + operator: FacebookBusinessOperatorEnum + adLabelIds: [String!]! + before: String + after: String + first: Int + ): FacebookBusinessCampaignConnection! + contentDeliveryReport( + summary: Boolean + startDate: String + position: FacebookBusinessPositionEnum! + platform: FacebookBusinessPlatformEnum! + pageId: Int + endDate: String + before: String + after: String + first: Int + ): FacebookBusinessContentDeliveryReportConnection! + customAudiences( + pixelId: String + filteringJson: [JSON!] + fields: [String!] + businessId: String + before: String + after: String + first: Int + ): FacebookBusinessCustomAudienceConnection! + customAudiencesTos(before: String, after: String, first: Int): FacebookBusinessCustomAudiencesTOSConnection! + customConversions(before: String, after: String, first: Int): FacebookBusinessCustomConversionConnection! + deliveryEstimate( + promotedObjectJson: JSON + optimizationGoal: FacebookBusinessOptimizationGoalEnum! + before: String + after: String + first: Int + ): FacebookBusinessAdAccountDeliveryEstimateConnection! + deprecatedTargetingAdSets( + type: String + before: String + after: String + first: Int + ): FacebookBusinessAdSetConnection! + generatePreviews( + width: Int + startDate: String + renderType: FacebookBusinessRenderTypeEnum + productItemIds: [String!] + postJson: JSON + placePageId: Int + locale: String + height: Int + endDate: String + dynamicCustomizationJson: JSON + dynamicCreativeSpecJson: JSON + dynamicAssetLabel: String + adFormat: FacebookBusinessAdFormatEnum! + before: String + after: String + first: Int + ): FacebookBusinessAdPreviewConnection! + impactingAdStudies(before: String, after: String, first: Int): FacebookBusinessAdStudyConnection! + insights( + useAccountAttributionSetting: Boolean + timeRangesJson: [JSON!] + timeRangeJson: JSON + timeIncrement: String + summaryActionBreakdowns: [FacebookBusinessSummaryActionBreakdownsEnum!] + summary: [String!] + sort: [String!] + productIdLimit: Int + level: FacebookBusinessLevelEnum + filteringJson: [JSON!] + fields: [String!] + exportName: String + exportFormat: String + exportColumns: [String!] + defaultSummary: Boolean + datePreset: FacebookBusinessDatePresetEnum + breakdowns: [FacebookBusinessBreakdownsEnum!] + actionReportTime: FacebookBusinessActionReportTimeEnum + actionBreakdowns: [FacebookBusinessActionBreakdownsEnum!] + actionAttributionWindows: [FacebookBusinessActionAttributionWindowsEnum!] + before: String + after: String + first: Int + ): FacebookBusinessAdsInsightsConnection! + instagramAccounts(before: String, after: String, first: Int): FacebookBusinessInstagramUserConnection! + matchedSearchApplications( + queryTerm: String! + businessId: String + appStoreCountry: String + appStore: FacebookBusinessAppStoreEnum! + allowIncompleteApp: Boolean + before: String + after: String + first: Int + ): FacebookBusinessAdAccountMatchedSearchApplicationsEdgeDataConnection! + maxBid(before: String, after: String, first: Int): FacebookBusinessAdAccountMaxBidConnection! + minimumBudgets(bidAmount: Int, before: String, after: String, first: Int): FacebookBusinessMinimumBudgetConnection! + offlineConversionDataSets(before: String, after: String, first: Int): FacebookBusinessOfflineConversionDataSetConnection! + onBehalfRequests( + status: FacebookBusinessStatusEnum + before: String + after: String + first: Int + ): FacebookBusinessBusinessOwnedObjectOnBehalfOfRequestConnection! + promotePages(before: String, after: String, first: Int): FacebookBusinessPageConnection! + publisherBlockLists(before: String, after: String, first: Int): FacebookBusinessPublisherBlockListConnection! + reachEstimate( + objectStoreUrl: String + isDebug: Boolean + creativeActionSpec: String + concepts: String + callerId: String + adgroupIds: [String!] + before: String + after: String + first: Int + ): FacebookBusinessAdAccountReachEstimateConnection! + reachFrequencyPredictions(before: String, after: String, first: Int): FacebookBusinessReachFrequencyPredictionConnection! + roas( + timeRangeJson: JSON! + timeIncrement: String + filteringJson: [JSON!]! + fields: [String!] + before: String + after: String + first: Int + ): FacebookBusinessAdAccountRoasConnection! + savedAudiences( + filteringJson: [JSON!] + fields: [String!] + businessId: String + before: String + after: String + first: Int + ): FacebookBusinessSavedAudienceConnection! + subscribedApps(before: String, after: String, first: Int): FacebookBusinessAdAccountSubscribedAppsConnection! + targetingBrowse( + whitelistedTypes: [FacebookBusinessWhitelistedTypesEnum!] + regulatedCategories: [FacebookBusinessRegulatedCategoriesEnum!] + limitType: FacebookBusinessLimitTypeEnum + isExclusion: Boolean + includeNodes: Boolean + excludedCategory: String + before: String + after: String + first: Int + ): FacebookBusinessAdAccountTargetingUnifiedConnection! + targetingSearch( + whitelistedTypes: [FacebookBusinessWhitelistedTypesEnum!] + targetingListJson: [JSON!] + sessionId: Int + regulatedCategories: [FacebookBusinessRegulatedCategoriesEnum!] + q: String! + limitType: FacebookBusinessLimitTypeEnum + isExclusion: Boolean + countries: [String!] + allowOnlyFatHeadInterests: Boolean + before: String + after: String + first: Int + ): FacebookBusinessAdAccountTargetingUnifiedConnection! + targetingSentenceLines( + hideTargetingSpecFromReturn: Boolean + discardPlacements: Boolean + discardAges: Boolean + before: String + after: String + first: Int + ): FacebookBusinessTargetingSentenceLineConnection! + targetingSuggestions( + whitelistedTypes: [FacebookBusinessWhitelistedTypesEnum!] + targetingListJson: [JSON!] + sessionId: Int + regulatedCategories: [FacebookBusinessRegulatedCategoriesEnum!] + objectsJson: JSON + objective: FacebookBusinessObjectiveEnum + mode: FacebookBusinessModeEnum + limitType: FacebookBusinessLimitTypeEnum + countries: [String!] + before: String + after: String + first: Int + ): FacebookBusinessAdAccountTargetingUnifiedConnection! + targetingValidation( + targetingListJson: [JSON!] + nameList: [String!] + isExclusion: Boolean + idList: [Int!] + before: String + after: String + first: Int + ): FacebookBusinessAdAccountTargetingUnifiedConnection! + tracking(before: String, after: String, first: Int): FacebookBusinessAdAccountTrackingDataConnection! + users(before: String, after: String, first: Int): FacebookBusinessAdAccountUserConnection! } """ @@ -77978,10 +79640,10 @@ type FacebookBusinessAdLabel { id: String name: String updatedTime: String - adCreatives(before: String after: String first: Int): FacebookBusinessAdCreativeConnection! - ads(before: String after: String first: Int): FacebookBusinessAdConnection! - adSets(before: String after: String first: Int): FacebookBusinessAdSetConnection! - campaigns(before: String after: String first: Int): FacebookBusinessCampaignConnection! + adCreatives(before: String, after: String, first: Int): FacebookBusinessAdCreativeConnection! + ads(before: String, after: String, first: Int): FacebookBusinessAdConnection! + adSets(before: String, after: String, first: Int): FacebookBusinessAdSetConnection! + campaigns(before: String, after: String, first: Int): FacebookBusinessCampaignConnection! } """ @@ -78038,17 +79700,93 @@ type FacebookBusinessAdSet { timeBasedAdRotationIntervals: [Int] updatedTime: String useNewAppClick: Boolean - activities(until: String uid: Int since: String category: FacebookBusinessCategoryEnum businessId: String before: String after: String first: Int): FacebookBusinessAdActivityConnection! - adStudies(before: String after: String first: Int): FacebookBusinessAdStudyConnection! - adCreatives(before: String after: String first: Int): FacebookBusinessAdCreativeConnection! - adRulesGoverned(passEvaluation: Boolean before: String after: String first: Int): FacebookBusinessAdRuleConnection! - ads(updatedSince: Int timeRangeJson: JSON includeDrafts: Boolean effectiveStatus: [String!] datePreset: FacebookBusinessDatePresetEnum adDraftId: String before: String after: String first: Int): FacebookBusinessAdConnection! - asyncAdRequests(statuses: [FacebookBusinessStatusesEnum!] before: String after: String first: Int): FacebookBusinessAdAsyncRequestConnection! - contentDeliveryReport(summary: Boolean startDate: String position: FacebookBusinessPositionEnum! platform: FacebookBusinessPlatformEnum! endDate: String before: String after: String first: Int): FacebookBusinessContentDeliveryReportConnection! - copies(timeRangeJson: JSON isCompleted: Boolean effectiveStatus: [FacebookBusinessEffectiveStatusEnum!] datePreset: FacebookBusinessDatePresetEnum before: String after: String first: Int): FacebookBusinessAdSetConnection! - deliveryEstimate(promotedObjectJson: JSON optimizationGoal: FacebookBusinessOptimizationGoalEnum before: String after: String first: Int): FacebookBusinessAdCampaignDeliveryEstimateConnection! - insights(useAccountAttributionSetting: Boolean timeRangesJson: [JSON!] timeRangeJson: JSON timeIncrement: String summaryActionBreakdowns: [FacebookBusinessSummaryActionBreakdownsEnum!] summary: [String!] sort: [String!] productIdLimit: Int level: FacebookBusinessLevelEnum filteringJson: [JSON!] fields: [String!] exportName: String exportFormat: String exportColumns: [String!] defaultSummary: Boolean datePreset: FacebookBusinessDatePresetEnum breakdowns: [FacebookBusinessBreakdownsEnum!] actionReportTime: FacebookBusinessActionReportTimeEnum actionBreakdowns: [FacebookBusinessActionBreakdownsEnum!] actionAttributionWindows: [FacebookBusinessActionAttributionWindowsEnum!] before: String after: String first: Int): FacebookBusinessAdsInsightsConnection! - targetingSentenceLines(before: String after: String first: Int): FacebookBusinessTargetingSentenceLineConnection! + activities( + until: String + uid: Int + since: String + category: FacebookBusinessCategoryEnum + businessId: String + before: String + after: String + first: Int + ): FacebookBusinessAdActivityConnection! + adStudies(before: String, after: String, first: Int): FacebookBusinessAdStudyConnection! + adCreatives(before: String, after: String, first: Int): FacebookBusinessAdCreativeConnection! + adRulesGoverned( + passEvaluation: Boolean + before: String + after: String + first: Int + ): FacebookBusinessAdRuleConnection! + ads( + updatedSince: Int + timeRangeJson: JSON + includeDrafts: Boolean + effectiveStatus: [String!] + datePreset: FacebookBusinessDatePresetEnum + adDraftId: String + before: String + after: String + first: Int + ): FacebookBusinessAdConnection! + asyncAdRequests( + statuses: [FacebookBusinessStatusesEnum!] + before: String + after: String + first: Int + ): FacebookBusinessAdAsyncRequestConnection! + contentDeliveryReport( + summary: Boolean + startDate: String + position: FacebookBusinessPositionEnum! + platform: FacebookBusinessPlatformEnum! + endDate: String + before: String + after: String + first: Int + ): FacebookBusinessContentDeliveryReportConnection! + copies( + timeRangeJson: JSON + isCompleted: Boolean + effectiveStatus: [FacebookBusinessEffectiveStatusEnum!] + datePreset: FacebookBusinessDatePresetEnum + before: String + after: String + first: Int + ): FacebookBusinessAdSetConnection! + deliveryEstimate( + promotedObjectJson: JSON + optimizationGoal: FacebookBusinessOptimizationGoalEnum + before: String + after: String + first: Int + ): FacebookBusinessAdCampaignDeliveryEstimateConnection! + insights( + useAccountAttributionSetting: Boolean + timeRangesJson: [JSON!] + timeRangeJson: JSON + timeIncrement: String + summaryActionBreakdowns: [FacebookBusinessSummaryActionBreakdownsEnum!] + summary: [String!] + sort: [String!] + productIdLimit: Int + level: FacebookBusinessLevelEnum + filteringJson: [JSON!] + fields: [String!] + exportName: String + exportFormat: String + exportColumns: [String!] + defaultSummary: Boolean + datePreset: FacebookBusinessDatePresetEnum + breakdowns: [FacebookBusinessBreakdownsEnum!] + actionReportTime: FacebookBusinessActionReportTimeEnum + actionBreakdowns: [FacebookBusinessActionBreakdownsEnum!] + actionAttributionWindows: [FacebookBusinessActionAttributionWindowsEnum!] + before: String + after: String + first: Int + ): FacebookBusinessAdsInsightsConnection! + targetingSentenceLines(before: String, after: String, first: Int): FacebookBusinessTargetingSentenceLineConnection! } """ @@ -78195,64 +79933,198 @@ type FacebookBusinessPage { wereHereCount: Int whatsappNumber: String writtenBy: String - adsPosts(until: String since: String includeInlineCreate: Boolean excludeDynamicAds: Boolean before: String after: String first: Int): FacebookBusinessPagePostConnection! - agencies(before: String after: String first: Int): FacebookBusinessBusinessConnection! - albums(before: String after: String first: Int): FacebookBusinessAlbumConnection! - assignedUsers(business: String! before: String after: String first: Int): FacebookBusinessAssignedUserConnection! - blocked(user: Int uid: Int before: String after: String first: Int): FacebookBusinessProfileConnection! - callToActions(before: String after: String first: Int): FacebookBusinessPageCallToActionConnection! - canvasElements(before: String after: String first: Int): FacebookBusinessCanvasBodyElementConnection! - canvases(isPublished: Boolean isHidden: Boolean before: String after: String first: Int): FacebookBusinessCanvasConnection! - claimedUrls(before: String after: String first: Int): FacebookBusinessURLConnection! - conversations(userId: String tags: [String!] folder: String before: String after: String first: Int): FacebookBusinessUnifiedThreadConnection! - copyrightWhitelistedPartners(before: String after: String first: Int): FacebookBusinessProfileConnection! - crosspostWhitelistedPages(before: String after: String first: Int): FacebookBusinessPageConnection! - customLabels(before: String after: String first: Int): FacebookBusinessPageUserMessageThreadLabelConnection! - customUserSettings(psid: String! before: String after: String first: Int): FacebookBusinessCustomUserSettingsConnection! - events(type: FacebookBusinessTypeEnum timeFilter: FacebookBusinessTimeFilterEnum includeCanceled: Boolean eventStateFilter: [FacebookBusinessEventStateFilterEnum!] before: String after: String first: Int): FacebookBusinessEventConnection! - featuredVideosCollection(before: String after: String first: Int): FacebookBusinessAdVideoConnection! - feed(with: FacebookBusinessWithEnum showExpired: Boolean includeHidden: Boolean before: String after: String first: Int): FacebookBusinessPagePostConnection! - globalBrandChildren(before: String after: String first: Int): FacebookBusinessPageConnection! - indexedVideos(before: String after: String first: Int): FacebookBusinessAdVideoConnection! - insights(until: String since: String showDescriptionFromApiDoc: Boolean period: FacebookBusinessPeriodEnum metricJson: [JSON!] datePreset: FacebookBusinessDatePresetEnum before: String after: String first: Int): FacebookBusinessInsightsResultConnection! - instagramAccounts(before: String after: String first: Int): FacebookBusinessInstagramUserConnection! - instantArticles(developmentMode: Boolean before: String after: String first: Int): FacebookBusinessInstantArticleConnection! - instantArticlesInsights(until: String since: String period: FacebookBusinessPeriodEnum! metricJson: [JSON!]! breakdown: FacebookBusinessBreakdownEnum before: String after: String first: Int): FacebookBusinessInstantArticleInsightsQueryResultConnection! - leadGenForms(before: String after: String first: Int): FacebookBusinessLeadgenFormConnection! - likes(targetId: String before: String after: String first: Int): FacebookBusinessPageConnection! - liveEncoders(before: String after: String first: Int): FacebookBusinessLiveEncoderConnection! - liveVideos(source: FacebookBusinessSourceEnum broadcastStatus: [FacebookBusinessBroadcastStatusEnum!] before: String after: String first: Int): FacebookBusinessLiveVideoConnection! - locations(before: String after: String first: Int): FacebookBusinessPageConnection! - mediaFingerprints(universalContentId: String before: String after: String first: Int): FacebookBusinessMediaFingerprintConnection! - messagingFeatureReview(before: String after: String first: Int): FacebookBusinessMessagingFeatureReviewConnection! - messengerAdsPageWelcomeMessages(before: String after: String first: Int): FacebookBusinessMessengerDestinationPageWelcomeMessageConnection! - messengerProfile(before: String after: String first: Int): FacebookBusinessMessengerProfileConnection! - nativeOffers(before: String after: String first: Int): FacebookBusinessNativeOfferConnection! - pageBackedInstagramAccounts(before: String after: String first: Int): FacebookBusinessInstagramUserConnection! - personas(before: String after: String first: Int): FacebookBusinessPersonaConnection! - photos(type: FacebookBusinessTypeEnum businessId: String bizTagId: Int before: String after: String first: Int): FacebookBusinessPhotoConnection! - picture(width: Int type: FacebookBusinessTypeEnum redirect: Boolean height: Int before: String after: String first: Int): FacebookBusinessProfilePictureSourceConnection! - placeTopics(before: String after: String first: Int): FacebookBusinessPlaceTopicConnection! - posts(with: FacebookBusinessWithEnum showExpired: Boolean q: String includeHidden: Boolean before: String after: String first: Int): FacebookBusinessPagePostConnection! - productCatalogs(before: String after: String first: Int): FacebookBusinessProductCatalogConnection! - publishedPosts(until: String since: String before: String after: String first: Int): FacebookBusinessPagePostConnection! - ratings(before: String after: String first: Int): FacebookBusinessRecommendationConnection! - roles(uid: Int includeDeactivated: Boolean before: String after: String first: Int): FacebookBusinessUserConnection! - rtbDynamicPosts(before: String after: String first: Int): FacebookBusinessRTBDynamicPostConnection! - scheduledPosts(before: String after: String first: Int): FacebookBusinessPagePostConnection! - secondaryReceivers(before: String after: String first: Int): FacebookBusinessApplicationConnection! - settings(before: String after: String first: Int): FacebookBusinessPageSettingsConnection! - subscribedApps(before: String after: String first: Int): FacebookBusinessApplicationConnection! - tabs(tab: [String!] before: String after: String first: Int): FacebookBusinessTabConnection! - tagged(before: String after: String first: Int): FacebookBusinessPagePostConnection! - threadOwner(recipient: String! before: String after: String first: Int): FacebookBusinessPageThreadOwnerConnection! - threads(userId: String tags: [String!] folder: String before: String after: String first: Int): FacebookBusinessUnifiedThreadConnection! - tours(before: String after: String first: Int): FacebookBusinessEventTourConnection! - upcomingChanges(includeInactive: Boolean before: String after: String first: Int): FacebookBusinessPageUpcomingChangeConnection! - videoCopyrightRules(source: FacebookBusinessSourceEnum selectedRuleId: String before: String after: String first: Int): FacebookBusinessVideoCopyrightRuleConnection! - videoLists(before: String after: String first: Int): FacebookBusinessVideoListConnection! - videos(type: FacebookBusinessTypeEnum before: String after: String first: Int): FacebookBusinessAdVideoConnection! - visitorPosts(includeHidden: Boolean before: String after: String first: Int): FacebookBusinessPagePostConnection! + adsPosts( + until: String + since: String + includeInlineCreate: Boolean + excludeDynamicAds: Boolean + before: String + after: String + first: Int + ): FacebookBusinessPagePostConnection! + agencies(before: String, after: String, first: Int): FacebookBusinessBusinessConnection! + albums(before: String, after: String, first: Int): FacebookBusinessAlbumConnection! + assignedUsers(business: String!, before: String, after: String, first: Int): FacebookBusinessAssignedUserConnection! + blocked(user: Int, uid: Int, before: String, after: String, first: Int): FacebookBusinessProfileConnection! + callToActions(before: String, after: String, first: Int): FacebookBusinessPageCallToActionConnection! + canvasElements(before: String, after: String, first: Int): FacebookBusinessCanvasBodyElementConnection! + canvases( + isPublished: Boolean + isHidden: Boolean + before: String + after: String + first: Int + ): FacebookBusinessCanvasConnection! + claimedUrls(before: String, after: String, first: Int): FacebookBusinessURLConnection! + conversations( + userId: String + tags: [String!] + folder: String + before: String + after: String + first: Int + ): FacebookBusinessUnifiedThreadConnection! + copyrightWhitelistedPartners(before: String, after: String, first: Int): FacebookBusinessProfileConnection! + crosspostWhitelistedPages(before: String, after: String, first: Int): FacebookBusinessPageConnection! + customLabels(before: String, after: String, first: Int): FacebookBusinessPageUserMessageThreadLabelConnection! + customUserSettings(psid: String!, before: String, after: String, first: Int): FacebookBusinessCustomUserSettingsConnection! + events( + type: FacebookBusinessTypeEnum + timeFilter: FacebookBusinessTimeFilterEnum + includeCanceled: Boolean + eventStateFilter: [FacebookBusinessEventStateFilterEnum!] + before: String + after: String + first: Int + ): FacebookBusinessEventConnection! + featuredVideosCollection(before: String, after: String, first: Int): FacebookBusinessAdVideoConnection! + feed( + with: FacebookBusinessWithEnum + showExpired: Boolean + includeHidden: Boolean + before: String + after: String + first: Int + ): FacebookBusinessPagePostConnection! + globalBrandChildren(before: String, after: String, first: Int): FacebookBusinessPageConnection! + indexedVideos(before: String, after: String, first: Int): FacebookBusinessAdVideoConnection! + insights( + until: String + since: String + showDescriptionFromApiDoc: Boolean + period: FacebookBusinessPeriodEnum + metricJson: [JSON!] + datePreset: FacebookBusinessDatePresetEnum + before: String + after: String + first: Int + ): FacebookBusinessInsightsResultConnection! + instagramAccounts(before: String, after: String, first: Int): FacebookBusinessInstagramUserConnection! + instantArticles( + developmentMode: Boolean + before: String + after: String + first: Int + ): FacebookBusinessInstantArticleConnection! + instantArticlesInsights( + until: String + since: String + period: FacebookBusinessPeriodEnum! + metricJson: [JSON!]! + breakdown: FacebookBusinessBreakdownEnum + before: String + after: String + first: Int + ): FacebookBusinessInstantArticleInsightsQueryResultConnection! + leadGenForms(before: String, after: String, first: Int): FacebookBusinessLeadgenFormConnection! + likes(targetId: String, before: String, after: String, first: Int): FacebookBusinessPageConnection! + liveEncoders(before: String, after: String, first: Int): FacebookBusinessLiveEncoderConnection! + liveVideos( + source: FacebookBusinessSourceEnum + broadcastStatus: [FacebookBusinessBroadcastStatusEnum!] + before: String + after: String + first: Int + ): FacebookBusinessLiveVideoConnection! + locations(before: String, after: String, first: Int): FacebookBusinessPageConnection! + mediaFingerprints( + universalContentId: String + before: String + after: String + first: Int + ): FacebookBusinessMediaFingerprintConnection! + messagingFeatureReview(before: String, after: String, first: Int): FacebookBusinessMessagingFeatureReviewConnection! + messengerAdsPageWelcomeMessages(before: String, after: String, first: Int): FacebookBusinessMessengerDestinationPageWelcomeMessageConnection! + messengerProfile(before: String, after: String, first: Int): FacebookBusinessMessengerProfileConnection! + nativeOffers(before: String, after: String, first: Int): FacebookBusinessNativeOfferConnection! + pageBackedInstagramAccounts(before: String, after: String, first: Int): FacebookBusinessInstagramUserConnection! + personas(before: String, after: String, first: Int): FacebookBusinessPersonaConnection! + photos( + type: FacebookBusinessTypeEnum + businessId: String + bizTagId: Int + before: String + after: String + first: Int + ): FacebookBusinessPhotoConnection! + picture( + width: Int + type: FacebookBusinessTypeEnum + redirect: Boolean + height: Int + before: String + after: String + first: Int + ): FacebookBusinessProfilePictureSourceConnection! + placeTopics(before: String, after: String, first: Int): FacebookBusinessPlaceTopicConnection! + posts( + with: FacebookBusinessWithEnum + showExpired: Boolean + q: String + includeHidden: Boolean + before: String + after: String + first: Int + ): FacebookBusinessPagePostConnection! + productCatalogs(before: String, after: String, first: Int): FacebookBusinessProductCatalogConnection! + publishedPosts( + until: String + since: String + before: String + after: String + first: Int + ): FacebookBusinessPagePostConnection! + ratings(before: String, after: String, first: Int): FacebookBusinessRecommendationConnection! + roles( + uid: Int + includeDeactivated: Boolean + before: String + after: String + first: Int + ): FacebookBusinessUserConnection! + rtbDynamicPosts(before: String, after: String, first: Int): FacebookBusinessRTBDynamicPostConnection! + scheduledPosts(before: String, after: String, first: Int): FacebookBusinessPagePostConnection! + secondaryReceivers(before: String, after: String, first: Int): FacebookBusinessApplicationConnection! + settings(before: String, after: String, first: Int): FacebookBusinessPageSettingsConnection! + subscribedApps(before: String, after: String, first: Int): FacebookBusinessApplicationConnection! + tabs(tab: [String!], before: String, after: String, first: Int): FacebookBusinessTabConnection! + tagged(before: String, after: String, first: Int): FacebookBusinessPagePostConnection! + threadOwner(recipient: String!, before: String, after: String, first: Int): FacebookBusinessPageThreadOwnerConnection! + threads( + userId: String + tags: [String!] + folder: String + before: String + after: String + first: Int + ): FacebookBusinessUnifiedThreadConnection! + tours(before: String, after: String, first: Int): FacebookBusinessEventTourConnection! + upcomingChanges( + includeInactive: Boolean + before: String + after: String + first: Int + ): FacebookBusinessPageUpcomingChangeConnection! + videoCopyrightRules( + source: FacebookBusinessSourceEnum + selectedRuleId: String + before: String + after: String + first: Int + ): FacebookBusinessVideoCopyrightRuleConnection! + videoLists(before: String, after: String, first: Int): FacebookBusinessVideoListConnection! + videos( + type: FacebookBusinessTypeEnum + before: String + after: String + first: Int + ): FacebookBusinessAdVideoConnection! + visitorPosts( + includeHidden: Boolean + before: String + after: String + first: Int + ): FacebookBusinessPagePostConnection! } """ @@ -78348,43 +80220,103 @@ type FacebookBusinessUser { viewerCanSendGift: Boolean website: String work: [JSON] - accounts(isPromotable: Boolean isPlace: Boolean before: String after: String first: Int): FacebookBusinessPageConnection! - adStudies(before: String after: String first: Int): FacebookBusinessAdStudyConnection! - adAccounts(before: String after: String first: Int): FacebookBusinessAdAccountConnection! - albums(before: String after: String first: Int): FacebookBusinessAlbumConnection! - appRequestFormerRecipients(before: String after: String first: Int): FacebookBusinessAppRequestFormerRecipientConnection! - appRequests(before: String after: String first: Int): FacebookBusinessAppRequestConnection! - assignedAdAccounts(before: String after: String first: Int): FacebookBusinessAdAccountConnection! - assignedBusinessAssetGroups(containedAssetId: String before: String after: String first: Int): FacebookBusinessBusinessAssetGroupConnection! - assignedPages(before: String after: String first: Int): FacebookBusinessPageConnection! - assignedProductCatalogs(before: String after: String first: Int): FacebookBusinessProductCatalogConnection! - books(targetId: String before: String after: String first: Int): FacebookBusinessPageConnection! - businessUsers(before: String after: String first: Int): FacebookBusinessBusinessUserConnection! - businesses(before: String after: String first: Int): FacebookBusinessBusinessConnection! - conversations(userId: String tags: [String!] folder: String before: String after: String first: Int): FacebookBusinessUnifiedThreadConnection! - customLabels(before: String after: String first: Int): FacebookBusinessPageUserMessageThreadLabelConnection! - events(type: FacebookBusinessTypeEnum includeCanceled: Boolean before: String after: String first: Int): FacebookBusinessEventConnection! - friendLists(before: String after: String first: Int): FacebookBusinessFriendListConnection! - friends(uid: Int before: String after: String first: Int): FacebookBusinessUserConnection! - games(targetId: String before: String after: String first: Int): FacebookBusinessPageConnection! - groups(parent: String adminOnly: Boolean before: String after: String first: Int): FacebookBusinessGroupConnection! - idsForApps(app: Int before: String after: String first: Int): FacebookBusinessUserIDForAppConnection! - idsForBusiness(app: Int before: String after: String first: Int): FacebookBusinessUserIDForAppConnection! - idsForPages(page: Int before: String after: String first: Int): FacebookBusinessUserIDForPageConnection! - likes(targetId: String before: String after: String first: Int): FacebookBusinessPageConnection! - liveEncoders(before: String after: String first: Int): FacebookBusinessLiveEncoderConnection! - liveVideos(source: FacebookBusinessSourceEnum broadcastStatus: [FacebookBusinessBroadcastStatusEnum!] before: String after: String first: Int): FacebookBusinessLiveVideoConnection! - movies(targetId: String before: String after: String first: Int): FacebookBusinessPageConnection! - music(targetId: String before: String after: String first: Int): FacebookBusinessPageConnection! - permissions(status: FacebookBusinessStatusEnum permission: String before: String after: String first: Int): FacebookBusinessPermissionConnection! - personalAdAccounts(before: String after: String first: Int): FacebookBusinessAdAccountConnection! - photos(type: FacebookBusinessTypeEnum before: String after: String first: Int): FacebookBusinessPhotoConnection! - picture(width: Int type: FacebookBusinessTypeEnum redirect: Boolean height: Int before: String after: String first: Int): FacebookBusinessProfilePictureSourceConnection! - requestHistory(before: String after: String first: Int): FacebookBusinessRequestHistoryConnection! - richMediaDocuments(query: String before: String after: String first: Int): FacebookBusinessCanvasConnection! - taggableFriends(before: String after: String first: Int): FacebookBusinessUserTaggableFriendConnection! - television(targetId: String before: String after: String first: Int): FacebookBusinessPageConnection! - videos(type: FacebookBusinessTypeEnum before: String after: String first: Int): FacebookBusinessAdVideoConnection! + accounts( + isPromotable: Boolean + isPlace: Boolean + before: String + after: String + first: Int + ): FacebookBusinessPageConnection! + adStudies(before: String, after: String, first: Int): FacebookBusinessAdStudyConnection! + adAccounts(before: String, after: String, first: Int): FacebookBusinessAdAccountConnection! + albums(before: String, after: String, first: Int): FacebookBusinessAlbumConnection! + appRequestFormerRecipients(before: String, after: String, first: Int): FacebookBusinessAppRequestFormerRecipientConnection! + appRequests(before: String, after: String, first: Int): FacebookBusinessAppRequestConnection! + assignedAdAccounts(before: String, after: String, first: Int): FacebookBusinessAdAccountConnection! + assignedBusinessAssetGroups( + containedAssetId: String + before: String + after: String + first: Int + ): FacebookBusinessBusinessAssetGroupConnection! + assignedPages(before: String, after: String, first: Int): FacebookBusinessPageConnection! + assignedProductCatalogs(before: String, after: String, first: Int): FacebookBusinessProductCatalogConnection! + books(targetId: String, before: String, after: String, first: Int): FacebookBusinessPageConnection! + businessUsers(before: String, after: String, first: Int): FacebookBusinessBusinessUserConnection! + businesses(before: String, after: String, first: Int): FacebookBusinessBusinessConnection! + conversations( + userId: String + tags: [String!] + folder: String + before: String + after: String + first: Int + ): FacebookBusinessUnifiedThreadConnection! + customLabels(before: String, after: String, first: Int): FacebookBusinessPageUserMessageThreadLabelConnection! + events( + type: FacebookBusinessTypeEnum + includeCanceled: Boolean + before: String + after: String + first: Int + ): FacebookBusinessEventConnection! + friendLists(before: String, after: String, first: Int): FacebookBusinessFriendListConnection! + friends(uid: Int, before: String, after: String, first: Int): FacebookBusinessUserConnection! + games(targetId: String, before: String, after: String, first: Int): FacebookBusinessPageConnection! + groups( + parent: String + adminOnly: Boolean + before: String + after: String + first: Int + ): FacebookBusinessGroupConnection! + idsForApps(app: Int, before: String, after: String, first: Int): FacebookBusinessUserIDForAppConnection! + idsForBusiness(app: Int, before: String, after: String, first: Int): FacebookBusinessUserIDForAppConnection! + idsForPages(page: Int, before: String, after: String, first: Int): FacebookBusinessUserIDForPageConnection! + likes(targetId: String, before: String, after: String, first: Int): FacebookBusinessPageConnection! + liveEncoders(before: String, after: String, first: Int): FacebookBusinessLiveEncoderConnection! + liveVideos( + source: FacebookBusinessSourceEnum + broadcastStatus: [FacebookBusinessBroadcastStatusEnum!] + before: String + after: String + first: Int + ): FacebookBusinessLiveVideoConnection! + movies(targetId: String, before: String, after: String, first: Int): FacebookBusinessPageConnection! + music(targetId: String, before: String, after: String, first: Int): FacebookBusinessPageConnection! + permissions( + status: FacebookBusinessStatusEnum + permission: String + before: String + after: String + first: Int + ): FacebookBusinessPermissionConnection! + personalAdAccounts(before: String, after: String, first: Int): FacebookBusinessAdAccountConnection! + photos( + type: FacebookBusinessTypeEnum + before: String + after: String + first: Int + ): FacebookBusinessPhotoConnection! + picture( + width: Int + type: FacebookBusinessTypeEnum + redirect: Boolean + height: Int + before: String + after: String + first: Int + ): FacebookBusinessProfilePictureSourceConnection! + requestHistory(before: String, after: String, first: Int): FacebookBusinessRequestHistoryConnection! + richMediaDocuments(query: String, before: String, after: String, first: Int): FacebookBusinessCanvasConnection! + taggableFriends(before: String, after: String, first: Int): FacebookBusinessUserTaggableFriendConnection! + television(targetId: String, before: String, after: String, first: Int): FacebookBusinessPageConnection! + videos( + type: FacebookBusinessTypeEnum + before: String + after: String + first: Int + ): FacebookBusinessAdVideoConnection! } """ @@ -79010,11 +80942,11 @@ type EggheadioPassthroughQuery { """ get(""" Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -79358,11 +81290,11 @@ type DropboxQuery { """ accountId: String!): DropboxAccount searchFiles(""" The search mode (`FILENAME`, `FILENAME_AND_CONTENT`, or `DELETED_FILENAME`). Note that searching file content is only available for Dropbox Business accounts. - """ mode: DropboxFileSearchMode """ + """ mode: DropboxFileSearchMode, """ The path in the user's Dropbox to search. Should probably be a folder. Defaults to the root folder. - """ filePath: String """ + """ filePath: String, """ Number of results to fetch - """ first: Int """ + """ first: Int, """ """ query: String!): DropboxFileSearchResultsConnection } @@ -79844,11 +81776,11 @@ type DevToPassthroughQuery { """ get(""" Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -79886,21 +81818,21 @@ type DevToQuery { returned. This param can only be used by itself or with `tag`. - """ top: Int """ + """ top: Int, """ Adding this will allow the client to check which articles are fresh or rising. If `state=fresh` the server will return published fresh articles. If `state=rising` the server will return published rising articles. This param can only be used by itself or with `username` if set to `all`. - """ state: String """ + """ state: String, """ Adding this parameter will return articles belonging to a User or Organization ordered by descending `published_at`. If `state=all` the number of items returned will be `1000` instead of the default `30`. This param can be used by itself or only with `page` and `state`. - """ username: String """ + """ username: String, """ Adding this parameter will return articles that contain the requested tag. @@ -79965,11 +81897,11 @@ type ContentfulPassthroughQuery { """ get(""" Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ + """ allowUnauthenticated: Boolean, """ The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ + """ queryString: String, """ The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ + """ query: [[String!]!], """ The path of the URL, e.g. `/posts`. """ path: String!): PassthroughResult! } @@ -80293,9 +82225,9 @@ type CloudflareAccount { """ memberships(""" Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Direction to order results by, defaults to descending - """ direction: CloudflareDirectionArg """ + """ direction: CloudflareDirectionArg, """ Number of results to return, minimum is 5, maximum is 50. Defaults to 20. """ first: Int): CloudflareAccountMembershipsConnection """ @@ -80331,9 +82263,9 @@ type CloudflareQuery { """ accounts(""" Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Direction to order results by, defaults to descending - """ direction: CloudflareDirectionArg """ + """ direction: CloudflareDirectionArg, """ Number of results to return, minimum is 5, maximum is 50. Defaults to 20. """ first: Int): CloudflareAccountsConnection """ @@ -80577,7 +82509,18 @@ type Clearbit { """ Clearbit contact enrichment """ - enrich(facebook: String twitter: String linkedin: String companyDomain: String company: String location: String ipAddress: String familyName: String givenName: String email: String!): ClearbitEnrichment + enrich( + facebook: String + twitter: String + linkedin: String + companyDomain: String + company: String + location: String + ipAddress: String + familyName: String + givenName: String + email: String! + ): ClearbitEnrichment } type BundlephobiaRecentSearch { @@ -80680,9 +82623,9 @@ type BundlephobiaQuery { """ packageInfo(""" Whether to include this query in the Bundlephobia analytics stats and recent searches - """ record: Boolean """ + """ record: Boolean, """ The npm package version, e.g. `10.0.1` - """ version: String """ + """ version: String, """ The npm package name. """ package: String!): BundlephobiaDependencyInfo """ @@ -81113,23 +83056,23 @@ type BoxQuery { user(userId: String!): BoxUser searchFiles(""" Whether to search for trash. If true, only returns items from the trash - """ searchTrash: Boolean """ + """ searchTrash: Boolean, """ Search for objects of specified content types. - """ contentTypes: [BoxFileSearchContentType!] """ + """ contentTypes: [BoxFileSearchContentType!], """ Search for the contents of specific folders (and folders within them). - """ ancestorFolderIds: [String!] """ + """ ancestorFolderIds: [String!], """ Search for objects by owner. - """ ownerUserIds: [String!] """ + """ ownerUserIds: [String!], """ Return only files within a stated size range. Specify the range in bytes - """ size: BoxRangeArg """ + """ size: BoxRangeArg, """ The date when the item last updated. Specify the date range using RFC3339 timestamps. For example: `2014-05-15T13:35:01-07:00` - """ updatedAt: BoxRangeArg """ + """ updatedAt: BoxRangeArg, """ The date when the item was created. Specify the date range using RFC3339 timestamps. For example: `2014-05-15T13:35:01-07:00` - """ createdAt: BoxRangeArg """ + """ createdAt: BoxRangeArg, """ Limit searches to specific file extensions like pdf,png, or doc. - """ fileExtensions: [String!] """ + """ fileExtensions: [String!], """ Number of results to fetch - """ first: Int """ + """ first: Int, """ The string to search for. Box matches the search string against object names, descriptions, text contents of files, and other data. """ query: String!): BoxFilesConnection } @@ -81141,13 +83084,13 @@ type AirtableTable { If combined with view, only records in that view which satisfy the formula will be returned. For example, to only include records where fieldName isn't empty, pass in: `NOT({fieldName} = '')` - """ filterByFormula: String """ + """ filterByFormula: String, """ A list of sort objects that specifies how the records will be ordered. Each sort object must have a field key specifying the name of the field to sort on, and an optional direction key that is either `ASC` or `DESC`. The default direction is `ASC`. - """ sort: [AirtableRecordsSortArg!] """ + """ sort: [AirtableRecordsSortArg!], """ The name or ID of a view in the table. If set, only the records in that view will be returned. The records will be sorted according to the order of the view. - """ view: String """ + """ view: String, """ Returns the elements that come after the specified cursor. - """ after: String """ + """ after: String, """ How many records to fetch. Defaults to 10, max is 100. """ first: Int): AirtableRecordsConnection! record(""" @@ -81234,24 +83177,24 @@ type AirtableQuery { If combined with view, only records in that view which satisfy the formula will be returned. For example, to only include records where fieldName isn't empty, pass in: `NOT({fieldName} = '')` - """ filterByFormula: String """ + """ filterByFormula: String, """ A list of sort objects that specifies how the records will be ordered. Each sort object must have a field key specifying the name of the field to sort on, and an optional direction key that is either `ASC` or `DESC`. The default direction is `ASC`. - """ sort: [AirtableRecordsSortArg!] """ + """ sort: [AirtableRecordsSortArg!], """ The name or ID of a view in the table. If set, only the records in that view will be returned. The records will be sorted according to the order of the view. - """ view: String """ + """ view: String, """ Returns the elements that come after the specified cursor. - """ after: String """ + """ after: String, """ How many records to fetch. Defaults to 10, max is 100. - """ first: Int """ + """ first: Int, """ The table name that contains the records. - """ tableName: String! """ + """ tableName: String!, """ You can find the baseId from by selecting one of your bases at https://airtable.com/api. The baseId is the part of the path in the URL that starts with `app`. """ baseId: String!): AirtableRecordsConnection! record(""" The id of the record to fetch. - """ recordId: String! """ + """ recordId: String!, """ The table name that contains the record. - """ tableName: String! """ + """ tableName: String!, """ You can find the baseId from by selecting one of your bases at https://airtable.com/api. The baseId is the part of the path in the URL that starts with `app`. """ baseId: String!): AirtableRecord! """ @@ -83667,13 +85610,13 @@ type GitHubPullRequestReviewContributionsByRepository { """ contributions(""" Ordering options for contributions returned from the connection. - """ orderBy: GitHubContributionOrder """ + """ orderBy: GitHubContributionOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubCreatedPullRequestReviewContributionConnection! """ @@ -83727,13 +85670,13 @@ type GitHubPullRequestContributionsByRepository { """ contributions(""" Ordering options for contributions returned from the connection. - """ orderBy: GitHubContributionOrder """ + """ orderBy: GitHubContributionOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubCreatedPullRequestContributionConnection! """ @@ -83787,13 +85730,13 @@ type GitHubIssueContributionsByRepository { """ contributions(""" Ordering options for contributions returned from the connection. - """ orderBy: GitHubContributionOrder """ + """ orderBy: GitHubContributionOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubCreatedIssueContributionConnection! """ @@ -84288,13 +86231,13 @@ type GitHubCommitContributionsByRepository { """ contributions(""" Ordering options for commit contributions returned from the connection. - """ orderBy: GitHubCommitContributionOrder """ + """ orderBy: GitHubCommitContributionOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubCreatedCommitContributionConnection! """ @@ -84374,17 +86317,17 @@ type GitHubContributionsCollection { """ issueContributions(""" Ordering options for contributions returned from the connection. - """ orderBy: GitHubContributionOrder """ + """ orderBy: GitHubContributionOrder, """ Should the user's most commented issue be excluded from the result. - """ excludePopular: Boolean """ + """ excludePopular: Boolean, """ Should the user's first issue ever be excluded from the result. - """ excludeFirst: Boolean """ + """ excludeFirst: Boolean, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubCreatedIssueContributionConnection! """ @@ -84392,9 +86335,9 @@ type GitHubContributionsCollection { """ issueContributionsByRepository(""" Should the user's most commented issue be excluded from the result. - """ excludePopular: Boolean """ + """ excludePopular: Boolean, """ Should the user's first issue ever be excluded from the result. - """ excludeFirst: Boolean """ + """ excludeFirst: Boolean, """ How many repositories should be included. """ maxRepositories: Int): [GitHubIssueContributionsByRepository!]! """ @@ -84430,17 +86373,17 @@ type GitHubContributionsCollection { """ pullRequestContributions(""" Ordering options for contributions returned from the connection. - """ orderBy: GitHubContributionOrder """ + """ orderBy: GitHubContributionOrder, """ Should the user's most commented pull request be excluded from the result. - """ excludePopular: Boolean """ + """ excludePopular: Boolean, """ Should the user's first pull request ever be excluded from the result. - """ excludeFirst: Boolean """ + """ excludeFirst: Boolean, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubCreatedPullRequestContributionConnection! """ @@ -84448,9 +86391,9 @@ type GitHubContributionsCollection { """ pullRequestContributionsByRepository(""" Should the user's most commented pull request be excluded from the result. - """ excludePopular: Boolean """ + """ excludePopular: Boolean, """ Should the user's first pull request ever be excluded from the result. - """ excludeFirst: Boolean """ + """ excludeFirst: Boolean, """ How many repositories should be included. """ maxRepositories: Int): [GitHubPullRequestContributionsByRepository!]! """ @@ -84458,13 +86401,13 @@ type GitHubContributionsCollection { """ pullRequestReviewContributions(""" Ordering options for contributions returned from the connection. - """ orderBy: GitHubContributionOrder """ + """ orderBy: GitHubContributionOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubCreatedPullRequestReviewContributionConnection! """ @@ -84478,15 +86421,15 @@ type GitHubContributionsCollection { """ repositoryContributions(""" Ordering options for contributions returned from the connection. - """ orderBy: GitHubContributionOrder """ + """ orderBy: GitHubContributionOrder, """ Should the user's first repository ever be excluded from the result. - """ excludeFirst: Boolean """ + """ excludeFirst: Boolean, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubCreatedRepositoryContributionConnection! """ @@ -84506,7 +86449,7 @@ type GitHubContributionsCollection { """ totalIssueContributions(""" Should the user's most commented issue be excluded from this count. - """ excludePopular: Boolean """ + """ excludePopular: Boolean, """ Should the user's first issue ever be excluded from this count. """ excludeFirst: Boolean): Int! """ @@ -84514,7 +86457,7 @@ type GitHubContributionsCollection { """ totalPullRequestContributions(""" Should the user's most commented pull request be excluded from this count. - """ excludePopular: Boolean """ + """ excludePopular: Boolean, """ Should the user's first pull request ever be excluded from this count. """ excludeFirst: Boolean): Int! """ @@ -84530,7 +86473,7 @@ type GitHubContributionsCollection { """ totalRepositoriesWithContributedIssues(""" Should the user's most commented issue be excluded from this count. - """ excludePopular: Boolean """ + """ excludePopular: Boolean, """ Should the user's first issue ever be excluded from this count. """ excludeFirst: Boolean): Int! """ @@ -84542,7 +86485,7 @@ type GitHubContributionsCollection { """ totalRepositoriesWithContributedPullRequests(""" Should the user's most commented pull request be excluded from this count. - """ excludePopular: Boolean """ + """ excludePopular: Boolean, """ Should the user's first pull request ever be excluded from this count. """ excludeFirst: Boolean): Int! """ @@ -84596,13 +86539,13 @@ interface GitHubProfileOwner { """ pinnableItems(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Filter the types of pinnable items that are returned. """ types: [GitHubPinnableItemType!]): GitHubPinnableItemConnection! """ @@ -84610,13 +86553,13 @@ interface GitHubProfileOwner { """ pinnedItems(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Filter the types of pinned items that are returned. """ types: [GitHubPinnableItemType!]): GitHubPinnableItemConnection! """ @@ -84748,11 +86691,11 @@ type GitHubProfileItemShowcase { """ items(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubPinnableItemConnection! } @@ -85738,7 +87681,7 @@ type BrexOnboardingApplication implements OneGraphNode & BrexNode { """ Information requests to be completed by the applicant """ - informationRequests(last: Int first: Int before: String after: String): BrexOnboardingInformationRequestConnection + informationRequests(last: Int, first: Int, before: String, after: String): BrexOnboardingInformationRequestConnection """ The total number of information requests """ @@ -85771,7 +87714,8 @@ type BrexOnboardingInformationRequest implements OneGraphNode & BrexNode { """ """ - content: BrexOnboardingInformationRequestContent! @deprecated(reason: "Use contentPage.content instead") + content: BrexOnboardingInformationRequestContent! + @deprecated(reason: "Use contentPage.content instead") """ """ @@ -85965,7 +87909,7 @@ type BrexRewardsCampaign implements OneGraphNode & BrexNode { """ """ - rewardsTriggers(last: Int first: Int before: String after: String): BrexRewardsTriggerConnection + rewardsTriggers(last: Int, first: Int, before: String, after: String): BrexRewardsTriggerConnection oneGraphLinkedNodes(""" Filter the connected nodes that are returned by service or typename. """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! @@ -86553,7 +88497,12 @@ type BrexChannel implements OneGraphNode & BrexNode { """ """ - notificationSubscriptions(last: Int first: Int before: String after: String): BrexNotificationSubscriptionConnection + notificationSubscriptions( + last: Int + first: Int + before: String + after: String + ): BrexNotificationSubscriptionConnection """ """ @@ -86969,7 +88918,7 @@ type BrexFinancialSource implements OneGraphNode & BrexNode { """ """ - accounts(last: Int first: Int before: String after: String): BrexFinancialAccountConnection + accounts(last: Int, first: Int, before: String, after: String): BrexFinancialAccountConnection """ The ID of an object """ @@ -87683,7 +89632,7 @@ type BrexDepositsAccount implements OneGraphNode & BrexNode { """ """ - counterparties(last: Int first: Int before: String after: String): BrexCounterpartyConnection + counterparties(last: Int, first: Int, before: String, after: String): BrexCounterpartyConnection """ The ID of an object """ @@ -87703,7 +89652,14 @@ type BrexDepositsAccount implements OneGraphNode & BrexNode { """ """ - statements(startTime: String last: Int first: Int endTime: String before: String after: String): BrexDepositsStatementConnection + statements( + startTime: String + last: Int + first: Int + endTime: String + before: String + after: String + ): BrexDepositsStatementConnection """ """ @@ -87719,7 +89675,15 @@ type BrexDepositsAccount implements OneGraphNode & BrexNode { """ """ - transactions(status: BrexStatus startTime: String last: Int first: Int endTime: String before: String after: String): BrexDepositsTransactionConnection + transactions( + status: BrexStatus + startTime: String + last: Int + first: Int + endTime: String + before: String + after: String + ): BrexDepositsTransactionConnection oneGraphLinkedNodes(""" Filter the connected nodes that are returned by service or typename. """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! @@ -87890,7 +89854,7 @@ type BrexCollectionIntention implements OneGraphNode & BrexNode { """ """ - collectionAttempts(last: Int first: Int before: String after: String): BrexCollectionAttemptConnection + collectionAttempts(last: Int, first: Int, before: String, after: String): BrexCollectionAttemptConnection """ """ @@ -88678,7 +90642,7 @@ type BrexDepartment implements OneGraphNode & BrexNode { """ """ - users(last: Int first: Int before: String after: String): BrexUserConnection + users(last: Int, first: Int, before: String, after: String): BrexUserConnection oneGraphLinkedNodes(""" Filter the connected nodes that are returned by service or typename. """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! @@ -88743,7 +90707,7 @@ type BrexLocation implements OneGraphNode & BrexNode { """ """ - users(last: Int first: Int before: String after: String): BrexUserConnection + users(last: Int, first: Int, before: String, after: String): BrexUserConnection oneGraphLinkedNodes(""" Filter the connected nodes that are returned by service or typename. """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! @@ -88936,7 +90900,7 @@ type BrexCard implements OneGraphNode & BrexNode { """ """ - recurringMerchants(last: Int first: Int before: String after: String): BrexPerMerchantStatsConnection + recurringMerchants(last: Int, first: Int, before: String, after: String): BrexPerMerchantStatsConnection """ """ @@ -88952,7 +90916,7 @@ type BrexCard implements OneGraphNode & BrexNode { """ """ - transactions(last: Int first: Int before: String after: String): BrexTransactionConnection + transactions(last: Int, first: Int, before: String, after: String): BrexTransactionConnection """ """ @@ -89039,7 +91003,7 @@ type BrexTransaction implements OneGraphNode & BrexNode { """ """ - operations(last: Int first: Int before: String after: String): BrexTransactionOperationConnection + operations(last: Int, first: Int, before: String, after: String): BrexTransactionOperationConnection """ """ @@ -89051,7 +91015,7 @@ type BrexTransaction implements OneGraphNode & BrexNode { """ """ - receipts(last: Int first: Int before: String after: String): BrexReceiptConnection + receipts(last: Int, first: Int, before: String, after: String): BrexReceiptConnection """ """ @@ -89232,7 +91196,7 @@ type BrexTransactionOperation implements OneGraphNode & BrexNode { """ """ - rewardsAccrualEntries(last: Int first: Int before: String after: String): BrexRewardsAccrualEntryConnection + rewardsAccrualEntries(last: Int, first: Int, before: String, after: String): BrexRewardsAccrualEntryConnection """ """ @@ -89383,11 +91347,11 @@ type BrexStatement implements OneGraphNode & BrexNode { """ """ - collectionAttempts(last: Int first: Int before: String after: String): BrexCollectionAttemptConnection + collectionAttempts(last: Int, first: Int, before: String, after: String): BrexCollectionAttemptConnection """ """ - entries(last: Int first: Int before: String after: String): BrexStatementEntryConnection + entries(last: Int, first: Int, before: String, after: String): BrexStatementEntryConnection """ The ID of an object """ @@ -89510,7 +91474,7 @@ type BrexUnderwritingAnalysis implements OneGraphNode & BrexNode { """ """ - flags(last: Int first: Int before: String after: String): BrexUnderwritingAnalysisFlagConnection + flags(last: Int, first: Int, before: String, after: String): BrexUnderwritingAnalysisFlagConnection """ The ID of an object """ @@ -89742,7 +91706,7 @@ type BrexAccount implements OneGraphNode & BrexNode { """ """ - fundingSources(last: Int first: Int before: String after: String): BrexFundingSourceConnection + fundingSources(last: Int, first: Int, before: String, after: String): BrexFundingSourceConnection """ The ID of an object """ @@ -89786,7 +91750,7 @@ type BrexAccount implements OneGraphNode & BrexNode { """ """ - collectionIntentions(last: Int first: Int before: String after: String): BrexCollectionIntentionConnection + collectionIntentions(last: Int, first: Int, before: String, after: String): BrexCollectionIntentionConnection """ """ @@ -89798,7 +91762,7 @@ type BrexAccount implements OneGraphNode & BrexNode { """ """ - users(last: Int first: Int before: String after: String): BrexUserConnection + users(last: Int, first: Int, before: String, after: String): BrexUserConnection """ """ @@ -89834,7 +91798,7 @@ type BrexAccount implements OneGraphNode & BrexNode { """ """ - depositsAccounts(last: Int first: Int before: String after: String): BrexDepositsAccountConnection + depositsAccounts(last: Int, first: Int, before: String, after: String): BrexDepositsAccountConnection """ Rounded estimate of the global limit for the customer """ @@ -89850,7 +91814,7 @@ type BrexAccount implements OneGraphNode & BrexNode { """ """ - financialSources(last: Int first: Int before: String after: String): BrexFinancialSourceConnection + financialSources(last: Int, first: Int, before: String, after: String): BrexFinancialSourceConnection """ """ @@ -89887,11 +91851,11 @@ type BrexUser implements OneGraphNode & BrexNode { """ """ - cards(last: Int first: Int before: String after: String): BrexCardConnection + cards(last: Int, first: Int, before: String, after: String): BrexCardConnection """ """ - channels(last: Int first: Int before: String after: String): BrexChannelConnection + channels(last: Int, first: Int, before: String, after: String): BrexChannelConnection """ """ @@ -89935,11 +91899,16 @@ type BrexUser implements OneGraphNode & BrexNode { """ """ - notificationSubscriptions(last: Int first: Int before: String after: String): BrexNotificationSubscriptionConnection + notificationSubscriptions( + last: Int + first: Int + before: String + after: String + ): BrexNotificationSubscriptionConnection """ """ - programMemberships(last: Int first: Int before: String after: String): BrexProgramMembershipConnection + programMemberships(last: Int, first: Int, before: String, after: String): BrexProgramMembershipConnection """ """ @@ -89951,7 +91920,7 @@ type BrexUser implements OneGraphNode & BrexNode { """ """ - rules(last: Int first: Int before: String after: String): BrexRuleConnection + rules(last: Int, first: Int, before: String, after: String): BrexRuleConnection """ """ @@ -90139,7 +92108,7 @@ type BrexIntegration implements OneGraphNode & BrexNode { """ """ - exports(last: Int first: Int before: String after: String): BrexExportConnection + exports(last: Int, first: Int, before: String, after: String): BrexExportConnection """ The ID of an object """ @@ -90147,15 +92116,15 @@ type BrexIntegration implements OneGraphNode & BrexNode { """ """ - integrationEntities(last: Int first: Int before: String after: String): BrexExternalIntegrationEntityConnection + integrationEntities(last: Int, first: Int, before: String, after: String): BrexExternalIntegrationEntityConnection """ """ - integrationRules(last: Int first: Int before: String after: String): BrexIntegrationRuleConnection + integrationRules(last: Int, first: Int, before: String, after: String): BrexIntegrationRuleConnection """ """ - integrationUsers(last: Int first: Int before: String after: String): BrexIntegrationUserConnection + integrationUsers(last: Int, first: Int, before: String, after: String): BrexIntegrationUserConnection """ """ @@ -90175,7 +92144,7 @@ type BrexIntegration implements OneGraphNode & BrexNode { """ """ - userCategories(last: Int first: Int before: String after: String): BrexUserCategoryConnection + userCategories(last: Int, first: Int, before: String, after: String): BrexUserCategoryConnection """ """ @@ -90224,7 +92193,7 @@ type BrexUserCategory implements OneGraphNode & BrexNode { """ """ - merchantCategories(last: Int first: Int before: String after: String): BrexMerchantCategoryConnection + merchantCategories(last: Int, first: Int, before: String, after: String): BrexMerchantCategoryConnection """ """ @@ -90341,17 +92310,17 @@ type CrunchbaseQuery implements OneGraphNode & CrunchbaseNode { """ acquisitions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseAcquisitionFilter """ + """ filter: CrunchbaseAcquisitionFilter, """ The method to use when ordering `Acquisition`. - """ orderBy: [CrunchbaseAcquisitionsOrderBy!] """ + """ orderBy: [CrunchbaseAcquisitionsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseAcquisitionsConnection """ @@ -90359,17 +92328,17 @@ type CrunchbaseQuery implements OneGraphNode & CrunchbaseNode { """ addresses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseAddressFilter """ + """ filter: CrunchbaseAddressFilter, """ The method to use when ordering `Address`. - """ orderBy: [CrunchbaseAddressesOrderBy!] """ + """ orderBy: [CrunchbaseAddressesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseAddressesConnection """ @@ -90377,17 +92346,17 @@ type CrunchbaseQuery implements OneGraphNode & CrunchbaseNode { """ categories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseCategoryFilter """ + """ filter: CrunchbaseCategoryFilter, """ The method to use when ordering `Category`. - """ orderBy: [CrunchbaseCategoriesOrderBy!] """ + """ orderBy: [CrunchbaseCategoriesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseCategoriesConnection """ @@ -90395,17 +92364,17 @@ type CrunchbaseQuery implements OneGraphNode & CrunchbaseNode { """ degrees(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseDegreeFilter """ + """ filter: CrunchbaseDegreeFilter, """ The method to use when ordering `Degree`. - """ orderBy: [CrunchbaseDegreesOrderBy!] """ + """ orderBy: [CrunchbaseDegreesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseDegreesConnection """ @@ -90413,17 +92382,17 @@ type CrunchbaseQuery implements OneGraphNode & CrunchbaseNode { """ funds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseFundFilter """ + """ filter: CrunchbaseFundFilter, """ The method to use when ordering `Fund`. - """ orderBy: [CrunchbaseFundsOrderBy!] """ + """ orderBy: [CrunchbaseFundsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseFundsConnection """ @@ -90431,17 +92400,17 @@ type CrunchbaseQuery implements OneGraphNode & CrunchbaseNode { """ fundingRounds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseFundingRoundFilter """ + """ filter: CrunchbaseFundingRoundFilter, """ The method to use when ordering `FundingRound`. - """ orderBy: [CrunchbaseFundingRoundsOrderBy!] """ + """ orderBy: [CrunchbaseFundingRoundsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseFundingRoundsConnection """ @@ -90449,17 +92418,17 @@ type CrunchbaseQuery implements OneGraphNode & CrunchbaseNode { """ images(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseImageFilter """ + """ filter: CrunchbaseImageFilter, """ The method to use when ordering `Image`. - """ orderBy: [CrunchbaseImagesOrderBy!] """ + """ orderBy: [CrunchbaseImagesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseImagesConnection """ @@ -90467,17 +92436,17 @@ type CrunchbaseQuery implements OneGraphNode & CrunchbaseNode { """ investments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseInvestmentFilter """ + """ filter: CrunchbaseInvestmentFilter, """ The method to use when ordering `Investment`. - """ orderBy: [CrunchbaseInvestmentsOrderBy!] """ + """ orderBy: [CrunchbaseInvestmentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseInvestmentsConnection """ @@ -90485,17 +92454,17 @@ type CrunchbaseQuery implements OneGraphNode & CrunchbaseNode { """ ipos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseIpoFilter """ + """ filter: CrunchbaseIpoFilter, """ The method to use when ordering `Ipo`. - """ orderBy: [CrunchbaseIposOrderBy!] """ + """ orderBy: [CrunchbaseIposOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseIposConnection """ @@ -90503,17 +92472,17 @@ type CrunchbaseQuery implements OneGraphNode & CrunchbaseNode { """ jobs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseJobFilter """ + """ filter: CrunchbaseJobFilter, """ The method to use when ordering `Job`. - """ orderBy: [CrunchbaseJobsOrderBy!] """ + """ orderBy: [CrunchbaseJobsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseJobsConnection """ @@ -90521,17 +92490,17 @@ type CrunchbaseQuery implements OneGraphNode & CrunchbaseNode { """ locations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseLocationFilter """ + """ filter: CrunchbaseLocationFilter, """ The method to use when ordering `Location`. - """ orderBy: [CrunchbaseLocationsOrderBy!] """ + """ orderBy: [CrunchbaseLocationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseLocationsConnection """ @@ -90539,17 +92508,17 @@ type CrunchbaseQuery implements OneGraphNode & CrunchbaseNode { """ organizations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ + """ filter: CrunchbaseOrganizationFilter, """ The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseOrganizationsConnection """ @@ -90557,17 +92526,17 @@ type CrunchbaseQuery implements OneGraphNode & CrunchbaseNode { """ people(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ + """ filter: CrunchbasePersonFilter, """ The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ + """ orderBy: [CrunchbasePeopleOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbasePeopleConnection """ @@ -90575,17 +92544,17 @@ type CrunchbaseQuery implements OneGraphNode & CrunchbaseNode { """ syncStates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseSyncStateFilter """ + """ filter: CrunchbaseSyncStateFilter, """ The method to use when ordering `SyncState`. - """ orderBy: [CrunchbaseSyncStatesOrderBy!] """ + """ orderBy: [CrunchbaseSyncStatesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseSyncStatesConnection """ @@ -91722,17 +93691,17 @@ type CrunchbaseAddress implements OneGraphNode & CrunchbaseNode { """ organizationsHeadquartered(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ + """ filter: CrunchbaseOrganizationFilter, """ The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseOrganizationsConnection! """ @@ -91740,17 +93709,17 @@ type CrunchbaseAddress implements OneGraphNode & CrunchbaseNode { """ images(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseImageFilter """ + """ filter: CrunchbaseImageFilter, """ The method to use when ordering `Image`. - """ orderBy: [CrunchbaseImagesOrderBy!] """ + """ orderBy: [CrunchbaseImagesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseImagesConnection! """ @@ -91758,17 +93727,17 @@ type CrunchbaseAddress implements OneGraphNode & CrunchbaseNode { """ organizationsWithOffice(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ + """ filter: CrunchbaseOrganizationFilter, """ The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseOrganizationsConnection! oneGraphLinkedNodes(""" @@ -92227,17 +94196,17 @@ type CrunchbaseFund implements OneGraphNode & CrunchbaseNode { """ fundInvestorOrganizations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ + """ filter: CrunchbaseOrganizationFilter, """ The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseOrganizationsConnection! """ @@ -92245,17 +94214,17 @@ type CrunchbaseFund implements OneGraphNode & CrunchbaseNode { """ fundInvestorPeople(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ + """ filter: CrunchbasePersonFilter, """ The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ + """ orderBy: [CrunchbasePeopleOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbasePeopleConnection! oneGraphLinkedNodes(""" @@ -92530,17 +94499,17 @@ type CrunchbaseFundingRound implements OneGraphNode & CrunchbaseNode { """ investments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseInvestmentFilter """ + """ filter: CrunchbaseInvestmentFilter, """ The method to use when ordering `Investment`. - """ orderBy: [CrunchbaseInvestmentsOrderBy!] """ + """ orderBy: [CrunchbaseInvestmentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseInvestmentsConnection! """ @@ -92548,17 +94517,17 @@ type CrunchbaseFundingRound implements OneGraphNode & CrunchbaseNode { """ peopleInvestedIn(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ + """ filter: CrunchbasePersonFilter, """ The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ + """ orderBy: [CrunchbasePeopleOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbasePeopleConnection! """ @@ -92566,17 +94535,17 @@ type CrunchbaseFundingRound implements OneGraphNode & CrunchbaseNode { """ organizationsInvestedIn(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ + """ filter: CrunchbaseOrganizationFilter, """ The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseOrganizationsConnection! oneGraphLinkedNodes(""" @@ -92661,17 +94630,17 @@ type CrunchbaseInvestment implements OneGraphNode & CrunchbaseNode { """ investorOrganizations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ + """ filter: CrunchbaseOrganizationFilter, """ The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseOrganizationsConnection! """ @@ -92679,17 +94648,17 @@ type CrunchbaseInvestment implements OneGraphNode & CrunchbaseNode { """ investorPeople(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ + """ filter: CrunchbasePersonFilter, """ The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ + """ orderBy: [CrunchbasePeopleOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbasePeopleConnection! """ @@ -92697,17 +94666,17 @@ type CrunchbaseInvestment implements OneGraphNode & CrunchbaseNode { """ investmentPartners(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ + """ filter: CrunchbasePersonFilter, """ The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ + """ orderBy: [CrunchbasePeopleOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbasePeopleConnection! oneGraphLinkedNodes(""" @@ -93242,17 +95211,17 @@ type CrunchbaseLocation implements OneGraphNode & CrunchbaseNode { """ subLocations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseLocationFilter """ + """ filter: CrunchbaseLocationFilter, """ The method to use when ordering `Location`. - """ orderBy: [CrunchbaseLocationsOrderBy!] """ + """ orderBy: [CrunchbaseLocationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseLocationsConnection! """ @@ -93260,17 +95229,17 @@ type CrunchbaseLocation implements OneGraphNode & CrunchbaseNode { """ peopleByPrimaryLocationId(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ + """ filter: CrunchbasePersonFilter, """ The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ + """ orderBy: [CrunchbasePeopleOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbasePeopleConnection! oneGraphLinkedNodes(""" @@ -93399,17 +95368,17 @@ type CrunchbasePerson implements OneGraphNode & CrunchbaseNode { """ degrees(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseDegreeFilter """ + """ filter: CrunchbaseDegreeFilter, """ The method to use when ordering `Degree`. - """ orderBy: [CrunchbaseDegreesOrderBy!] """ + """ orderBy: [CrunchbaseDegreesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseDegreesConnection! """ @@ -93417,17 +95386,17 @@ type CrunchbasePerson implements OneGraphNode & CrunchbaseNode { """ jobs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseJobFilter """ + """ filter: CrunchbaseJobFilter, """ The method to use when ordering `Job`. - """ orderBy: [CrunchbaseJobsOrderBy!] """ + """ orderBy: [CrunchbaseJobsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseJobsConnection! """ @@ -93435,17 +95404,17 @@ type CrunchbasePerson implements OneGraphNode & CrunchbaseNode { """ investmentsAsInvestee(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseInvestmentFilter """ + """ filter: CrunchbaseInvestmentFilter, """ The method to use when ordering `Investment`. - """ orderBy: [CrunchbaseInvestmentsOrderBy!] """ + """ orderBy: [CrunchbaseInvestmentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseInvestmentsConnection! """ @@ -93453,17 +95422,17 @@ type CrunchbasePerson implements OneGraphNode & CrunchbaseNode { """ fundInvestors(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseFundInvestorFilter """ + """ filter: CrunchbaseFundInvestorFilter, """ The method to use when ordering `FundInvestor`. - """ orderBy: [CrunchbaseFundInvestorsOrderBy!] """ + """ orderBy: [CrunchbaseFundInvestorsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseFundInvestorsConnection! """ @@ -93471,17 +95440,17 @@ type CrunchbasePerson implements OneGraphNode & CrunchbaseNode { """ graduatedSchools(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ + """ filter: CrunchbaseOrganizationFilter, """ The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseOrganizationsConnection! """ @@ -93489,17 +95458,17 @@ type CrunchbasePerson implements OneGraphNode & CrunchbaseNode { """ organizationsByJobs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ + """ filter: CrunchbaseOrganizationFilter, """ The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseOrganizationsConnection! """ @@ -93507,17 +95476,17 @@ type CrunchbasePerson implements OneGraphNode & CrunchbaseNode { """ fundingRoundsAsInvestee(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseFundingRoundFilter """ + """ filter: CrunchbaseFundingRoundFilter, """ The method to use when ordering `FundingRound`. - """ orderBy: [CrunchbaseFundingRoundsOrderBy!] """ + """ orderBy: [CrunchbaseFundingRoundsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseFundingRoundsConnection! """ @@ -93525,17 +95494,17 @@ type CrunchbasePerson implements OneGraphNode & CrunchbaseNode { """ organizationsInvestedIn(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ + """ filter: CrunchbaseOrganizationFilter, """ The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseOrganizationsConnection! """ @@ -93543,17 +95512,17 @@ type CrunchbasePerson implements OneGraphNode & CrunchbaseNode { """ foundedOrganizations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ + """ filter: CrunchbaseOrganizationFilter, """ The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseOrganizationsConnection! """ @@ -93561,17 +95530,17 @@ type CrunchbasePerson implements OneGraphNode & CrunchbaseNode { """ investmentsAsInvestor(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseInvestmentFilter """ + """ filter: CrunchbaseInvestmentFilter, """ The method to use when ordering `Investment`. - """ orderBy: [CrunchbaseInvestmentsOrderBy!] """ + """ orderBy: [CrunchbaseInvestmentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseInvestmentsConnection! """ @@ -93579,17 +95548,17 @@ type CrunchbasePerson implements OneGraphNode & CrunchbaseNode { """ investorOrganizations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ + """ filter: CrunchbaseOrganizationFilter, """ The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseOrganizationsConnection! """ @@ -93597,17 +95566,17 @@ type CrunchbasePerson implements OneGraphNode & CrunchbaseNode { """ investmentsAsPartner(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseInvestmentFilter """ + """ filter: CrunchbaseInvestmentFilter, """ The method to use when ordering `Investment`. - """ orderBy: [CrunchbaseInvestmentsOrderBy!] """ + """ orderBy: [CrunchbaseInvestmentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseInvestmentsConnection! """ @@ -93615,17 +95584,17 @@ type CrunchbasePerson implements OneGraphNode & CrunchbaseNode { """ advisorRoleJobs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseJobFilter """ + """ filter: CrunchbaseJobFilter, """ The method to use when ordering `Job`. - """ orderBy: [CrunchbaseJobsOrderBy!] """ + """ orderBy: [CrunchbaseJobsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseJobsConnection! """ @@ -93633,17 +95602,17 @@ type CrunchbasePerson implements OneGraphNode & CrunchbaseNode { """ investedInFunds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseFundFilter """ + """ filter: CrunchbaseFundFilter, """ The method to use when ordering `Fund`. - """ orderBy: [CrunchbaseFundsOrderBy!] """ + """ orderBy: [CrunchbaseFundsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseFundsConnection! """ @@ -93651,17 +95620,17 @@ type CrunchbasePerson implements OneGraphNode & CrunchbaseNode { """ fundInvestorOrganizations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ + """ filter: CrunchbaseOrganizationFilter, """ The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseOrganizationsConnection! oneGraphLinkedNodes(""" @@ -97971,17 +99940,17 @@ type CrunchbaseImage implements OneGraphNode & CrunchbaseNode { """ organizations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ + """ filter: CrunchbaseOrganizationFilter, """ The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseOrganizationsConnection! """ @@ -97989,17 +99958,17 @@ type CrunchbaseImage implements OneGraphNode & CrunchbaseNode { """ peopleByPrimaryImageId(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ + """ filter: CrunchbasePersonFilter, """ The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ + """ orderBy: [CrunchbasePeopleOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbasePeopleConnection! oneGraphLinkedNodes(""" @@ -98269,17 +100238,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ degreesIssued(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseDegreeFilter """ + """ filter: CrunchbaseDegreeFilter, """ The method to use when ordering `Degree`. - """ orderBy: [CrunchbaseDegreesOrderBy!] """ + """ orderBy: [CrunchbaseDegreesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseDegreesConnection! """ @@ -98287,17 +100256,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ jobs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseJobFilter """ + """ filter: CrunchbaseJobFilter, """ The method to use when ordering `Job`. - """ orderBy: [CrunchbaseJobsOrderBy!] """ + """ orderBy: [CrunchbaseJobsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseJobsConnection! """ @@ -98305,17 +100274,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ ventureFirmFunds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseFundFilter """ + """ filter: CrunchbaseFundFilter, """ The method to use when ordering `Fund`. - """ orderBy: [CrunchbaseFundsOrderBy!] """ + """ orderBy: [CrunchbaseFundsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseFundsConnection! """ @@ -98323,17 +100292,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ fundingRounds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseFundingRoundFilter """ + """ filter: CrunchbaseFundingRoundFilter, """ The method to use when ordering `FundingRound`. - """ orderBy: [CrunchbaseFundingRoundsOrderBy!] """ + """ orderBy: [CrunchbaseFundingRoundsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseFundingRoundsConnection! """ @@ -98341,17 +100310,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ investmentsAsInvestee(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseInvestmentFilter """ + """ filter: CrunchbaseInvestmentFilter, """ The method to use when ordering `Investment`. - """ orderBy: [CrunchbaseInvestmentsOrderBy!] """ + """ orderBy: [CrunchbaseInvestmentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseInvestmentsConnection! """ @@ -98359,17 +100328,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ acquisitionsAsAcquirer(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseAcquisitionFilter """ + """ filter: CrunchbaseAcquisitionFilter, """ The method to use when ordering `Acquisition`. - """ orderBy: [CrunchbaseAcquisitionsOrderBy!] """ + """ orderBy: [CrunchbaseAcquisitionsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseAcquisitionsConnection! """ @@ -98377,17 +100346,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ acquisitionsAsAcquiree(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseAcquisitionFilter """ + """ filter: CrunchbaseAcquisitionFilter, """ The method to use when ordering `Acquisition`. - """ orderBy: [CrunchbaseAcquisitionsOrderBy!] """ + """ orderBy: [CrunchbaseAcquisitionsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseAcquisitionsConnection! """ @@ -98395,17 +100364,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ ipos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseIpoFilter """ + """ filter: CrunchbaseIpoFilter, """ The method to use when ordering `Ipo`. - """ orderBy: [CrunchbaseIposOrderBy!] """ + """ orderBy: [CrunchbaseIposOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseIposConnection! """ @@ -98429,17 +100398,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ offices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseAddressFilter """ + """ filter: CrunchbaseAddressFilter, """ The method to use when ordering `Address`. - """ orderBy: [CrunchbaseAddressesOrderBy!] """ + """ orderBy: [CrunchbaseAddressesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseAddressesConnection! """ @@ -98447,17 +100416,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ degreeHolders(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ + """ filter: CrunchbasePersonFilter, """ The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ + """ orderBy: [CrunchbasePeopleOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbasePeopleConnection! """ @@ -98465,17 +100434,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ peopleByJobs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ + """ filter: CrunchbasePersonFilter, """ The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ + """ orderBy: [CrunchbasePeopleOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbasePeopleConnection! """ @@ -98483,17 +100452,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ fundingRoundsAsInvestee(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseFundingRoundFilter """ + """ filter: CrunchbaseFundingRoundFilter, """ The method to use when ordering `FundingRound`. - """ orderBy: [CrunchbaseFundingRoundsOrderBy!] """ + """ orderBy: [CrunchbaseFundingRoundsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseFundingRoundsConnection! """ @@ -98501,17 +100470,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ peopleInvestedIn(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ + """ filter: CrunchbasePersonFilter, """ The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ + """ orderBy: [CrunchbasePeopleOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbasePeopleConnection! """ @@ -98519,17 +100488,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ founders(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ + """ filter: CrunchbasePersonFilter, """ The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ + """ orderBy: [CrunchbasePeopleOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbasePeopleConnection! """ @@ -98537,17 +100506,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ currentTeamJobs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseJobFilter """ + """ filter: CrunchbaseJobFilter, """ The method to use when ordering `Job`. - """ orderBy: [CrunchbaseJobsOrderBy!] """ + """ orderBy: [CrunchbaseJobsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseJobsConnection! """ @@ -98555,17 +100524,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ featuredTeamJobs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseJobFilter """ + """ filter: CrunchbaseJobFilter, """ The method to use when ordering `Job`. - """ orderBy: [CrunchbaseJobsOrderBy!] """ + """ orderBy: [CrunchbaseJobsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseJobsConnection! """ @@ -98573,17 +100542,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ pastTeamJobs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseJobFilter """ + """ filter: CrunchbaseJobFilter, """ The method to use when ordering `Job`. - """ orderBy: [CrunchbaseJobsOrderBy!] """ + """ orderBy: [CrunchbaseJobsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseJobsConnection! """ @@ -98591,17 +100560,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ boardAndAdvisorJobs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseJobFilter """ + """ filter: CrunchbaseJobFilter, """ The method to use when ordering `Job`. - """ orderBy: [CrunchbaseJobsOrderBy!] """ + """ orderBy: [CrunchbaseJobsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseJobsConnection! """ @@ -98609,17 +100578,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ investmentsAsInvestor(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseInvestmentFilter """ + """ filter: CrunchbaseInvestmentFilter, """ The method to use when ordering `Investment`. - """ orderBy: [CrunchbaseInvestmentsOrderBy!] """ + """ orderBy: [CrunchbaseInvestmentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseInvestmentsConnection! """ @@ -98627,17 +100596,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ investorPeople(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ + """ filter: CrunchbasePersonFilter, """ The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ + """ orderBy: [CrunchbasePeopleOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbasePeopleConnection! """ @@ -98645,17 +100614,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ categories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseCategoryFilter """ + """ filter: CrunchbaseCategoryFilter, """ The method to use when ordering `Category`. - """ orderBy: [CrunchbaseCategoriesOrderBy!] """ + """ orderBy: [CrunchbaseCategoriesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseCategoriesConnection! """ @@ -98663,17 +100632,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ investedInFunds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseFundFilter """ + """ filter: CrunchbaseFundFilter, """ The method to use when ordering `Fund`. - """ orderBy: [CrunchbaseFundsOrderBy!] """ + """ orderBy: [CrunchbaseFundsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseFundsConnection! """ @@ -98681,17 +100650,17 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ fundInvestorPeople(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ + """ filter: CrunchbasePersonFilter, """ The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ + """ orderBy: [CrunchbasePeopleOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbasePeopleConnection! oneGraphLinkedNodes(""" @@ -98766,17 +100735,17 @@ type CrunchbaseCategory implements OneGraphNode & CrunchbaseNode { """ organizations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ + """ filter: CrunchbaseOrganizationFilter, """ The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): CrunchbaseOrganizationsConnection! oneGraphLinkedNodes(""" @@ -100245,17 +102214,17 @@ type QuickbooksBillPaymentLineItem { """ linkedTransactions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillPaymentLineItemTransactionFilter """ + """ filter: QuickbooksBillPaymentLineItemTransactionFilter, """ The method to use when ordering `BillPaymentLineItemTransaction`. - """ orderBy: [QuickbooksBillPaymentLineItemTransactionsOrderBy!] """ + """ orderBy: [QuickbooksBillPaymentLineItemTransactionsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksBillPaymentLineItemTransactionsConnection! } @@ -102413,17 +104382,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ accounts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksAccountFilter """ + """ filter: QuickbooksAccountFilter, """ The method to use when ordering `Account`. - """ orderBy: [QuickbooksAccountsOrderBy!] """ + """ orderBy: [QuickbooksAccountsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksAccountsConnection """ @@ -102431,17 +104400,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ bills(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillFilter """ + """ filter: QuickbooksBillFilter, """ The method to use when ordering `Bill`. - """ orderBy: [QuickbooksBillsOrderBy!] """ + """ orderBy: [QuickbooksBillsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksBillsConnection """ @@ -102449,17 +104418,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ billPayments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillPaymentFilter """ + """ filter: QuickbooksBillPaymentFilter, """ The method to use when ordering `BillPayment`. - """ orderBy: [QuickbooksBillPaymentsOrderBy!] """ + """ orderBy: [QuickbooksBillPaymentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksBillPaymentsConnection """ @@ -102467,17 +104436,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ classes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksClassFilter """ + """ filter: QuickbooksClassFilter, """ The method to use when ordering `Class`. - """ orderBy: [QuickbooksClassesOrderBy!] """ + """ orderBy: [QuickbooksClassesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksClassesConnection """ @@ -102485,17 +104454,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ companyInfos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCompanyInfoFilter """ + """ filter: QuickbooksCompanyInfoFilter, """ The method to use when ordering `CompanyInfo`. - """ orderBy: [QuickbooksCompanyInfosOrderBy!] """ + """ orderBy: [QuickbooksCompanyInfosOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCompanyInfosConnection """ @@ -102503,17 +104472,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ creditMemos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ + """ filter: QuickbooksCreditMemoFilter, """ The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCreditMemosConnection """ @@ -102521,17 +104490,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ currencies(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCurrencyFilter """ + """ filter: QuickbooksCurrencyFilter, """ The method to use when ordering `Currency`. - """ orderBy: [QuickbooksCurrenciesOrderBy!] """ + """ orderBy: [QuickbooksCurrenciesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCurrenciesConnection """ @@ -102539,17 +104508,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ customers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ + """ filter: QuickbooksCustomerFilter, """ The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ + """ orderBy: [QuickbooksCustomersOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCustomersConnection """ @@ -102557,17 +104526,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ departments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepartmentFilter """ + """ filter: QuickbooksDepartmentFilter, """ The method to use when ordering `Department`. - """ orderBy: [QuickbooksDepartmentsOrderBy!] """ + """ orderBy: [QuickbooksDepartmentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksDepartmentsConnection """ @@ -102575,17 +104544,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ deposits(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepositFilter """ + """ filter: QuickbooksDepositFilter, """ The method to use when ordering `Deposit`. - """ orderBy: [QuickbooksDepositsOrderBy!] """ + """ orderBy: [QuickbooksDepositsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksDepositsConnection """ @@ -102593,17 +104562,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ employees(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEmployeeFilter """ + """ filter: QuickbooksEmployeeFilter, """ The method to use when ordering `Employee`. - """ orderBy: [QuickbooksEmployeesOrderBy!] """ + """ orderBy: [QuickbooksEmployeesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksEmployeesConnection """ @@ -102611,17 +104580,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ estimates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ + """ filter: QuickbooksEstimateFilter, """ The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ + """ orderBy: [QuickbooksEstimatesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksEstimatesConnection """ @@ -102629,17 +104598,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ invoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceFilter """ + """ filter: QuickbooksInvoiceFilter, """ The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ + """ orderBy: [QuickbooksInvoicesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksInvoicesConnection """ @@ -102647,17 +104616,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ items(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ + """ filter: QuickbooksItemFilter, """ The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ + """ orderBy: [QuickbooksItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksItemsConnection """ @@ -102665,17 +104634,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ journalCodes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksJournalCodeFilter """ + """ filter: QuickbooksJournalCodeFilter, """ The method to use when ordering `JournalCode`. - """ orderBy: [QuickbooksJournalCodesOrderBy!] """ + """ orderBy: [QuickbooksJournalCodesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksJournalCodesConnection """ @@ -102683,17 +104652,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ journalEntries(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksJournalEntryFilter """ + """ filter: QuickbooksJournalEntryFilter, """ The method to use when ordering `JournalEntry`. - """ orderBy: [QuickbooksJournalEntriesOrderBy!] """ + """ orderBy: [QuickbooksJournalEntriesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksJournalEntriesConnection """ @@ -102701,17 +104670,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ payments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentFilter """ + """ filter: QuickbooksPaymentFilter, """ The method to use when ordering `Payment`. - """ orderBy: [QuickbooksPaymentsOrderBy!] """ + """ orderBy: [QuickbooksPaymentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPaymentsConnection """ @@ -102719,17 +104688,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ paymentMethods(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentMethodFilter """ + """ filter: QuickbooksPaymentMethodFilter, """ The method to use when ordering `PaymentMethod`. - """ orderBy: [QuickbooksPaymentMethodsOrderBy!] """ + """ orderBy: [QuickbooksPaymentMethodsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPaymentMethodsConnection """ @@ -102737,17 +104706,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ physicalAddresses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPhysicalAddressFilter """ + """ filter: QuickbooksPhysicalAddressFilter, """ The method to use when ordering `PhysicalAddress`. - """ orderBy: [QuickbooksPhysicalAddressesOrderBy!] """ + """ orderBy: [QuickbooksPhysicalAddressesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPhysicalAddressesConnection """ @@ -102755,17 +104724,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ purchases(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseFilter """ + """ filter: QuickbooksPurchaseFilter, """ The method to use when ordering `Purchase`. - """ orderBy: [QuickbooksPurchasesOrderBy!] """ + """ orderBy: [QuickbooksPurchasesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPurchasesConnection """ @@ -102773,17 +104742,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ purchaseLineItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseLineItemFilter """ + """ filter: QuickbooksPurchaseLineItemFilter, """ The method to use when ordering `PurchaseLineItem`. - """ orderBy: [QuickbooksPurchaseLineItemsOrderBy!] """ + """ orderBy: [QuickbooksPurchaseLineItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPurchaseLineItemsConnection """ @@ -102791,17 +104760,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ refundReceipts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ + """ filter: QuickbooksRefundReceiptFilter, """ The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksRefundReceiptsConnection """ @@ -102809,17 +104778,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ salesReceipts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ + """ filter: QuickbooksSalesReceiptFilter, """ The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksSalesReceiptsConnection """ @@ -102827,17 +104796,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ salesTaxRateDetails(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesTaxRateDetailFilter """ + """ filter: QuickbooksSalesTaxRateDetailFilter, """ The method to use when ordering `SalesTaxRateDetail`. - """ orderBy: [QuickbooksSalesTaxRateDetailsOrderBy!] """ + """ orderBy: [QuickbooksSalesTaxRateDetailsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksSalesTaxRateDetailsConnection """ @@ -102845,17 +104814,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ taxAgencies(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxAgencyFilter """ + """ filter: QuickbooksTaxAgencyFilter, """ The method to use when ordering `TaxAgency`. - """ orderBy: [QuickbooksTaxAgenciesOrderBy!] """ + """ orderBy: [QuickbooksTaxAgenciesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTaxAgenciesConnection """ @@ -102863,17 +104832,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ taxClassifications(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxClassificationFilter """ + """ filter: QuickbooksTaxClassificationFilter, """ The method to use when ordering `TaxClassification`. - """ orderBy: [QuickbooksTaxClassificationsOrderBy!] """ + """ orderBy: [QuickbooksTaxClassificationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTaxClassificationsConnection """ @@ -102881,17 +104850,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ taxCodes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxCodeFilter """ + """ filter: QuickbooksTaxCodeFilter, """ The method to use when ordering `TaxCode`. - """ orderBy: [QuickbooksTaxCodesOrderBy!] """ + """ orderBy: [QuickbooksTaxCodesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTaxCodesConnection """ @@ -102899,17 +104868,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ taxExemptionReasons(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxExemptionReasonFilter """ + """ filter: QuickbooksTaxExemptionReasonFilter, """ The method to use when ordering `TaxExemptionReason`. - """ orderBy: [QuickbooksTaxExemptionReasonsOrderBy!] """ + """ orderBy: [QuickbooksTaxExemptionReasonsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTaxExemptionReasonsConnection """ @@ -102917,17 +104886,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ taxRates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxRateFilter """ + """ filter: QuickbooksTaxRateFilter, """ The method to use when ordering `TaxRate`. - """ orderBy: [QuickbooksTaxRatesOrderBy!] """ + """ orderBy: [QuickbooksTaxRatesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTaxRatesConnection """ @@ -102935,17 +104904,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ terms(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTermFilter """ + """ filter: QuickbooksTermFilter, """ The method to use when ordering `Term`. - """ orderBy: [QuickbooksTermsOrderBy!] """ + """ orderBy: [QuickbooksTermsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTermsConnection """ @@ -102953,17 +104922,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ timeActivities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTimeActivityFilter """ + """ filter: QuickbooksTimeActivityFilter, """ The method to use when ordering `TimeActivity`. - """ orderBy: [QuickbooksTimeActivitiesOrderBy!] """ + """ orderBy: [QuickbooksTimeActivitiesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTimeActivitiesConnection """ @@ -102971,17 +104940,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ transfers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransferFilter """ + """ filter: QuickbooksTransferFilter, """ The method to use when ordering `Transfer`. - """ orderBy: [QuickbooksTransfersOrderBy!] """ + """ orderBy: [QuickbooksTransfersOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTransfersConnection """ @@ -102989,17 +104958,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ uqcs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksUqcFilter """ + """ filter: QuickbooksUqcFilter, """ The method to use when ordering `Uqc`. - """ orderBy: [QuickbooksUqcsOrderBy!] """ + """ orderBy: [QuickbooksUqcsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksUqcsConnection """ @@ -103007,17 +104976,17 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ vendors(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksVendorFilter """ + """ filter: QuickbooksVendorFilter, """ The method to use when ordering `Vendor`. - """ orderBy: [QuickbooksVendorsOrderBy!] """ + """ orderBy: [QuickbooksVendorsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksVendorsConnection """ @@ -103227,19 +105196,19 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ """ - accountById(id: String! realmId: String): QuickbooksAccount + accountById(id: String!, realmId: String): QuickbooksAccount """ """ - billById(id: String! realmId: String): QuickbooksBill + billById(id: String!, realmId: String): QuickbooksBill """ """ - billPaymentById(id: String! realmId: String): QuickbooksBillPayment + billPaymentById(id: String!, realmId: String): QuickbooksBillPayment """ """ - classById(id: String! realmId: String): QuickbooksClass + classById(id: String!, realmId: String): QuickbooksClass """ """ @@ -103247,103 +105216,103 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ """ - companyInfoById(id: String! realmId: String): QuickbooksCompanyInfo + companyInfoById(id: String!, realmId: String): QuickbooksCompanyInfo """ """ - creditMemoById(id: String! realmId: String): QuickbooksCreditMemo + creditMemoById(id: String!, realmId: String): QuickbooksCreditMemo """ """ - customerById(id: String! realmId: String): QuickbooksCustomer + customerById(id: String!, realmId: String): QuickbooksCustomer """ """ - departmentById(id: String! realmId: String): QuickbooksDepartment + departmentById(id: String!, realmId: String): QuickbooksDepartment """ """ - depositById(id: String! realmId: String): QuickbooksDeposit + depositById(id: String!, realmId: String): QuickbooksDeposit """ """ - employeeById(id: String! realmId: String): QuickbooksEmployee + employeeById(id: String!, realmId: String): QuickbooksEmployee """ """ - estimateById(id: String! realmId: String): QuickbooksEstimate + estimateById(id: String!, realmId: String): QuickbooksEstimate """ """ - invoiceById(id: String! realmId: String): QuickbooksInvoice + invoiceById(id: String!, realmId: String): QuickbooksInvoice """ """ - itemById(id: String! realmId: String): QuickbooksItem + itemById(id: String!, realmId: String): QuickbooksItem """ """ - journalCodeById(id: String! realmId: String): QuickbooksJournalCode + journalCodeById(id: String!, realmId: String): QuickbooksJournalCode """ """ - journalEntryById(id: String! realmId: String): QuickbooksJournalEntry + journalEntryById(id: String!, realmId: String): QuickbooksJournalEntry """ """ - paymentById(id: String! realmId: String): QuickbooksPayment + paymentById(id: String!, realmId: String): QuickbooksPayment """ """ - paymentMethodById(id: String! realmId: String): QuickbooksPaymentMethod + paymentMethodById(id: String!, realmId: String): QuickbooksPaymentMethod """ """ - physicalAddressById(id: String! realmId: String): QuickbooksPhysicalAddress + physicalAddressById(id: String!, realmId: String): QuickbooksPhysicalAddress """ """ - purchaseById(id: String! realmId: String): QuickbooksPurchase + purchaseById(id: String!, realmId: String): QuickbooksPurchase """ """ - refundReceiptById(id: String! realmId: String): QuickbooksRefundReceipt + refundReceiptById(id: String!, realmId: String): QuickbooksRefundReceipt """ """ - salesReceiptById(id: String! realmId: String): QuickbooksSalesReceipt + salesReceiptById(id: String!, realmId: String): QuickbooksSalesReceipt """ """ - taxAgencyById(id: String! realmId: String): QuickbooksTaxAgency + taxAgencyById(id: String!, realmId: String): QuickbooksTaxAgency """ """ - taxClassificationById(id: String! realmId: String): QuickbooksTaxClassification + taxClassificationById(id: String!, realmId: String): QuickbooksTaxClassification """ """ - taxCodeById(id: String! realmId: String): QuickbooksTaxCode + taxCodeById(id: String!, realmId: String): QuickbooksTaxCode """ """ - taxRateById(id: String! realmId: String): QuickbooksTaxRate + taxRateById(id: String!, realmId: String): QuickbooksTaxRate """ """ - termById(id: String! realmId: String): QuickbooksTerm + termById(id: String!, realmId: String): QuickbooksTerm """ """ - timeActivityById(id: String! realmId: String): QuickbooksTimeActivity + timeActivityById(id: String!, realmId: String): QuickbooksTimeActivity """ """ - transferById(id: String! realmId: String): QuickbooksTransfer + transferById(id: String!, realmId: String): QuickbooksTransfer """ """ - vendorById(id: String! realmId: String): QuickbooksVendor + vendorById(id: String!, realmId: String): QuickbooksVendor """ """ @@ -103382,17 +105351,17 @@ type QuickbooksUqc implements OneGraphNode & QuickbooksNode { """ items(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ + """ filter: QuickbooksItemFilter, """ The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ + """ orderBy: [QuickbooksItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksItemsConnection! oneGraphLinkedNodes(""" @@ -110323,17 +112292,17 @@ type QuickbooksRefundReceipt implements OneGraphNode & QuickbooksNode { """ lineItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptLineItemFilter """ + """ filter: QuickbooksRefundReceiptLineItemFilter, """ The method to use when ordering `RefundReceiptLineItem`. - """ orderBy: [QuickbooksRefundReceiptLineItemsOrderBy!] """ + """ orderBy: [QuickbooksRefundReceiptLineItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksRefundReceiptLineItemsConnection! """ @@ -110341,17 +112310,17 @@ type QuickbooksRefundReceipt implements OneGraphNode & QuickbooksNode { """ transactionTaxDetailLines(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransactionTaxDetailLineFilter """ + """ filter: QuickbooksTransactionTaxDetailLineFilter, """ The method to use when ordering `TransactionTaxDetailLine`. - """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] """ + """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! oneGraphLinkedNodes(""" @@ -111170,17 +113139,17 @@ type QuickbooksSalesReceipt implements OneGraphNode & QuickbooksNode { """ lineItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptLineItemFilter """ + """ filter: QuickbooksSalesReceiptLineItemFilter, """ The method to use when ordering `SalesReceiptLineItem`. - """ orderBy: [QuickbooksSalesReceiptLineItemsOrderBy!] """ + """ orderBy: [QuickbooksSalesReceiptLineItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksSalesReceiptLineItemsConnection! """ @@ -111188,17 +113157,17 @@ type QuickbooksSalesReceipt implements OneGraphNode & QuickbooksNode { """ transactionTaxDetailLines(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransactionTaxDetailLineFilter """ + """ filter: QuickbooksTransactionTaxDetailLineFilter, """ The method to use when ordering `TransactionTaxDetailLine`. - """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] """ + """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! oneGraphLinkedNodes(""" @@ -112254,17 +114223,17 @@ type QuickbooksPurchase implements OneGraphNode & QuickbooksNode { """ paymentLineItemTransactions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentLineItemTransactionFilter """ + """ filter: QuickbooksPaymentLineItemTransactionFilter, """ The method to use when ordering `PaymentLineItemTransaction`. - """ orderBy: [QuickbooksPaymentLineItemTransactionsOrderBy!] """ + """ orderBy: [QuickbooksPaymentLineItemTransactionsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPaymentLineItemTransactionsConnection! """ @@ -112272,17 +114241,17 @@ type QuickbooksPurchase implements OneGraphNode & QuickbooksNode { """ lineItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseLineItemFilter """ + """ filter: QuickbooksPurchaseLineItemFilter, """ The method to use when ordering `PurchaseLineItem`. - """ orderBy: [QuickbooksPurchaseLineItemsOrderBy!] """ + """ orderBy: [QuickbooksPurchaseLineItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPurchaseLineItemsConnection! oneGraphLinkedNodes(""" @@ -112491,17 +114460,17 @@ type QuickbooksJournalEntry implements OneGraphNode & QuickbooksNode { """ transactionTaxDetailLines(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransactionTaxDetailLineFilter """ + """ filter: QuickbooksTransactionTaxDetailLineFilter, """ The method to use when ordering `TransactionTaxDetailLine`. - """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] """ + """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! oneGraphLinkedNodes(""" @@ -112633,17 +114602,17 @@ type QuickbooksPaymentLineItem { """ linkedTransactions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentLineItemTransactionFilter """ + """ filter: QuickbooksPaymentLineItemTransactionFilter, """ The method to use when ordering `PaymentLineItemTransaction`. - """ orderBy: [QuickbooksPaymentLineItemTransactionsOrderBy!] """ + """ orderBy: [QuickbooksPaymentLineItemTransactionsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPaymentLineItemTransactionsConnection! } @@ -112874,17 +114843,17 @@ type QuickbooksPayment implements OneGraphNode & QuickbooksNode { """ lineItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentLineItemFilter """ + """ filter: QuickbooksPaymentLineItemFilter, """ The method to use when ordering `PaymentLineItem`. - """ orderBy: [QuickbooksPaymentLineItemsOrderBy!] """ + """ orderBy: [QuickbooksPaymentLineItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPaymentLineItemsConnection! oneGraphLinkedNodes(""" @@ -113214,17 +115183,17 @@ type QuickbooksDepositLineItem { """ linkedTransactions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepositLineItemTransactionFilter """ + """ filter: QuickbooksDepositLineItemTransactionFilter, """ The method to use when ordering `DepositLineItemTransaction`. - """ orderBy: [QuickbooksDepositLineItemTransactionsOrderBy!] """ + """ orderBy: [QuickbooksDepositLineItemTransactionsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksDepositLineItemTransactionsConnection! } @@ -113382,17 +115351,17 @@ type QuickbooksDeposit implements OneGraphNode & QuickbooksNode { """ lineItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepositLineItemFilter """ + """ filter: QuickbooksDepositLineItemFilter, """ The method to use when ordering `DepositLineItem`. - """ orderBy: [QuickbooksDepositLineItemsOrderBy!] """ + """ orderBy: [QuickbooksDepositLineItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksDepositLineItemsConnection! """ @@ -113400,17 +115369,17 @@ type QuickbooksDeposit implements OneGraphNode & QuickbooksNode { """ transactionTaxDetailLines(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransactionTaxDetailLineFilter """ + """ filter: QuickbooksTransactionTaxDetailLineFilter, """ The method to use when ordering `TransactionTaxDetailLine`. - """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] """ + """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! oneGraphLinkedNodes(""" @@ -113729,17 +115698,17 @@ type QuickbooksTaxAgency implements OneGraphNode & QuickbooksNode { """ taxRates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxRateFilter """ + """ filter: QuickbooksTaxRateFilter, """ The method to use when ordering `TaxRate`. - """ orderBy: [QuickbooksTaxRatesOrderBy!] """ + """ orderBy: [QuickbooksTaxRatesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTaxRatesConnection! oneGraphLinkedNodes(""" @@ -114760,17 +116729,17 @@ type QuickbooksCreditMemo implements OneGraphNode & QuickbooksNode { """ lineItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoLineItemFilter """ + """ filter: QuickbooksCreditMemoLineItemFilter, """ The method to use when ordering `CreditMemoLineItem`. - """ orderBy: [QuickbooksCreditMemoLineItemsOrderBy!] """ + """ orderBy: [QuickbooksCreditMemoLineItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCreditMemoLineItemsConnection! """ @@ -114778,17 +116747,17 @@ type QuickbooksCreditMemo implements OneGraphNode & QuickbooksNode { """ transactionTaxDetailLines(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransactionTaxDetailLineFilter """ + """ filter: QuickbooksTransactionTaxDetailLineFilter, """ The method to use when ordering `TransactionTaxDetailLine`. - """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] """ + """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! oneGraphLinkedNodes(""" @@ -114876,17 +116845,17 @@ type QuickbooksPaymentMethod implements OneGraphNode & QuickbooksNode { """ customers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ + """ filter: QuickbooksCustomerFilter, """ The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ + """ orderBy: [QuickbooksCustomersOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCustomersConnection! """ @@ -114894,17 +116863,17 @@ type QuickbooksPaymentMethod implements OneGraphNode & QuickbooksNode { """ creditMemos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ + """ filter: QuickbooksCreditMemoFilter, """ The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCreditMemosConnection! """ @@ -114912,17 +116881,17 @@ type QuickbooksPaymentMethod implements OneGraphNode & QuickbooksNode { """ payments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentFilter """ + """ filter: QuickbooksPaymentFilter, """ The method to use when ordering `Payment`. - """ orderBy: [QuickbooksPaymentsOrderBy!] """ + """ orderBy: [QuickbooksPaymentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPaymentsConnection! """ @@ -114930,17 +116899,17 @@ type QuickbooksPaymentMethod implements OneGraphNode & QuickbooksNode { """ refundReceipts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ + """ filter: QuickbooksRefundReceiptFilter, """ The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksRefundReceiptsConnection! """ @@ -114948,17 +116917,17 @@ type QuickbooksPaymentMethod implements OneGraphNode & QuickbooksNode { """ salesReceipts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ + """ filter: QuickbooksSalesReceiptFilter, """ The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksSalesReceiptsConnection! """ @@ -114966,17 +116935,17 @@ type QuickbooksPaymentMethod implements OneGraphNode & QuickbooksNode { """ purchases(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseFilter """ + """ filter: QuickbooksPurchaseFilter, """ The method to use when ordering `Purchase`. - """ orderBy: [QuickbooksPurchasesOrderBy!] """ + """ orderBy: [QuickbooksPurchasesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPurchasesConnection! oneGraphLinkedNodes(""" @@ -115219,17 +117188,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ physicalAddresses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPhysicalAddressFilter """ + """ filter: QuickbooksPhysicalAddressFilter, """ The method to use when ordering `PhysicalAddress`. - """ orderBy: [QuickbooksPhysicalAddressesOrderBy!] """ + """ orderBy: [QuickbooksPhysicalAddressesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPhysicalAddressesConnection! """ @@ -115237,17 +117206,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ paymentMethods(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentMethodFilter """ + """ filter: QuickbooksPaymentMethodFilter, """ The method to use when ordering `PaymentMethod`. - """ orderBy: [QuickbooksPaymentMethodsOrderBy!] """ + """ orderBy: [QuickbooksPaymentMethodsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPaymentMethodsConnection! """ @@ -115255,17 +117224,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ terms(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTermFilter """ + """ filter: QuickbooksTermFilter, """ The method to use when ordering `Term`. - """ orderBy: [QuickbooksTermsOrderBy!] """ + """ orderBy: [QuickbooksTermsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTermsConnection! """ @@ -115273,17 +117242,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ taxClassifications(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxClassificationFilter """ + """ filter: QuickbooksTaxClassificationFilter, """ The method to use when ordering `TaxClassification`. - """ orderBy: [QuickbooksTaxClassificationsOrderBy!] """ + """ orderBy: [QuickbooksTaxClassificationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTaxClassificationsConnection! """ @@ -115291,17 +117260,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ taxCodes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxCodeFilter """ + """ filter: QuickbooksTaxCodeFilter, """ The method to use when ordering `TaxCode`. - """ orderBy: [QuickbooksTaxCodesOrderBy!] """ + """ orderBy: [QuickbooksTaxCodesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTaxCodesConnection! """ @@ -115309,17 +117278,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ taxAgencies(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxAgencyFilter """ + """ filter: QuickbooksTaxAgencyFilter, """ The method to use when ordering `TaxAgency`. - """ orderBy: [QuickbooksTaxAgenciesOrderBy!] """ + """ orderBy: [QuickbooksTaxAgenciesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTaxAgenciesConnection! """ @@ -115327,17 +117296,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ taxRates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxRateFilter """ + """ filter: QuickbooksTaxRateFilter, """ The method to use when ordering `TaxRate`. - """ orderBy: [QuickbooksTaxRatesOrderBy!] """ + """ orderBy: [QuickbooksTaxRatesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTaxRatesConnection! """ @@ -115345,17 +117314,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ purchaseTaxRateDetails(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseTaxRateDetailFilter """ + """ filter: QuickbooksPurchaseTaxRateDetailFilter, """ The method to use when ordering `PurchaseTaxRateDetail`. - """ orderBy: [QuickbooksPurchaseTaxRateDetailsOrderBy!] """ + """ orderBy: [QuickbooksPurchaseTaxRateDetailsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPurchaseTaxRateDetailsConnection! """ @@ -115363,17 +117332,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ classes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksClassFilter """ + """ filter: QuickbooksClassFilter, """ The method to use when ordering `Class`. - """ orderBy: [QuickbooksClassesOrderBy!] """ + """ orderBy: [QuickbooksClassesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksClassesConnection! """ @@ -115381,17 +117350,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ employees(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEmployeeFilter """ + """ filter: QuickbooksEmployeeFilter, """ The method to use when ordering `Employee`. - """ orderBy: [QuickbooksEmployeesOrderBy!] """ + """ orderBy: [QuickbooksEmployeesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksEmployeesConnection! """ @@ -115399,17 +117368,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ vendors(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksVendorFilter """ + """ filter: QuickbooksVendorFilter, """ The method to use when ordering `Vendor`. - """ orderBy: [QuickbooksVendorsOrderBy!] """ + """ orderBy: [QuickbooksVendorsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksVendorsConnection! """ @@ -115417,17 +117386,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ departments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepartmentFilter """ + """ filter: QuickbooksDepartmentFilter, """ The method to use when ordering `Department`. - """ orderBy: [QuickbooksDepartmentsOrderBy!] """ + """ orderBy: [QuickbooksDepartmentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksDepartmentsConnection! """ @@ -115435,17 +117404,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ customers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ + """ filter: QuickbooksCustomerFilter, """ The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ + """ orderBy: [QuickbooksCustomersOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCustomersConnection! """ @@ -115453,17 +117422,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ items(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ + """ filter: QuickbooksItemFilter, """ The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ + """ orderBy: [QuickbooksItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksItemsConnection! """ @@ -115471,17 +117440,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ bills(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillFilter """ + """ filter: QuickbooksBillFilter, """ The method to use when ordering `Bill`. - """ orderBy: [QuickbooksBillsOrderBy!] """ + """ orderBy: [QuickbooksBillsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksBillsConnection! """ @@ -115489,17 +117458,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ billPayments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillPaymentFilter """ + """ filter: QuickbooksBillPaymentFilter, """ The method to use when ordering `BillPayment`. - """ orderBy: [QuickbooksBillPaymentsOrderBy!] """ + """ orderBy: [QuickbooksBillPaymentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksBillPaymentsConnection! """ @@ -115507,17 +117476,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ realmInvoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceFilter """ + """ filter: QuickbooksInvoiceFilter, """ The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ + """ orderBy: [QuickbooksInvoicesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksInvoicesConnection! """ @@ -115525,17 +117494,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ realmEstimates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ + """ filter: QuickbooksEstimateFilter, """ The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ + """ orderBy: [QuickbooksEstimatesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksEstimatesConnection! """ @@ -115543,17 +117512,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ creditMemos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ + """ filter: QuickbooksCreditMemoFilter, """ The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCreditMemosConnection! """ @@ -115561,17 +117530,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ payments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentFilter """ + """ filter: QuickbooksPaymentFilter, """ The method to use when ordering `Payment`. - """ orderBy: [QuickbooksPaymentsOrderBy!] """ + """ orderBy: [QuickbooksPaymentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPaymentsConnection! """ @@ -115579,17 +117548,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ refundReceipts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ + """ filter: QuickbooksRefundReceiptFilter, """ The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksRefundReceiptsConnection! """ @@ -115597,17 +117566,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ salesReceipts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ + """ filter: QuickbooksSalesReceiptFilter, """ The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksSalesReceiptsConnection! """ @@ -115615,17 +117584,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ journalCodes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksJournalCodeFilter """ + """ filter: QuickbooksJournalCodeFilter, """ The method to use when ordering `JournalCode`. - """ orderBy: [QuickbooksJournalCodesOrderBy!] """ + """ orderBy: [QuickbooksJournalCodesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksJournalCodesConnection! """ @@ -115633,17 +117602,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ journalEntries(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksJournalEntryFilter """ + """ filter: QuickbooksJournalEntryFilter, """ The method to use when ordering `JournalEntry`. - """ orderBy: [QuickbooksJournalEntriesOrderBy!] """ + """ orderBy: [QuickbooksJournalEntriesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksJournalEntriesConnection! """ @@ -115651,17 +117620,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ transfers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransferFilter """ + """ filter: QuickbooksTransferFilter, """ The method to use when ordering `Transfer`. - """ orderBy: [QuickbooksTransfersOrderBy!] """ + """ orderBy: [QuickbooksTransfersOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTransfersConnection! """ @@ -115669,17 +117638,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ deposits(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepositFilter """ + """ filter: QuickbooksDepositFilter, """ The method to use when ordering `Deposit`. - """ orderBy: [QuickbooksDepositsOrderBy!] """ + """ orderBy: [QuickbooksDepositsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksDepositsConnection! """ @@ -115687,17 +117656,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ paymentLineItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentLineItemFilter """ + """ filter: QuickbooksPaymentLineItemFilter, """ The method to use when ordering `PaymentLineItem`. - """ orderBy: [QuickbooksPaymentLineItemsOrderBy!] """ + """ orderBy: [QuickbooksPaymentLineItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPaymentLineItemsConnection! """ @@ -115705,17 +117674,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ transactionTaxDetailLines(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransactionTaxDetailLineFilter """ + """ filter: QuickbooksTransactionTaxDetailLineFilter, """ The method to use when ordering `TransactionTaxDetailLine`. - """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] """ + """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! """ @@ -115723,17 +117692,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ timeActivities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTimeActivityFilter """ + """ filter: QuickbooksTimeActivityFilter, """ The method to use when ordering `TimeActivity`. - """ orderBy: [QuickbooksTimeActivitiesOrderBy!] """ + """ orderBy: [QuickbooksTimeActivitiesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTimeActivitiesConnection! """ @@ -115741,17 +117710,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ purchases(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseFilter """ + """ filter: QuickbooksPurchaseFilter, """ The method to use when ordering `Purchase`. - """ orderBy: [QuickbooksPurchasesOrderBy!] """ + """ orderBy: [QuickbooksPurchasesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPurchasesConnection! """ @@ -115759,17 +117728,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ purchaseLineItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseLineItemFilter """ + """ filter: QuickbooksPurchaseLineItemFilter, """ The method to use when ordering `PurchaseLineItem`. - """ orderBy: [QuickbooksPurchaseLineItemsOrderBy!] """ + """ orderBy: [QuickbooksPurchaseLineItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPurchaseLineItemsConnection! """ @@ -115781,35 +117750,36 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ companyInfos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCompanyInfoFilter """ + """ filter: QuickbooksCompanyInfoFilter, """ The method to use when ordering `CompanyInfo`. - """ orderBy: [QuickbooksCompanyInfosOrderBy!] """ + """ orderBy: [QuickbooksCompanyInfosOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. - """ first: Int): QuickbooksCompanyInfosConnection! @deprecated(reason: "Please use companyInfo instead") + """ first: Int): QuickbooksCompanyInfosConnection! + @deprecated(reason: "Please use companyInfo instead") """ Reads and enables pagination through a set of `Invoice`. """ invoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceFilter """ + """ filter: QuickbooksInvoiceFilter, """ The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ + """ orderBy: [QuickbooksInvoicesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksInvoicesConnection! """ @@ -115817,17 +117787,17 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ estimates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ + """ filter: QuickbooksEstimateFilter, """ The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ + """ orderBy: [QuickbooksEstimatesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksEstimatesConnection! oneGraphLinkedNodes(""" @@ -116720,17 +118690,17 @@ type QuickbooksTaxClassification implements OneGraphNode & QuickbooksNode { """ subTaxClassifications(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxClassificationFilter """ + """ filter: QuickbooksTaxClassificationFilter, """ The method to use when ordering `TaxClassification`. - """ orderBy: [QuickbooksTaxClassificationsOrderBy!] """ + """ orderBy: [QuickbooksTaxClassificationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTaxClassificationsConnection! """ @@ -116738,17 +118708,17 @@ type QuickbooksTaxClassification implements OneGraphNode & QuickbooksNode { """ items(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ + """ filter: QuickbooksItemFilter, """ The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ + """ orderBy: [QuickbooksItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksItemsConnection! oneGraphLinkedNodes(""" @@ -117140,17 +119110,17 @@ type QuickbooksEstimate implements OneGraphNode & QuickbooksNode { """ lineItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateLineItemFilter """ + """ filter: QuickbooksEstimateLineItemFilter, """ The method to use when ordering `EstimateLineItem`. - """ orderBy: [QuickbooksEstimateLineItemsOrderBy!] """ + """ orderBy: [QuickbooksEstimateLineItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksEstimateLineItemsConnection! """ @@ -117158,17 +119128,17 @@ type QuickbooksEstimate implements OneGraphNode & QuickbooksNode { """ transactionTaxDetailLines(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransactionTaxDetailLineFilter """ + """ filter: QuickbooksTransactionTaxDetailLineFilter, """ The method to use when ordering `TransactionTaxDetailLine`. - """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] """ + """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! """ @@ -117176,17 +119146,17 @@ type QuickbooksEstimate implements OneGraphNode & QuickbooksNode { """ invoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceFilter """ + """ filter: QuickbooksInvoiceFilter, """ The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ + """ orderBy: [QuickbooksInvoicesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksInvoicesConnection! oneGraphLinkedNodes(""" @@ -117933,17 +119903,17 @@ type QuickbooksClass implements OneGraphNode & QuickbooksNode { """ subClasses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksClassFilter """ + """ filter: QuickbooksClassFilter, """ The method to use when ordering `Class`. - """ orderBy: [QuickbooksClassesOrderBy!] """ + """ orderBy: [QuickbooksClassesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksClassesConnection! """ @@ -117951,17 +119921,17 @@ type QuickbooksClass implements OneGraphNode & QuickbooksNode { """ invoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceFilter """ + """ filter: QuickbooksInvoiceFilter, """ The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ + """ orderBy: [QuickbooksInvoicesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksInvoicesConnection! """ @@ -117969,17 +119939,17 @@ type QuickbooksClass implements OneGraphNode & QuickbooksNode { """ estimates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ + """ filter: QuickbooksEstimateFilter, """ The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ + """ orderBy: [QuickbooksEstimatesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksEstimatesConnection! """ @@ -117987,17 +119957,17 @@ type QuickbooksClass implements OneGraphNode & QuickbooksNode { """ creditMemos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ + """ filter: QuickbooksCreditMemoFilter, """ The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCreditMemosConnection! """ @@ -118005,17 +119975,17 @@ type QuickbooksClass implements OneGraphNode & QuickbooksNode { """ refundReceipts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ + """ filter: QuickbooksRefundReceiptFilter, """ The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksRefundReceiptsConnection! """ @@ -118023,17 +119993,17 @@ type QuickbooksClass implements OneGraphNode & QuickbooksNode { """ salesReceipts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ + """ filter: QuickbooksSalesReceiptFilter, """ The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksSalesReceiptsConnection! """ @@ -118041,17 +120011,17 @@ type QuickbooksClass implements OneGraphNode & QuickbooksNode { """ timeActivities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTimeActivityFilter """ + """ filter: QuickbooksTimeActivityFilter, """ The method to use when ordering `TimeActivity`. - """ orderBy: [QuickbooksTimeActivitiesOrderBy!] """ + """ orderBy: [QuickbooksTimeActivitiesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTimeActivitiesConnection! oneGraphLinkedNodes(""" @@ -118356,17 +120326,17 @@ type QuickbooksEmployee implements OneGraphNode & QuickbooksNode { """ timeActivities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTimeActivityFilter """ + """ filter: QuickbooksTimeActivityFilter, """ The method to use when ordering `TimeActivity`. - """ orderBy: [QuickbooksTimeActivitiesOrderBy!] """ + """ orderBy: [QuickbooksTimeActivitiesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTimeActivitiesConnection! """ @@ -118374,17 +120344,17 @@ type QuickbooksEmployee implements OneGraphNode & QuickbooksNode { """ purchases(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseFilter """ + """ filter: QuickbooksPurchaseFilter, """ The method to use when ordering `Purchase`. - """ orderBy: [QuickbooksPurchasesOrderBy!] """ + """ orderBy: [QuickbooksPurchasesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPurchasesConnection! oneGraphLinkedNodes(""" @@ -118487,17 +120457,17 @@ type QuickbooksPhysicalAddress implements OneGraphNode & QuickbooksNode { """ employees(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEmployeeFilter """ + """ filter: QuickbooksEmployeeFilter, """ The method to use when ordering `Employee`. - """ orderBy: [QuickbooksEmployeesOrderBy!] """ + """ orderBy: [QuickbooksEmployeesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksEmployeesConnection! """ @@ -118505,17 +120475,17 @@ type QuickbooksPhysicalAddress implements OneGraphNode & QuickbooksNode { """ vendorsByBillingAddress(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksVendorFilter """ + """ filter: QuickbooksVendorFilter, """ The method to use when ordering `Vendor`. - """ orderBy: [QuickbooksVendorsOrderBy!] """ + """ orderBy: [QuickbooksVendorsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksVendorsConnection! """ @@ -118523,17 +120493,17 @@ type QuickbooksPhysicalAddress implements OneGraphNode & QuickbooksNode { """ customersByShippingAddress(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ + """ filter: QuickbooksCustomerFilter, """ The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ + """ orderBy: [QuickbooksCustomersOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCustomersConnection! """ @@ -118541,17 +120511,17 @@ type QuickbooksPhysicalAddress implements OneGraphNode & QuickbooksNode { """ customersByBillingAddress(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ + """ filter: QuickbooksCustomerFilter, """ The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ + """ orderBy: [QuickbooksCustomersOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCustomersConnection! """ @@ -118559,17 +120529,17 @@ type QuickbooksPhysicalAddress implements OneGraphNode & QuickbooksNode { """ invoicesByShipFromAddress(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceFilter """ + """ filter: QuickbooksInvoiceFilter, """ The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ + """ orderBy: [QuickbooksInvoicesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksInvoicesConnection! """ @@ -118577,17 +120547,17 @@ type QuickbooksPhysicalAddress implements OneGraphNode & QuickbooksNode { """ invoicesByShippingAddress(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceFilter """ + """ filter: QuickbooksInvoiceFilter, """ The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ + """ orderBy: [QuickbooksInvoicesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksInvoicesConnection! """ @@ -118595,17 +120565,17 @@ type QuickbooksPhysicalAddress implements OneGraphNode & QuickbooksNode { """ invoicesByBillingAddress(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceFilter """ + """ filter: QuickbooksInvoiceFilter, """ The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ + """ orderBy: [QuickbooksInvoicesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksInvoicesConnection! """ @@ -118613,17 +120583,17 @@ type QuickbooksPhysicalAddress implements OneGraphNode & QuickbooksNode { """ estimatesByShipFromAddress(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ + """ filter: QuickbooksEstimateFilter, """ The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ + """ orderBy: [QuickbooksEstimatesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksEstimatesConnection! """ @@ -118631,17 +120601,17 @@ type QuickbooksPhysicalAddress implements OneGraphNode & QuickbooksNode { """ estimatesByShippingAddress(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ + """ filter: QuickbooksEstimateFilter, """ The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ + """ orderBy: [QuickbooksEstimatesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksEstimatesConnection! """ @@ -118649,17 +120619,17 @@ type QuickbooksPhysicalAddress implements OneGraphNode & QuickbooksNode { """ estimatesByBillingAddress(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ + """ filter: QuickbooksEstimateFilter, """ The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ + """ orderBy: [QuickbooksEstimatesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksEstimatesConnection! """ @@ -118667,17 +120637,17 @@ type QuickbooksPhysicalAddress implements OneGraphNode & QuickbooksNode { """ creditMemosByShippingAddress(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ + """ filter: QuickbooksCreditMemoFilter, """ The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCreditMemosConnection! """ @@ -118685,17 +120655,17 @@ type QuickbooksPhysicalAddress implements OneGraphNode & QuickbooksNode { """ creditMemosByBillingAddress(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ + """ filter: QuickbooksCreditMemoFilter, """ The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCreditMemosConnection! """ @@ -118703,17 +120673,17 @@ type QuickbooksPhysicalAddress implements OneGraphNode & QuickbooksNode { """ refundReceiptsByShippingAddress(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ + """ filter: QuickbooksRefundReceiptFilter, """ The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksRefundReceiptsConnection! """ @@ -118721,17 +120691,17 @@ type QuickbooksPhysicalAddress implements OneGraphNode & QuickbooksNode { """ refundReceiptsByBillingAddress(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ + """ filter: QuickbooksRefundReceiptFilter, """ The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksRefundReceiptsConnection! """ @@ -118739,17 +120709,17 @@ type QuickbooksPhysicalAddress implements OneGraphNode & QuickbooksNode { """ salesReceiptsByShipFromAddress(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ + """ filter: QuickbooksSalesReceiptFilter, """ The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksSalesReceiptsConnection! """ @@ -118757,17 +120727,17 @@ type QuickbooksPhysicalAddress implements OneGraphNode & QuickbooksNode { """ salesReceiptsByShippingAddress(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ + """ filter: QuickbooksSalesReceiptFilter, """ The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksSalesReceiptsConnection! """ @@ -118775,17 +120745,17 @@ type QuickbooksPhysicalAddress implements OneGraphNode & QuickbooksNode { """ salesReceiptsByBillingAddress(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ + """ filter: QuickbooksSalesReceiptFilter, """ The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksSalesReceiptsConnection! """ @@ -118793,17 +120763,17 @@ type QuickbooksPhysicalAddress implements OneGraphNode & QuickbooksNode { """ purchasesByRemitToAddress(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseFilter """ + """ filter: QuickbooksPurchaseFilter, """ The method to use when ordering `Purchase`. - """ orderBy: [QuickbooksPurchasesOrderBy!] """ + """ orderBy: [QuickbooksPurchasesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPurchasesConnection! oneGraphLinkedNodes(""" @@ -119062,17 +121032,17 @@ type QuickbooksInvoice implements OneGraphNode & QuickbooksNode { """ lineItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceLineItemFilter """ + """ filter: QuickbooksInvoiceLineItemFilter, """ The method to use when ordering `InvoiceLineItem`. - """ orderBy: [QuickbooksInvoiceLineItemsOrderBy!] """ + """ orderBy: [QuickbooksInvoiceLineItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksInvoiceLineItemsConnection! """ @@ -119080,17 +121050,17 @@ type QuickbooksInvoice implements OneGraphNode & QuickbooksNode { """ creditMemos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ + """ filter: QuickbooksCreditMemoFilter, """ The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCreditMemosConnection! """ @@ -119098,17 +121068,17 @@ type QuickbooksInvoice implements OneGraphNode & QuickbooksNode { """ transactionTaxDetailLines(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransactionTaxDetailLineFilter """ + """ filter: QuickbooksTransactionTaxDetailLineFilter, """ The method to use when ordering `TransactionTaxDetailLine`. - """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] """ + """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! """ @@ -119116,17 +121086,17 @@ type QuickbooksInvoice implements OneGraphNode & QuickbooksNode { """ estimates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ + """ filter: QuickbooksEstimateFilter, """ The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ + """ orderBy: [QuickbooksEstimatesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksEstimatesConnection! oneGraphLinkedNodes(""" @@ -119429,17 +121399,17 @@ type QuickbooksCurrency implements OneGraphNode & QuickbooksNode { """ accounts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksAccountFilter """ + """ filter: QuickbooksAccountFilter, """ The method to use when ordering `Account`. - """ orderBy: [QuickbooksAccountsOrderBy!] """ + """ orderBy: [QuickbooksAccountsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksAccountsConnection! """ @@ -119447,17 +121417,17 @@ type QuickbooksCurrency implements OneGraphNode & QuickbooksNode { """ vendors(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksVendorFilter """ + """ filter: QuickbooksVendorFilter, """ The method to use when ordering `Vendor`. - """ orderBy: [QuickbooksVendorsOrderBy!] """ + """ orderBy: [QuickbooksVendorsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksVendorsConnection! """ @@ -119465,17 +121435,17 @@ type QuickbooksCurrency implements OneGraphNode & QuickbooksNode { """ customers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ + """ filter: QuickbooksCustomerFilter, """ The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ + """ orderBy: [QuickbooksCustomersOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCustomersConnection! """ @@ -119483,17 +121453,17 @@ type QuickbooksCurrency implements OneGraphNode & QuickbooksNode { """ bills(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillFilter """ + """ filter: QuickbooksBillFilter, """ The method to use when ordering `Bill`. - """ orderBy: [QuickbooksBillsOrderBy!] """ + """ orderBy: [QuickbooksBillsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksBillsConnection! """ @@ -119501,17 +121471,17 @@ type QuickbooksCurrency implements OneGraphNode & QuickbooksNode { """ billPayments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillPaymentFilter """ + """ filter: QuickbooksBillPaymentFilter, """ The method to use when ordering `BillPayment`. - """ orderBy: [QuickbooksBillPaymentsOrderBy!] """ + """ orderBy: [QuickbooksBillPaymentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksBillPaymentsConnection! """ @@ -119519,17 +121489,17 @@ type QuickbooksCurrency implements OneGraphNode & QuickbooksNode { """ invoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceFilter """ + """ filter: QuickbooksInvoiceFilter, """ The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ + """ orderBy: [QuickbooksInvoicesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksInvoicesConnection! """ @@ -119537,17 +121507,17 @@ type QuickbooksCurrency implements OneGraphNode & QuickbooksNode { """ estimates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ + """ filter: QuickbooksEstimateFilter, """ The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ + """ orderBy: [QuickbooksEstimatesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksEstimatesConnection! """ @@ -119555,17 +121525,17 @@ type QuickbooksCurrency implements OneGraphNode & QuickbooksNode { """ creditMemos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ + """ filter: QuickbooksCreditMemoFilter, """ The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCreditMemosConnection! """ @@ -119573,17 +121543,17 @@ type QuickbooksCurrency implements OneGraphNode & QuickbooksNode { """ payments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentFilter """ + """ filter: QuickbooksPaymentFilter, """ The method to use when ordering `Payment`. - """ orderBy: [QuickbooksPaymentsOrderBy!] """ + """ orderBy: [QuickbooksPaymentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPaymentsConnection! """ @@ -119591,17 +121561,17 @@ type QuickbooksCurrency implements OneGraphNode & QuickbooksNode { """ refundReceipts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ + """ filter: QuickbooksRefundReceiptFilter, """ The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksRefundReceiptsConnection! """ @@ -119609,17 +121579,17 @@ type QuickbooksCurrency implements OneGraphNode & QuickbooksNode { """ salesReceipts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ + """ filter: QuickbooksSalesReceiptFilter, """ The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksSalesReceiptsConnection! """ @@ -119627,17 +121597,17 @@ type QuickbooksCurrency implements OneGraphNode & QuickbooksNode { """ journalEntries(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksJournalEntryFilter """ + """ filter: QuickbooksJournalEntryFilter, """ The method to use when ordering `JournalEntry`. - """ orderBy: [QuickbooksJournalEntriesOrderBy!] """ + """ orderBy: [QuickbooksJournalEntriesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksJournalEntriesConnection! """ @@ -119645,17 +121615,17 @@ type QuickbooksCurrency implements OneGraphNode & QuickbooksNode { """ deposits(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepositFilter """ + """ filter: QuickbooksDepositFilter, """ The method to use when ordering `Deposit`. - """ orderBy: [QuickbooksDepositsOrderBy!] """ + """ orderBy: [QuickbooksDepositsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksDepositsConnection! """ @@ -119663,17 +121633,17 @@ type QuickbooksCurrency implements OneGraphNode & QuickbooksNode { """ purchases(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseFilter """ + """ filter: QuickbooksPurchaseFilter, """ The method to use when ordering `Purchase`. - """ orderBy: [QuickbooksPurchasesOrderBy!] """ + """ orderBy: [QuickbooksPurchasesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPurchasesConnection! oneGraphLinkedNodes(""" @@ -119813,17 +121783,17 @@ type QuickbooksBillPayment implements OneGraphNode & QuickbooksNode { """ lineItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillPaymentLineItemFilter """ + """ filter: QuickbooksBillPaymentLineItemFilter, """ The method to use when ordering `BillPaymentLineItem`. - """ orderBy: [QuickbooksBillPaymentLineItemsOrderBy!] """ + """ orderBy: [QuickbooksBillPaymentLineItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksBillPaymentLineItemsConnection! oneGraphLinkedNodes(""" @@ -120284,17 +122254,17 @@ type QuickbooksDepartment implements OneGraphNode & QuickbooksNode { """ subDepartments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepartmentFilter """ + """ filter: QuickbooksDepartmentFilter, """ The method to use when ordering `Department`. - """ orderBy: [QuickbooksDepartmentsOrderBy!] """ + """ orderBy: [QuickbooksDepartmentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksDepartmentsConnection! """ @@ -120302,17 +122272,17 @@ type QuickbooksDepartment implements OneGraphNode & QuickbooksNode { """ bills(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillFilter """ + """ filter: QuickbooksBillFilter, """ The method to use when ordering `Bill`. - """ orderBy: [QuickbooksBillsOrderBy!] """ + """ orderBy: [QuickbooksBillsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksBillsConnection! """ @@ -120320,17 +122290,17 @@ type QuickbooksDepartment implements OneGraphNode & QuickbooksNode { """ billPayments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillPaymentFilter """ + """ filter: QuickbooksBillPaymentFilter, """ The method to use when ordering `BillPayment`. - """ orderBy: [QuickbooksBillPaymentsOrderBy!] """ + """ orderBy: [QuickbooksBillPaymentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksBillPaymentsConnection! """ @@ -120338,17 +122308,17 @@ type QuickbooksDepartment implements OneGraphNode & QuickbooksNode { """ invoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceFilter """ + """ filter: QuickbooksInvoiceFilter, """ The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ + """ orderBy: [QuickbooksInvoicesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksInvoicesConnection! """ @@ -120356,17 +122326,17 @@ type QuickbooksDepartment implements OneGraphNode & QuickbooksNode { """ estimates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ + """ filter: QuickbooksEstimateFilter, """ The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ + """ orderBy: [QuickbooksEstimatesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksEstimatesConnection! """ @@ -120374,17 +122344,17 @@ type QuickbooksDepartment implements OneGraphNode & QuickbooksNode { """ creditMemos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ + """ filter: QuickbooksCreditMemoFilter, """ The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCreditMemosConnection! """ @@ -120392,17 +122362,17 @@ type QuickbooksDepartment implements OneGraphNode & QuickbooksNode { """ refundReceipts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ + """ filter: QuickbooksRefundReceiptFilter, """ The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksRefundReceiptsConnection! """ @@ -120410,17 +122380,17 @@ type QuickbooksDepartment implements OneGraphNode & QuickbooksNode { """ salesReceipts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ + """ filter: QuickbooksSalesReceiptFilter, """ The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksSalesReceiptsConnection! """ @@ -120428,17 +122398,17 @@ type QuickbooksDepartment implements OneGraphNode & QuickbooksNode { """ deposits(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepositFilter """ + """ filter: QuickbooksDepositFilter, """ The method to use when ordering `Deposit`. - """ orderBy: [QuickbooksDepositsOrderBy!] """ + """ orderBy: [QuickbooksDepositsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksDepositsConnection! """ @@ -120446,17 +122416,17 @@ type QuickbooksDepartment implements OneGraphNode & QuickbooksNode { """ timeActivities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTimeActivityFilter """ + """ filter: QuickbooksTimeActivityFilter, """ The method to use when ordering `TimeActivity`. - """ orderBy: [QuickbooksTimeActivitiesOrderBy!] """ + """ orderBy: [QuickbooksTimeActivitiesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTimeActivitiesConnection! oneGraphLinkedNodes(""" @@ -120587,17 +122557,17 @@ type QuickbooksBill implements OneGraphNode & QuickbooksNode { """ lineItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillLineItemFilter """ + """ filter: QuickbooksBillLineItemFilter, """ The method to use when ordering `BillLineItem`. - """ orderBy: [QuickbooksBillLineItemsOrderBy!] """ + """ orderBy: [QuickbooksBillLineItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksBillLineItemsConnection! oneGraphLinkedNodes(""" @@ -121095,17 +123065,17 @@ type QuickbooksTerm implements OneGraphNode & QuickbooksNode { """ vendors(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksVendorFilter """ + """ filter: QuickbooksVendorFilter, """ The method to use when ordering `Vendor`. - """ orderBy: [QuickbooksVendorsOrderBy!] """ + """ orderBy: [QuickbooksVendorsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksVendorsConnection! """ @@ -121113,17 +123083,17 @@ type QuickbooksTerm implements OneGraphNode & QuickbooksNode { """ customers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ + """ filter: QuickbooksCustomerFilter, """ The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ + """ orderBy: [QuickbooksCustomersOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCustomersConnection! """ @@ -121131,17 +123101,17 @@ type QuickbooksTerm implements OneGraphNode & QuickbooksNode { """ bills(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillFilter """ + """ filter: QuickbooksBillFilter, """ The method to use when ordering `Bill`. - """ orderBy: [QuickbooksBillsOrderBy!] """ + """ orderBy: [QuickbooksBillsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksBillsConnection! """ @@ -121149,17 +123119,17 @@ type QuickbooksTerm implements OneGraphNode & QuickbooksNode { """ invoicesBySalesTerm(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceFilter """ + """ filter: QuickbooksInvoiceFilter, """ The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ + """ orderBy: [QuickbooksInvoicesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksInvoicesConnection! """ @@ -121167,17 +123137,17 @@ type QuickbooksTerm implements OneGraphNode & QuickbooksNode { """ estimates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ + """ filter: QuickbooksEstimateFilter, """ The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ + """ orderBy: [QuickbooksEstimatesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksEstimatesConnection! """ @@ -121185,17 +123155,17 @@ type QuickbooksTerm implements OneGraphNode & QuickbooksNode { """ creditMemos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ + """ filter: QuickbooksCreditMemoFilter, """ The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCreditMemosConnection! oneGraphLinkedNodes(""" @@ -121373,17 +123343,17 @@ type QuickbooksVendor implements OneGraphNode & QuickbooksNode { """ items(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ + """ filter: QuickbooksItemFilter, """ The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ + """ orderBy: [QuickbooksItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksItemsConnection! """ @@ -121391,17 +123361,17 @@ type QuickbooksVendor implements OneGraphNode & QuickbooksNode { """ bills(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillFilter """ + """ filter: QuickbooksBillFilter, """ The method to use when ordering `Bill`. - """ orderBy: [QuickbooksBillsOrderBy!] """ + """ orderBy: [QuickbooksBillsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksBillsConnection! """ @@ -121409,17 +123379,17 @@ type QuickbooksVendor implements OneGraphNode & QuickbooksNode { """ billPayments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillPaymentFilter """ + """ filter: QuickbooksBillPaymentFilter, """ The method to use when ordering `BillPayment`. - """ orderBy: [QuickbooksBillPaymentsOrderBy!] """ + """ orderBy: [QuickbooksBillPaymentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksBillPaymentsConnection! """ @@ -121427,17 +123397,17 @@ type QuickbooksVendor implements OneGraphNode & QuickbooksNode { """ depositLineItemsByRealmIdAndVendorId(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepositLineItemFilter """ + """ filter: QuickbooksDepositLineItemFilter, """ The method to use when ordering `DepositLineItem`. - """ orderBy: [QuickbooksDepositLineItemsOrderBy!] """ + """ orderBy: [QuickbooksDepositLineItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksDepositLineItemsConnection! """ @@ -121445,17 +123415,17 @@ type QuickbooksVendor implements OneGraphNode & QuickbooksNode { """ timeActivities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTimeActivityFilter """ + """ filter: QuickbooksTimeActivityFilter, """ The method to use when ordering `TimeActivity`. - """ orderBy: [QuickbooksTimeActivitiesOrderBy!] """ + """ orderBy: [QuickbooksTimeActivitiesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTimeActivitiesConnection! """ @@ -121463,17 +123433,17 @@ type QuickbooksVendor implements OneGraphNode & QuickbooksNode { """ purchases(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseFilter """ + """ filter: QuickbooksPurchaseFilter, """ The method to use when ordering `Purchase`. - """ orderBy: [QuickbooksPurchasesOrderBy!] """ + """ orderBy: [QuickbooksPurchasesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPurchasesConnection! oneGraphLinkedNodes(""" @@ -121798,17 +123768,17 @@ type QuickbooksItem implements OneGraphNode & QuickbooksNode { """ subItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ + """ filter: QuickbooksItemFilter, """ The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ + """ orderBy: [QuickbooksItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksItemsConnection! """ @@ -121816,17 +123786,17 @@ type QuickbooksItem implements OneGraphNode & QuickbooksNode { """ timeActivities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTimeActivityFilter """ + """ filter: QuickbooksTimeActivityFilter, """ The method to use when ordering `TimeActivity`. - """ orderBy: [QuickbooksTimeActivitiesOrderBy!] """ + """ orderBy: [QuickbooksTimeActivitiesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTimeActivitiesConnection! oneGraphLinkedNodes(""" @@ -123225,17 +125195,17 @@ type QuickbooksTaxCode implements OneGraphNode & QuickbooksNode { """ accountsUsingTaxCodeAsDefault(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksAccountFilter """ + """ filter: QuickbooksAccountFilter, """ The method to use when ordering `Account`. - """ orderBy: [QuickbooksAccountsOrderBy!] """ + """ orderBy: [QuickbooksAccountsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksAccountsConnection! """ @@ -123243,17 +125213,17 @@ type QuickbooksTaxCode implements OneGraphNode & QuickbooksNode { """ customers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ + """ filter: QuickbooksCustomerFilter, """ The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ + """ orderBy: [QuickbooksCustomersOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCustomersConnection! """ @@ -123261,17 +125231,17 @@ type QuickbooksTaxCode implements OneGraphNode & QuickbooksNode { """ itemsBySalesTaxCode(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ + """ filter: QuickbooksItemFilter, """ The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ + """ orderBy: [QuickbooksItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksItemsConnection! """ @@ -123279,17 +125249,17 @@ type QuickbooksTaxCode implements OneGraphNode & QuickbooksNode { """ itemsByPurchaseTaxCode(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ + """ filter: QuickbooksItemFilter, """ The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ + """ orderBy: [QuickbooksItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksItemsConnection! """ @@ -123297,17 +125267,17 @@ type QuickbooksTaxCode implements OneGraphNode & QuickbooksNode { """ invoicesByTransactionTaxCode(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceFilter """ + """ filter: QuickbooksInvoiceFilter, """ The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ + """ orderBy: [QuickbooksInvoicesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksInvoicesConnection! """ @@ -123315,17 +125285,17 @@ type QuickbooksTaxCode implements OneGraphNode & QuickbooksNode { """ estimatesByTransactionTaxCode(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ + """ filter: QuickbooksEstimateFilter, """ The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ + """ orderBy: [QuickbooksEstimatesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksEstimatesConnection! """ @@ -123333,17 +125303,17 @@ type QuickbooksTaxCode implements OneGraphNode & QuickbooksNode { """ creditMemos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ + """ filter: QuickbooksCreditMemoFilter, """ The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCreditMemosConnection! """ @@ -123351,17 +125321,17 @@ type QuickbooksTaxCode implements OneGraphNode & QuickbooksNode { """ refundReceipts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ + """ filter: QuickbooksRefundReceiptFilter, """ The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksRefundReceiptsConnection! """ @@ -123369,17 +125339,17 @@ type QuickbooksTaxCode implements OneGraphNode & QuickbooksNode { """ salesReceipts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ + """ filter: QuickbooksSalesReceiptFilter, """ The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksSalesReceiptsConnection! """ @@ -123387,17 +125357,17 @@ type QuickbooksTaxCode implements OneGraphNode & QuickbooksNode { """ journalEntries(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksJournalEntryFilter """ + """ filter: QuickbooksJournalEntryFilter, """ The method to use when ordering `JournalEntry`. - """ orderBy: [QuickbooksJournalEntriesOrderBy!] """ + """ orderBy: [QuickbooksJournalEntriesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksJournalEntriesConnection! oneGraphLinkedNodes(""" @@ -123844,17 +125814,17 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ subAccounts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksAccountFilter """ + """ filter: QuickbooksAccountFilter, """ The method to use when ordering `Account`. - """ orderBy: [QuickbooksAccountsOrderBy!] """ + """ orderBy: [QuickbooksAccountsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksAccountsConnection! """ @@ -123862,17 +125832,17 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ vendors(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksVendorFilter """ + """ filter: QuickbooksVendorFilter, """ The method to use when ordering `Vendor`. - """ orderBy: [QuickbooksVendorsOrderBy!] """ + """ orderBy: [QuickbooksVendorsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksVendorsConnection! """ @@ -123880,17 +125850,17 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ customers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ + """ filter: QuickbooksCustomerFilter, """ The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ + """ orderBy: [QuickbooksCustomersOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCustomersConnection! """ @@ -123898,17 +125868,17 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ itemsByAssetAccount(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ + """ filter: QuickbooksItemFilter, """ The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ + """ orderBy: [QuickbooksItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksItemsConnection! """ @@ -123916,17 +125886,17 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ itemsByIncomeAccount(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ + """ filter: QuickbooksItemFilter, """ The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ + """ orderBy: [QuickbooksItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksItemsConnection! """ @@ -123934,17 +125904,17 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ itemsByExpenseAccount(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ + """ filter: QuickbooksItemFilter, """ The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ + """ orderBy: [QuickbooksItemsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksItemsConnection! """ @@ -123952,17 +125922,17 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ bills(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillFilter """ + """ filter: QuickbooksBillFilter, """ The method to use when ordering `Bill`. - """ orderBy: [QuickbooksBillsOrderBy!] """ + """ orderBy: [QuickbooksBillsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksBillsConnection! """ @@ -123970,17 +125940,17 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ billPayments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillPaymentFilter """ + """ filter: QuickbooksBillPaymentFilter, """ The method to use when ordering `BillPayment`. - """ orderBy: [QuickbooksBillPaymentsOrderBy!] """ + """ orderBy: [QuickbooksBillPaymentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksBillPaymentsConnection! """ @@ -123988,17 +125958,17 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ billPaymentsByCheckPaymentAccount(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillPaymentFilter """ + """ filter: QuickbooksBillPaymentFilter, """ The method to use when ordering `BillPayment`. - """ orderBy: [QuickbooksBillPaymentsOrderBy!] """ + """ orderBy: [QuickbooksBillPaymentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksBillPaymentsConnection! """ @@ -124006,17 +125976,17 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ billPaymentsByCreditCardPaymentAccount(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillPaymentFilter """ + """ filter: QuickbooksBillPaymentFilter, """ The method to use when ordering `BillPayment`. - """ orderBy: [QuickbooksBillPaymentsOrderBy!] """ + """ orderBy: [QuickbooksBillPaymentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksBillPaymentsConnection! """ @@ -124024,17 +125994,17 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ invoicesByDepositToAccount(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceFilter """ + """ filter: QuickbooksInvoiceFilter, """ The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ + """ orderBy: [QuickbooksInvoicesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksInvoicesConnection! """ @@ -124042,17 +126012,17 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ paymentsByDepositToAccount(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentFilter """ + """ filter: QuickbooksPaymentFilter, """ The method to use when ordering `Payment`. - """ orderBy: [QuickbooksPaymentsOrderBy!] """ + """ orderBy: [QuickbooksPaymentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPaymentsConnection! """ @@ -124060,17 +126030,17 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ paymentsByAccountsReceivableAccount(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentFilter """ + """ filter: QuickbooksPaymentFilter, """ The method to use when ordering `Payment`. - """ orderBy: [QuickbooksPaymentsOrderBy!] """ + """ orderBy: [QuickbooksPaymentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPaymentsConnection! """ @@ -124078,17 +126048,17 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ refundReceiptsByDepositToAccount(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ + """ filter: QuickbooksRefundReceiptFilter, """ The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksRefundReceiptsConnection! """ @@ -124096,17 +126066,17 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ salesReceiptsByDepositToAccount(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ + """ filter: QuickbooksSalesReceiptFilter, """ The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksSalesReceiptsConnection! """ @@ -124114,17 +126084,17 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ transfersByTransferToAccount(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransferFilter """ + """ filter: QuickbooksTransferFilter, """ The method to use when ordering `Transfer`. - """ orderBy: [QuickbooksTransfersOrderBy!] """ + """ orderBy: [QuickbooksTransfersOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTransfersConnection! """ @@ -124132,17 +126102,17 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ transfersByTransferfromAccount(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransferFilter """ + """ filter: QuickbooksTransferFilter, """ The method to use when ordering `Transfer`. - """ orderBy: [QuickbooksTransfersOrderBy!] """ + """ orderBy: [QuickbooksTransfersOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTransfersConnection! """ @@ -124150,17 +126120,17 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ depositsByDepositTo(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepositFilter """ + """ filter: QuickbooksDepositFilter, """ The method to use when ordering `Deposit`. - """ orderBy: [QuickbooksDepositsOrderBy!] """ + """ orderBy: [QuickbooksDepositsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksDepositsConnection! """ @@ -124168,17 +126138,17 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ depositsByCashBack(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepositFilter """ + """ filter: QuickbooksDepositFilter, """ The method to use when ordering `Deposit`. - """ orderBy: [QuickbooksDepositsOrderBy!] """ + """ orderBy: [QuickbooksDepositsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksDepositsConnection! """ @@ -124186,17 +126156,17 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ purchases(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseFilter """ + """ filter: QuickbooksPurchaseFilter, """ The method to use when ordering `Purchase`. - """ orderBy: [QuickbooksPurchasesOrderBy!] """ + """ orderBy: [QuickbooksPurchasesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPurchasesConnection! oneGraphLinkedNodes(""" @@ -124449,17 +126419,17 @@ type QuickbooksCustomer implements OneGraphNode & QuickbooksNode { """ subCustomers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ + """ filter: QuickbooksCustomerFilter, """ The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ + """ orderBy: [QuickbooksCustomersOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCustomersConnection! """ @@ -124467,17 +126437,17 @@ type QuickbooksCustomer implements OneGraphNode & QuickbooksNode { """ invoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceFilter """ + """ filter: QuickbooksInvoiceFilter, """ The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ + """ orderBy: [QuickbooksInvoicesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksInvoicesConnection! """ @@ -124485,17 +126455,17 @@ type QuickbooksCustomer implements OneGraphNode & QuickbooksNode { """ estimates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ + """ filter: QuickbooksEstimateFilter, """ The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ + """ orderBy: [QuickbooksEstimatesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksEstimatesConnection! """ @@ -124503,17 +126473,17 @@ type QuickbooksCustomer implements OneGraphNode & QuickbooksNode { """ creditMemos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ + """ filter: QuickbooksCreditMemoFilter, """ The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCreditMemosConnection! """ @@ -124521,17 +126491,17 @@ type QuickbooksCustomer implements OneGraphNode & QuickbooksNode { """ payments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentFilter """ + """ filter: QuickbooksPaymentFilter, """ The method to use when ordering `Payment`. - """ orderBy: [QuickbooksPaymentsOrderBy!] """ + """ orderBy: [QuickbooksPaymentsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPaymentsConnection! """ @@ -124539,17 +126509,17 @@ type QuickbooksCustomer implements OneGraphNode & QuickbooksNode { """ refundReceipts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ + """ filter: QuickbooksRefundReceiptFilter, """ The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksRefundReceiptsConnection! """ @@ -124557,17 +126527,17 @@ type QuickbooksCustomer implements OneGraphNode & QuickbooksNode { """ salesReceipts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ + """ filter: QuickbooksSalesReceiptFilter, """ The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksSalesReceiptsConnection! """ @@ -124575,17 +126545,17 @@ type QuickbooksCustomer implements OneGraphNode & QuickbooksNode { """ timeActivities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTimeActivityFilter """ + """ filter: QuickbooksTimeActivityFilter, """ The method to use when ordering `TimeActivity`. - """ orderBy: [QuickbooksTimeActivitiesOrderBy!] """ + """ orderBy: [QuickbooksTimeActivitiesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksTimeActivitiesConnection! """ @@ -124593,17 +126563,17 @@ type QuickbooksCustomer implements OneGraphNode & QuickbooksNode { """ purchases(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseFilter """ + """ filter: QuickbooksPurchaseFilter, """ The method to use when ordering `Purchase`. - """ orderBy: [QuickbooksPurchasesOrderBy!] """ + """ orderBy: [QuickbooksPurchasesOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksPurchasesConnection! oneGraphLinkedNodes(""" @@ -124662,17 +126632,17 @@ type QuickbooksTaxExemptionReason implements OneGraphNode & QuickbooksNode { """ customers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ + """ filter: QuickbooksCustomerFilter, """ The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ + """ orderBy: [QuickbooksCustomersOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): QuickbooksCustomersConnection! oneGraphLinkedNodes(""" @@ -125255,19 +127225,19 @@ type ImmigrationGraphQuery implements OneGraphNode & ImmigrationGraphNode { """ allAttorneys(""" A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphAttorneyFilter """ + """ filter: ImmigrationGraphAttorneyFilter, """ A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphAttorneyCondition """ + """ condition: ImmigrationGraphAttorneyCondition, """ The method to use when ordering `Attorney`. - """ orderBy: [ImmigrationGraphAttorneysOrderBy!] """ + """ orderBy: [ImmigrationGraphAttorneysOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): ImmigrationGraphAttorneysConnection """ @@ -125275,19 +127245,19 @@ type ImmigrationGraphQuery implements OneGraphNode & ImmigrationGraphNode { """ allEmployers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphEmployerFilter """ + """ filter: ImmigrationGraphEmployerFilter, """ A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphEmployerCondition """ + """ condition: ImmigrationGraphEmployerCondition, """ The method to use when ordering `Employer`. - """ orderBy: [ImmigrationGraphEmployersOrderBy!] """ + """ orderBy: [ImmigrationGraphEmployersOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): ImmigrationGraphEmployersConnection """ @@ -125295,19 +127265,19 @@ type ImmigrationGraphQuery implements OneGraphNode & ImmigrationGraphNode { """ allEmployerPocs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphEmployerPocFilter """ + """ filter: ImmigrationGraphEmployerPocFilter, """ A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphEmployerPocCondition """ + """ condition: ImmigrationGraphEmployerPocCondition, """ The method to use when ordering `EmployerPoc`. - """ orderBy: [ImmigrationGraphEmployerPocsOrderBy!] """ + """ orderBy: [ImmigrationGraphEmployerPocsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): ImmigrationGraphEmployerPocsConnection """ @@ -125315,19 +127285,19 @@ type ImmigrationGraphQuery implements OneGraphNode & ImmigrationGraphNode { """ allFirms(""" A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphFirmFilter """ + """ filter: ImmigrationGraphFirmFilter, """ A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphFirmCondition """ + """ condition: ImmigrationGraphFirmCondition, """ The method to use when ordering `Firm`. - """ orderBy: [ImmigrationGraphFirmsOrderBy!] """ + """ orderBy: [ImmigrationGraphFirmsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): ImmigrationGraphFirmsConnection """ @@ -125335,19 +127305,19 @@ type ImmigrationGraphQuery implements OneGraphNode & ImmigrationGraphNode { """ allH1BApplications(""" A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphH1BApplicationFilter """ + """ filter: ImmigrationGraphH1BApplicationFilter, """ A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphH1BApplicationCondition """ + """ condition: ImmigrationGraphH1BApplicationCondition, """ The method to use when ordering `H1BApplication`. - """ orderBy: [ImmigrationGraphH1BApplicationsOrderBy!] """ + """ orderBy: [ImmigrationGraphH1BApplicationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): ImmigrationGraphH1BApplicationsConnection """ @@ -125355,19 +127325,19 @@ type ImmigrationGraphQuery implements OneGraphNode & ImmigrationGraphNode { """ allPreparers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphPreparerFilter """ + """ filter: ImmigrationGraphPreparerFilter, """ A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphPreparerCondition """ + """ condition: ImmigrationGraphPreparerCondition, """ The method to use when ordering `Preparer`. - """ orderBy: [ImmigrationGraphPreparersOrderBy!] """ + """ orderBy: [ImmigrationGraphPreparersOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): ImmigrationGraphPreparersConnection """ @@ -125554,19 +127524,19 @@ type ImmigrationGraphEmployer implements OneGraphNode & ImmigrationGraphNode { """ h1BApplicationsByEmployerId(""" A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphH1BApplicationFilter """ + """ filter: ImmigrationGraphH1BApplicationFilter, """ A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphH1BApplicationCondition """ + """ condition: ImmigrationGraphH1BApplicationCondition, """ The method to use when ordering `H1BApplication`. - """ orderBy: [ImmigrationGraphH1BApplicationsOrderBy!] """ + """ orderBy: [ImmigrationGraphH1BApplicationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): ImmigrationGraphH1BApplicationsConnection! oneGraphLinkedNodes(""" @@ -126125,19 +128095,19 @@ type ImmigrationGraphPreparer implements OneGraphNode & ImmigrationGraphNode { """ h1BApplicationsByPreparerId(""" A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphH1BApplicationFilter """ + """ filter: ImmigrationGraphH1BApplicationFilter, """ A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphH1BApplicationCondition """ + """ condition: ImmigrationGraphH1BApplicationCondition, """ The method to use when ordering `H1BApplication`. - """ orderBy: [ImmigrationGraphH1BApplicationsOrderBy!] """ + """ orderBy: [ImmigrationGraphH1BApplicationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): ImmigrationGraphH1BApplicationsConnection! oneGraphLinkedNodes(""" @@ -126684,19 +128654,19 @@ type ImmigrationGraphFirm implements OneGraphNode & ImmigrationGraphNode { """ attorneysByFirmId(""" A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphAttorneyFilter """ + """ filter: ImmigrationGraphAttorneyFilter, """ A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphAttorneyCondition """ + """ condition: ImmigrationGraphAttorneyCondition, """ The method to use when ordering `Attorney`. - """ orderBy: [ImmigrationGraphAttorneysOrderBy!] """ + """ orderBy: [ImmigrationGraphAttorneysOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): ImmigrationGraphAttorneysConnection! """ @@ -126704,19 +128674,19 @@ type ImmigrationGraphFirm implements OneGraphNode & ImmigrationGraphNode { """ preparersByFirmId(""" A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphPreparerFilter """ + """ filter: ImmigrationGraphPreparerFilter, """ A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphPreparerCondition """ + """ condition: ImmigrationGraphPreparerCondition, """ The method to use when ordering `Preparer`. - """ orderBy: [ImmigrationGraphPreparersOrderBy!] """ + """ orderBy: [ImmigrationGraphPreparersOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): ImmigrationGraphPreparersConnection! oneGraphLinkedNodes(""" @@ -126821,19 +128791,19 @@ type ImmigrationGraphAttorney implements OneGraphNode & ImmigrationGraphNode { """ h1BApplicationsByAttorneyId(""" A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphH1BApplicationFilter """ + """ filter: ImmigrationGraphH1BApplicationFilter, """ A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphH1BApplicationCondition """ + """ condition: ImmigrationGraphH1BApplicationCondition, """ The method to use when ordering `H1BApplication`. - """ orderBy: [ImmigrationGraphH1BApplicationsOrderBy!] """ + """ orderBy: [ImmigrationGraphH1BApplicationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): ImmigrationGraphH1BApplicationsConnection! oneGraphLinkedNodes(""" @@ -127079,19 +129049,19 @@ type ImmigrationGraphEmployerPoc implements OneGraphNode & ImmigrationGraphNode """ h1BApplicationsByEmployerPocId(""" A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphH1BApplicationFilter """ + """ filter: ImmigrationGraphH1BApplicationFilter, """ A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphH1BApplicationCondition """ + """ condition: ImmigrationGraphH1BApplicationCondition, """ The method to use when ordering `H1BApplication`. - """ orderBy: [ImmigrationGraphH1BApplicationsOrderBy!] """ + """ orderBy: [ImmigrationGraphH1BApplicationsOrderBy!], """ Read all values in the set after (below) this cursor. - """ after: String """ + """ after: String, """ Read all values in the set before (above) this cursor. - """ before: String """ + """ before: String, """ Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ + """ offset: Int, """ Only read the last `n` values of the set. - """ last: Int """ + """ last: Int, """ Only read the first `n` values of the set. """ first: Int): ImmigrationGraphH1BApplicationsConnection! oneGraphLinkedNodes(""" @@ -127553,11 +129523,11 @@ type GitHubEnterpriseIdentityProvider implements OneGraphNode & GitHubNode { """ externalIdentities(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubExternalIdentityConnection! """ @@ -127683,13 +129653,13 @@ type GitHubEnterprisePendingCollaboratorEdge { """ repositories(""" Ordering options for repositories. - """ orderBy: GitHubRepositoryOrder """ + """ orderBy: GitHubRepositoryOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubEnterpriseRepositoryInfoConnection! } @@ -127915,13 +129885,13 @@ type GitHubEnterpriseOutsideCollaboratorEdge { """ repositories(""" Ordering options for repositories. - """ orderBy: GitHubRepositoryOrder """ + """ orderBy: GitHubRepositoryOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubEnterpriseRepositoryInfoConnection! } @@ -128343,13 +130313,13 @@ type GitHubEnterpriseServerUserAccount implements OneGraphNode & GitHubNode { """ emails(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Ordering options for Enterprise Server user account emails returned from the connection. """ orderBy: GitHubEnterpriseServerUserAccountEmailOrder): GitHubEnterpriseServerUserAccountEmailConnection! """ @@ -128462,13 +130432,13 @@ type GitHubEnterpriseServerInstallation implements OneGraphNode & GitHubNode { """ userAccounts(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Ordering options for Enterprise Server user accounts returned from the connection. """ orderBy: GitHubEnterpriseServerUserAccountOrder): GitHubEnterpriseServerUserAccountConnection! """ @@ -128476,13 +130446,13 @@ type GitHubEnterpriseServerInstallation implements OneGraphNode & GitHubNode { """ userAccountsUploads(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Ordering options for Enterprise Server user accounts uploads returned from the connection. """ orderBy: GitHubEnterpriseServerUserAccountsUploadOrder): GitHubEnterpriseServerUserAccountsUploadConnection! oneGraphLinkedNodes(""" @@ -128628,13 +130598,13 @@ type GitHubEnterpriseOwnerInfo { """ actionExecutionCapabilitySettingOrganizations(""" Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ + """ orderBy: GitHubOrganizationOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubOrganizationConnection! """ @@ -128642,17 +130612,17 @@ type GitHubEnterpriseOwnerInfo { """ admins(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Ordering options for administrators returned from the connection. - """ orderBy: GitHubEnterpriseMemberOrder """ + """ orderBy: GitHubEnterpriseMemberOrder, """ The role to filter by. - """ role: GitHubEnterpriseAdministratorRole """ + """ role: GitHubEnterpriseAdministratorRole, """ The search string to look for. """ query: String): GitHubEnterpriseAdministratorConnection! """ @@ -128660,11 +130630,11 @@ type GitHubEnterpriseOwnerInfo { """ affiliatedUsersWithTwoFactorDisabled(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubUserConnection! """ @@ -128680,15 +130650,15 @@ type GitHubEnterpriseOwnerInfo { """ allowPrivateRepositoryForkingSettingOrganizations(""" Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ + """ orderBy: GitHubOrganizationOrder, """ The setting value to find organizations for. - """ value: Boolean! """ + """ value: Boolean!, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubOrganizationConnection! """ @@ -128700,15 +130670,15 @@ type GitHubEnterpriseOwnerInfo { """ defaultRepositoryPermissionSettingOrganizations(""" Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ + """ orderBy: GitHubOrganizationOrder, """ The permission to find organizations for. - """ value: GitHubDefaultRepositoryPermissionField! """ + """ value: GitHubDefaultRepositoryPermissionField!, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubOrganizationConnection! """ @@ -128716,15 +130686,15 @@ type GitHubEnterpriseOwnerInfo { """ enterpriseServerInstallations(""" Ordering options for Enterprise Server installations returned. - """ orderBy: GitHubEnterpriseServerInstallationOrder """ + """ orderBy: GitHubEnterpriseServerInstallationOrder, """ Whether or not to only return installations discovered via GitHub Connect. - """ connectedOnly: Boolean """ + """ connectedOnly: Boolean, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubEnterpriseServerInstallationConnection! """ @@ -128736,13 +130706,13 @@ type GitHubEnterpriseOwnerInfo { """ ipAllowListEntries(""" Ordering options for IP allow list entries returned. - """ orderBy: GitHubIpAllowListEntryOrder """ + """ orderBy: GitHubIpAllowListEntryOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubIpAllowListEntryConnection! """ @@ -128762,15 +130732,15 @@ type GitHubEnterpriseOwnerInfo { """ membersCanChangeRepositoryVisibilitySettingOrganizations(""" Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ + """ orderBy: GitHubOrganizationOrder, """ The setting value to find organizations for. - """ value: Boolean! """ + """ value: Boolean!, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubOrganizationConnection! """ @@ -128794,15 +130764,15 @@ type GitHubEnterpriseOwnerInfo { """ membersCanCreateRepositoriesSettingOrganizations(""" Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ + """ orderBy: GitHubOrganizationOrder, """ The setting to find organizations for. - """ value: GitHubOrganizationMembersCanCreateRepositoriesSettingValue! """ + """ value: GitHubOrganizationMembersCanCreateRepositoriesSettingValue!, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubOrganizationConnection! """ @@ -128814,15 +130784,15 @@ type GitHubEnterpriseOwnerInfo { """ membersCanDeleteIssuesSettingOrganizations(""" Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ + """ orderBy: GitHubOrganizationOrder, """ The setting value to find organizations for. - """ value: Boolean! """ + """ value: Boolean!, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubOrganizationConnection! """ @@ -128834,15 +130804,15 @@ type GitHubEnterpriseOwnerInfo { """ membersCanDeleteRepositoriesSettingOrganizations(""" Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ + """ orderBy: GitHubOrganizationOrder, """ The setting value to find organizations for. - """ value: Boolean! """ + """ value: Boolean!, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubOrganizationConnection! """ @@ -128854,15 +130824,15 @@ type GitHubEnterpriseOwnerInfo { """ membersCanInviteCollaboratorsSettingOrganizations(""" Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ + """ orderBy: GitHubOrganizationOrder, """ The setting value to find organizations for. - """ value: Boolean! """ + """ value: Boolean!, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubOrganizationConnection! """ @@ -128878,15 +130848,15 @@ type GitHubEnterpriseOwnerInfo { """ membersCanUpdateProtectedBranchesSettingOrganizations(""" Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ + """ orderBy: GitHubOrganizationOrder, """ The setting value to find organizations for. - """ value: Boolean! """ + """ value: Boolean!, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubOrganizationConnection! """ @@ -128898,15 +130868,15 @@ type GitHubEnterpriseOwnerInfo { """ membersCanViewDependencyInsightsSettingOrganizations(""" Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ + """ orderBy: GitHubOrganizationOrder, """ The setting value to find organizations for. - """ value: Boolean! """ + """ value: Boolean!, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubOrganizationConnection! """ @@ -128918,15 +130888,15 @@ type GitHubEnterpriseOwnerInfo { """ organizationProjectsSettingOrganizations(""" Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ + """ orderBy: GitHubOrganizationOrder, """ The setting value to find organizations for. - """ value: Boolean! """ + """ value: Boolean!, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubOrganizationConnection! """ @@ -128934,19 +130904,19 @@ type GitHubEnterpriseOwnerInfo { """ outsideCollaborators(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Only return outside collaborators on repositories with this visibility. - """ visibility: GitHubRepositoryVisibility """ + """ visibility: GitHubRepositoryVisibility, """ Ordering options for outside collaborators returned from the connection. - """ orderBy: GitHubEnterpriseMemberOrder """ + """ orderBy: GitHubEnterpriseMemberOrder, """ The search string to look for. - """ query: String """ + """ query: String, """ The login of one specific outside collaborator. """ login: String): GitHubEnterpriseOutsideCollaboratorConnection! """ @@ -128954,17 +130924,17 @@ type GitHubEnterpriseOwnerInfo { """ pendingAdminInvitations(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ The role to filter by. - """ role: GitHubEnterpriseAdministratorRole """ + """ role: GitHubEnterpriseAdministratorRole, """ Ordering options for pending enterprise administrator invitations returned from the connection. - """ orderBy: GitHubEnterpriseAdministratorInvitationOrder """ + """ orderBy: GitHubEnterpriseAdministratorInvitationOrder, """ The search string to look for. """ query: String): GitHubEnterpriseAdministratorInvitationConnection! """ @@ -128972,15 +130942,15 @@ type GitHubEnterpriseOwnerInfo { """ pendingCollaborators(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Ordering options for pending repository collaborator invitations returned from the connection. - """ orderBy: GitHubRepositoryInvitationOrder """ + """ orderBy: GitHubRepositoryInvitationOrder, """ The search string to look for. """ query: String): GitHubEnterprisePendingCollaboratorConnection! """ @@ -128988,13 +130958,13 @@ type GitHubEnterpriseOwnerInfo { """ pendingMemberInvitations(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ The search string to look for. """ query: String): GitHubEnterprisePendingMemberInvitationConnection! """ @@ -129006,15 +130976,15 @@ type GitHubEnterpriseOwnerInfo { """ repositoryProjectsSettingOrganizations(""" Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ + """ orderBy: GitHubOrganizationOrder, """ The setting value to find organizations for. - """ value: Boolean! """ + """ value: Boolean!, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubOrganizationConnection! """ @@ -129026,15 +130996,15 @@ type GitHubEnterpriseOwnerInfo { """ samlIdentityProviderSettingOrganizations(""" Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ + """ orderBy: GitHubOrganizationOrder, """ The setting value to find organizations for. - """ value: GitHubIdentityProviderConfigurationState! """ + """ value: GitHubIdentityProviderConfigurationState!, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubOrganizationConnection! """ @@ -129046,15 +131016,15 @@ type GitHubEnterpriseOwnerInfo { """ teamDiscussionsSettingOrganizations(""" Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ + """ orderBy: GitHubOrganizationOrder, """ The setting value to find organizations for. - """ value: Boolean! """ + """ value: Boolean!, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubOrganizationConnection! """ @@ -129066,15 +131036,15 @@ type GitHubEnterpriseOwnerInfo { """ twoFactorRequiredSettingOrganizations(""" Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ + """ orderBy: GitHubOrganizationOrder, """ The setting value to find organizations for. - """ value: Boolean! """ + """ value: Boolean!, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubOrganizationConnection! } @@ -129226,17 +131196,17 @@ type GitHubEnterpriseUserAccount implements OneGraphNode & GitHubNode & GitHubAc """ organizations(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ The role of the user in the enterprise organization. - """ role: GitHubEnterpriseUserAccountMembershipRole """ + """ role: GitHubEnterpriseUserAccountMembershipRole, """ Ordering options for organizations returned from the connection. - """ orderBy: GitHubOrganizationOrder """ + """ orderBy: GitHubOrganizationOrder, """ The search string to look for. """ query: String): GitHubEnterpriseOrganizationMembershipConnection! """ @@ -129324,7 +131294,8 @@ type GitHubEnterpriseBillingInfo { """ The number of available seats across all owned organizations based on the unique number of billable users. """ - availableSeats: Int! @deprecated(reason: "`availableSeats` will be replaced with `totalAvailableLicenses` to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.") + availableSeats: Int! + @deprecated(reason: "`availableSeats` will be replaced with `totalAvailableLicenses` to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.") """ The bandwidth quota in GB for all organizations owned by the enterprise. """ @@ -129340,7 +131311,8 @@ type GitHubEnterpriseBillingInfo { """ The total seats across all organizations owned by the enterprise. """ - seats: Int! @deprecated(reason: "`seats` will be replaced with `totalLicenses` to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.") + seats: Int! + @deprecated(reason: "`seats` will be replaced with `totalLicenses` to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.") """ The storage quota in GB for all organizations owned by the enterprise. """ @@ -129406,21 +131378,21 @@ type GitHubEnterprise implements OneGraphNode & GitHubNode { """ members(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Only return members within the selected GitHub Enterprise deployment - """ deployment: GitHubEnterpriseUserDeployment """ + """ deployment: GitHubEnterpriseUserDeployment, """ The role of the user in the enterprise organization or server. - """ role: GitHubEnterpriseUserAccountMembershipRole """ + """ role: GitHubEnterpriseUserAccountMembershipRole, """ Ordering options for members returned from the connection. - """ orderBy: GitHubEnterpriseMemberOrder """ + """ orderBy: GitHubEnterpriseMemberOrder, """ The search string to look for. - """ query: String """ + """ query: String, """ Only return members within the organizations with these logins """ organizationLogins: [String!]): GitHubEnterpriseMemberConnection! """ @@ -129432,15 +131404,15 @@ type GitHubEnterprise implements OneGraphNode & GitHubNode { """ organizations(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Ordering options for organizations returned from the connection. - """ orderBy: GitHubOrganizationOrder """ + """ orderBy: GitHubOrganizationOrder, """ The search string to look for. """ query: String): GitHubOrganizationConnection! """ @@ -129464,11 +131436,11 @@ type GitHubEnterprise implements OneGraphNode & GitHubNode { """ userAccounts(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubEnterpriseUserAccountConnection! """ @@ -129640,11 +131612,11 @@ type GitHubOrganizationIdentityProvider implements OneGraphNode & GitHubNode { """ externalIdentities(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubExternalIdentityConnection! """ @@ -129889,13 +131861,13 @@ type GitHubSponsorsListing implements OneGraphNode & GitHubNode { """ tiers(""" Ordering options for Sponsors tiers returned from the connection. - """ orderBy: GitHubSponsorsTierOrder """ + """ orderBy: GitHubSponsorsTierOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubSponsorsTierConnection oneGraphLinkedNodes(""" @@ -129973,15 +131945,15 @@ type GitHubSponsorsTierAdminInfo { """ sponsorships(""" Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer. - """ orderBy: GitHubSponsorshipOrder """ + """ orderBy: GitHubSponsorshipOrder, """ Whether or not to include private sponsorships in the result set - """ includePrivate: Boolean """ + """ includePrivate: Boolean, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubSponsorshipConnection! } @@ -130052,15 +132024,15 @@ interface GitHubSponsorable { """ sponsorshipsAsMaintainer(""" Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer. - """ orderBy: GitHubSponsorshipOrder """ + """ orderBy: GitHubSponsorshipOrder, """ Whether or not to include private sponsorships in the result set - """ includePrivate: Boolean """ + """ includePrivate: Boolean, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubSponsorshipConnection! """ @@ -130068,13 +132040,13 @@ interface GitHubSponsorable { """ sponsorshipsAsSponsor(""" Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer. - """ orderBy: GitHubSponsorshipOrder """ + """ orderBy: GitHubSponsorshipOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubSponsorshipConnection! } @@ -130105,7 +132077,8 @@ type GitHubSponsorship implements OneGraphNode & GitHubNode { """ The entity that is being sponsored """ - maintainer: GitHubUser! @deprecated(reason: "`Sponsorship.maintainer` will be removed. Use `Sponsorship.sponsorable` instead. Removal on 2020-04-01 UTC.") + maintainer: GitHubUser! + @deprecated(reason: "`Sponsorship.maintainer` will be removed. Use `Sponsorship.sponsorable` instead. Removal on 2020-04-01 UTC.") """ The privacy level for this sponsorship. """ @@ -136560,11 +138533,11 @@ type GitHubStatusCheckRollup implements OneGraphNode & GitHubNode { """ contexts(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubStatusCheckRollupContextConnection! """ @@ -137586,25 +139559,26 @@ interface GitHubRegistryPackageOwner { """ registryPackages(""" Filter registry package by whether it is publicly visible - """ publicOnly: Boolean """ + """ publicOnly: Boolean, """ Filter registry package by type (string). - """ registryPackageType: String """ + """ registryPackageType: String, """ Filter registry package by type. - """ packageType: GitHubRegistryPackageType """ + """ packageType: GitHubRegistryPackageType, """ Find registry packages in a repository. - """ repositoryId: ID """ + """ repositoryId: ID, """ Find registry packages by their names. - """ names: [String] """ + """ names: [String], """ Find registry package by name. - """ name: String """ + """ name: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubRegistryPackageConnection! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageOwner` object instead. Removal on 2020-04-01 UTC.") + """ after: String): GitHubRegistryPackageConnection! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageOwner` object instead. Removal on 2020-04-01 UTC.") } """ @@ -137620,17 +139594,18 @@ interface GitHubRegistryPackageSearch { """ registryPackagesForQuery(""" Filter registry package by type. - """ packageType: GitHubRegistryPackageType """ + """ packageType: GitHubRegistryPackageType, """ Find registry package by search query. - """ query: String """ + """ query: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubRegistryPackageConnection! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageSearch` object instead. Removal on 2020-04-01 UTC.") + """ after: String): GitHubRegistryPackageConnection! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageSearch` object instead. Removal on 2020-04-01 UTC.") } """ @@ -138010,11 +139985,13 @@ type GitHubRegistryPackageTag implements OneGraphNode & GitHubNode { """ Identifies the tag name of the version. """ - name: String! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageTag` object instead. Removal on 2020-04-01 UTC.") + name: String! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageTag` object instead. Removal on 2020-04-01 UTC.") """ version that the tag is associated with """ - version: GitHubRegistryPackageVersion @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageTag` object instead. Removal on 2020-04-01 UTC.") + version: GitHubRegistryPackageVersion + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageTag` object instead. Removal on 2020-04-01 UTC.") oneGraphLinkedNodes(""" Filter the connected nodes that are returned by service or typename. """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! @@ -138067,23 +140044,28 @@ type GitHubRegistryPackageStatistics { """ Number of times the package was downloaded this month. """ - downloadsThisMonth: Int! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageStatistics` object instead. Removal on 2020-04-01 UTC.") + downloadsThisMonth: Int! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageStatistics` object instead. Removal on 2020-04-01 UTC.") """ Number of times the package was downloaded this week. """ - downloadsThisWeek: Int! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageStatistics` object instead. Removal on 2020-04-01 UTC.") + downloadsThisWeek: Int! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageStatistics` object instead. Removal on 2020-04-01 UTC.") """ Number of times the package was downloaded this year. """ - downloadsThisYear: Int! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageStatistics` object instead. Removal on 2020-04-01 UTC.") + downloadsThisYear: Int! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageStatistics` object instead. Removal on 2020-04-01 UTC.") """ Number of times the package was downloaded today. """ - downloadsToday: Int! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageStatistics` object instead. Removal on 2020-04-01 UTC.") + downloadsToday: Int! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageStatistics` object instead. Removal on 2020-04-01 UTC.") """ Number of times the package was downloaded since it was created. """ - downloadsTotalCount: Int! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageStatistics` object instead. Removal on 2020-04-01 UTC.") + downloadsTotalCount: Int! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageStatistics` object instead. Removal on 2020-04-01 UTC.") } """ @@ -138160,23 +140142,28 @@ type GitHubRegistryPackageVersionStatistics { """ Number of times the package was downloaded this month. """ - downloadsThisMonth: Int! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersionStatistics` object instead. Removal on 2020-04-01 UTC.") + downloadsThisMonth: Int! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersionStatistics` object instead. Removal on 2020-04-01 UTC.") """ Number of times the package was downloaded this week. """ - downloadsThisWeek: Int! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersionStatistics` object instead. Removal on 2020-04-01 UTC.") + downloadsThisWeek: Int! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersionStatistics` object instead. Removal on 2020-04-01 UTC.") """ Number of times the package was downloaded this year. """ - downloadsThisYear: Int! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersionStatistics` object instead. Removal on 2020-04-01 UTC.") + downloadsThisYear: Int! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersionStatistics` object instead. Removal on 2020-04-01 UTC.") """ Number of times the package was downloaded today. """ - downloadsToday: Int! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersionStatistics` object instead. Removal on 2020-04-01 UTC.") + downloadsToday: Int! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersionStatistics` object instead. Removal on 2020-04-01 UTC.") """ Number of times the package was downloaded since it was created. """ - downloadsTotalCount: Int! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersionStatistics` object instead. Removal on 2020-04-01 UTC.") + downloadsTotalCount: Int! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersionStatistics` object instead. Removal on 2020-04-01 UTC.") } """ @@ -138222,7 +140209,8 @@ type GitHubRegistryPackageFile implements OneGraphNode & GitHubNode { """ A unique identifier for this file. """ - guid: String @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageFile` object instead. Removal on 2020-04-01 UTC.") + guid: String + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageFile` object instead. Removal on 2020-04-01 UTC.") """ """ @@ -138230,31 +140218,38 @@ type GitHubRegistryPackageFile implements OneGraphNode & GitHubNode { """ Identifies the md5. """ - md5: String @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageFile` object instead. Removal on 2020-04-01 UTC.") + md5: String + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageFile` object instead. Removal on 2020-04-01 UTC.") """ URL to download the asset metadata. """ - metadataUrl: String! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageFile` object instead. Removal on 2020-04-01 UTC.") + metadataUrl: String! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageFile` object instead. Removal on 2020-04-01 UTC.") """ Name of the file """ - name: String! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageFile` object instead. Removal on 2020-04-01 UTC.") + name: String! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageFile` object instead. Removal on 2020-04-01 UTC.") """ The package version this file belongs to. """ - packageVersion: GitHubRegistryPackageVersion! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageFile` object instead. Removal on 2020-04-01 UTC.") + packageVersion: GitHubRegistryPackageVersion! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageFile` object instead. Removal on 2020-04-01 UTC.") """ Identifies the sha1. """ - sha1: String @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageFile` object instead. Removal on 2020-04-01 UTC.") + sha1: String + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageFile` object instead. Removal on 2020-04-01 UTC.") """ Identifies the sha256. """ - sha256: String @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageFile` object instead. Removal on 2020-04-01 UTC.") + sha256: String + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageFile` object instead. Removal on 2020-04-01 UTC.") """ Identifies the size. """ - size: Int @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageFile` object instead. Removal on 2020-04-01 UTC.") + size: Int + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageFile` object instead. Removal on 2020-04-01 UTC.") """ Identifies the date and time when the object was last updated. """ @@ -138262,7 +140257,8 @@ type GitHubRegistryPackageFile implements OneGraphNode & GitHubNode { """ URL to download the asset. """ - url: String! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageFile` object instead. Removal on 2020-04-01 UTC.") + url: String! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageFile` object instead. Removal on 2020-04-01 UTC.") oneGraphLinkedNodes(""" Filter the connected nodes that are returned by service or typename. """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! @@ -138306,7 +140302,8 @@ type GitHubRegistryPackageDependency implements OneGraphNode & GitHubNode { """ Identifies the type of dependency. """ - dependencyType: GitHubRegistryPackageDependencyType! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageDependency` object instead. Removal on 2020-04-01 UTC.") + dependencyType: GitHubRegistryPackageDependencyType! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageDependency` object instead. Removal on 2020-04-01 UTC.") """ """ @@ -138314,11 +140311,13 @@ type GitHubRegistryPackageDependency implements OneGraphNode & GitHubNode { """ Identifies the name of the dependency. """ - name: String! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageDependency` object instead. Removal on 2020-04-01 UTC.") + name: String! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageDependency` object instead. Removal on 2020-04-01 UTC.") """ Identifies the version of the dependency. """ - version: String! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageDependency` object instead. Removal on 2020-04-01 UTC.") + version: String! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageDependency` object instead. Removal on 2020-04-01 UTC.") oneGraphLinkedNodes(""" Filter the connected nodes that are returned by service or typename. """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! @@ -138373,33 +140372,36 @@ type GitHubRegistryPackageVersion implements OneGraphNode & GitHubNode { """ dependencies(""" Find dependencies by type. - """ type: GitHubRegistryPackageDependencyType """ + """ type: GitHubRegistryPackageDependencyType, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubRegistryPackageDependencyConnection! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") + """ after: String): GitHubRegistryPackageDependencyConnection! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") """ A file associated with this registry package version """ fileByName(""" A specific file to find. - """ filename: String!): GitHubRegistryPackageFile @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") + """ filename: String!): GitHubRegistryPackageFile + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") """ List of files associated with this registry package version """ files(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubRegistryPackageFileConnection! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") + """ after: String): GitHubRegistryPackageFileConnection! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") """ """ @@ -138407,63 +140409,78 @@ type GitHubRegistryPackageVersion implements OneGraphNode & GitHubNode { """ A single line of text to install this package version. """ - installationCommand: String @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") + installationCommand: String + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") """ Identifies the package manifest for this package version. """ - manifest: String @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") + manifest: String + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") """ Identifies the platform this version was built for. """ - platform: String @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") + platform: String + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") """ Indicates whether this version is a pre-release. """ - preRelease: Boolean! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") + preRelease: Boolean! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") """ The README of this package version """ - readme: String @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") + readme: String + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") """ The HTML README of this package version """ - readmeHtml: String @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") + readmeHtml: String + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") """ Registry package associated with this version. """ - registryPackage: GitHubRegistryPackage @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") + registryPackage: GitHubRegistryPackage + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") """ Release associated with this package. """ - release: GitHubRelease @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") + release: GitHubRelease + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") """ Identifies the sha256. """ - sha256: String @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") + sha256: String + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") """ Identifies the size. """ - size: Int @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") + size: Int + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") """ Statistics about package activity. """ - statistics: GitHubRegistryPackageVersionStatistics @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") + statistics: GitHubRegistryPackageVersionStatistics + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") """ Identifies the package version summary. """ - summary: String @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") + summary: String + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") """ Time at which the most recent file upload for this package version finished """ - updatedAt: String! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") + updatedAt: String! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") """ Identifies the version number. """ - version: String! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") + version: String! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") """ Can the current viewer edit this Package version. """ - viewerCanEdit: Boolean! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") + viewerCanEdit: Boolean! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") oneGraphLinkedNodes(""" Filter the connected nodes that are returned by service or typename. """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! @@ -138480,7 +140497,8 @@ type GitHubRegistryPackage implements OneGraphNode & GitHubNode { """ The package type color """ - color: String! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") + color: String! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") """ """ @@ -138488,125 +140506,142 @@ type GitHubRegistryPackage implements OneGraphNode & GitHubNode { """ Find the latest version for the package. """ - latestVersion: GitHubRegistryPackageVersion @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") + latestVersion: GitHubRegistryPackageVersion + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") """ Identifies the title of the package. """ - name: String! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") + name: String! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") """ Identifies the title of the package, with the owner prefixed. """ - nameWithOwner: String! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") + nameWithOwner: String! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") """ Find the package file identified by the guid. """ packageFileByGuid(""" The unique identifier of the package_file - """ guid: String!): GitHubRegistryPackageFile @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object. Removal on 2020-04-01 UTC.") + """ guid: String!): GitHubRegistryPackageFile + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object. Removal on 2020-04-01 UTC.") """ Find the package file identified by the sha256. """ packageFileBySha256(""" The SHA256 of the package_file - """ sha256: String!): GitHubRegistryPackageFile @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object. Removal on 2020-04-01 UTC.") + """ sha256: String!): GitHubRegistryPackageFile + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object. Removal on 2020-04-01 UTC.") """ Identifies the type of the package. """ - packageType: GitHubRegistryPackageType! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") + packageType: GitHubRegistryPackageType! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") """ List the prerelease versions for this package. """ preReleaseVersions(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubRegistryPackageVersionConnection @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") + """ after: String): GitHubRegistryPackageVersionConnection + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") """ The type of the package. """ - registryPackageType: String @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") + registryPackageType: String + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") """ repository that the release is associated with """ - repository: GitHubRepository @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") + repository: GitHubRepository + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") """ Statistics about package activity. """ - statistics: GitHubRegistryPackageStatistics @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") + statistics: GitHubRegistryPackageStatistics + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") """ list of tags for this package """ tags(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubRegistryPackageTagConnection! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object. Removal on 2020-04-01 UTC.") + """ after: String): GitHubRegistryPackageTagConnection! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object. Removal on 2020-04-01 UTC.") """ List the topics for this package. """ topics(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubTopicConnection @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object. Removal on 2020-04-01 UTC.") + """ after: String): GitHubTopicConnection + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object. Removal on 2020-04-01 UTC.") """ Find package version by version string. """ version(""" The package version. - """ version: String!): GitHubRegistryPackageVersion @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") + """ version: String!): GitHubRegistryPackageVersion + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") """ Find package version by version string. """ versionByPlatform(""" Find a registry package for a specific platform. - """ platform: String! """ + """ platform: String!, """ The package version. - """ version: String!): GitHubRegistryPackageVersion @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") + """ version: String!): GitHubRegistryPackageVersion + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") """ Find package version by manifest SHA256. """ versionBySha256(""" The package SHA256 digest. - """ sha256: String!): GitHubRegistryPackageVersion @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") + """ sha256: String!): GitHubRegistryPackageVersion + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") """ list of versions for this package """ versions(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubRegistryPackageVersionConnection! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") + """ after: String): GitHubRegistryPackageVersionConnection! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") """ List package versions with a specific metadatum. """ versionsByMetadatum(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Filter on a specific metadatum. - """ metadatum: GitHubRegistryPackageMetadatum!): GitHubRegistryPackageVersionConnection @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") + """ metadatum: GitHubRegistryPackageMetadatum!): GitHubRegistryPackageVersionConnection + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") oneGraphLinkedNodes(""" Filter the connected nodes that are returned by service or typename. """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! @@ -139744,13 +141779,13 @@ interface GitHubMemberStatusable { """ memberStatuses(""" Ordering options for user statuses returned from the connection. - """ orderBy: GitHubUserStatusOrder """ + """ orderBy: GitHubUserStatusOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubUserStatusConnection! } @@ -139935,13 +141970,13 @@ type GitHubRelease implements OneGraphNode & GitHubUniformResourceLocatable & Gi """ releaseAssets(""" A list of names to filter the assets by. - """ name: String """ + """ name: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubReleaseAssetConnection! """ @@ -140160,7 +142195,8 @@ type GitHubMarketplaceListing implements OneGraphNode & GitHubNode { """ Whether this listing has been submitted for review from GitHub for approval to be displayed in the Marketplace. """ - hasApprovalBeenRequested: Boolean! @deprecated(reason: "`hasApprovalBeenRequested` will be removed. Use `isVerificationPendingFromDraft` instead. Removal on 2019-10-01 UTC.") + hasApprovalBeenRequested: Boolean! + @deprecated(reason: "`hasApprovalBeenRequested` will be removed. Use `isVerificationPendingFromDraft` instead. Removal on 2019-10-01 UTC.") """ Does this listing have any plans with a free trial? """ @@ -140192,7 +142228,8 @@ type GitHubMarketplaceListing implements OneGraphNode & GitHubNode { """ Whether this listing has been approved for display in the Marketplace. """ - isApproved: Boolean! @deprecated(reason: "`isApproved` will be removed. Use `isPublic` instead. Removal on 2019-10-01 UTC.") + isApproved: Boolean! + @deprecated(reason: "`isApproved` will be removed. Use `isPublic` instead. Removal on 2019-10-01 UTC.") """ Whether this listing has been removed from the Marketplace. """ @@ -140200,7 +142237,8 @@ type GitHubMarketplaceListing implements OneGraphNode & GitHubNode { """ Whether this listing has been removed from the Marketplace. """ - isDelisted: Boolean! @deprecated(reason: "`isDelisted` will be removed. Use `isArchived` instead. Removal on 2019-10-01 UTC.") + isDelisted: Boolean! + @deprecated(reason: "`isDelisted` will be removed. Use `isArchived` instead. Removal on 2019-10-01 UTC.") """ Whether this listing is still an editable draft that has not been submitted for review and is not publicly visible in the Marketplace. """ @@ -143452,7 +145490,12 @@ type StripePlan { Apply a transformation to the reported usage or set quantity before computing the billed price. Cannot be combined with `tiers`. """ transformUsage: StripeTransformUsage - subscriptions(status: StripeSubscriptionStatusEnum after: String before: String first: Int): StripeSubscriptionsConnection + subscriptions( + status: StripeSubscriptionStatusEnum + after: String + before: String + first: Int + ): StripeSubscriptionsConnection } enum StripeDeletedPlanObjectEnum { @@ -146393,11 +148436,11 @@ type IntercomAdmin implements IntercomAuthor { """ conversations(""" When true, retrieves conversation messages in plain text. Defaults to false. - """ displayAsPlaintext: Boolean """ + """ displayAsPlaintext: Boolean, """ Defaults to true. When true, fetches just open conversations. When false, fetches just closed conversations. - """ open: Boolean """ + """ open: Boolean, """ What field to sort the results by. Defaults to UPDATED_AT. - """ sortByField: IntercomConversationSortByField """ + """ sortByField: IntercomConversationSortByField, """ Return the conversations in ascending or descending order. Defaults to DESC. """ orderBy: IntercomSortOrderBy): IntercomConversationsConnection } @@ -160781,15 +162824,15 @@ type SalesforceContentBody { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection customFields(""" @@ -163736,15 +165779,15 @@ type SalesforceCallCenter implements OneGraphNode { """ additionalNumbers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAdditionalNumberConnectionFilter """ + """ filter: SalesforceAdditionalNumberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAdditionalNumberSortByFieldEnum """ + """ sortByCustomField: SalesforceAdditionalNumberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAdditionalNumberSortByFieldEnum """ + """ sortByField: SalesforceAdditionalNumberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AdditionalNumbers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAdditionalNumbersConnection """ @@ -163752,15 +165795,15 @@ type SalesforceCallCenter implements OneGraphNode { """ users(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserConnectionFilter """ + """ filter: SalesforceUserConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserSortByFieldEnum """ + """ sortByCustomField: SalesforceUserSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserSortByFieldEnum """ + """ sortByField: SalesforceUserSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Users to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUsersConnection customFields(""" @@ -164629,15 +166672,15 @@ type SalesforceActionLinkGroupTemplate implements OneGraphNode { """ actionLinkTemplates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceActionLinkTemplateConnectionFilter """ + """ filter: SalesforceActionLinkTemplateConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceActionLinkTemplateSortByFieldEnum """ + """ sortByCustomField: SalesforceActionLinkTemplateSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceActionLinkTemplateSortByFieldEnum """ + """ sortByField: SalesforceActionLinkTemplateSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ActionLinkTemplates to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceActionLinkTemplatesConnection customFields(""" @@ -165107,15 +167150,15 @@ type SalesforcePackageLicense implements OneGraphNode { """ userPackageLicenses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserPackageLicenseConnectionFilter """ + """ filter: SalesforceUserPackageLicenseConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserPackageLicenseSortByFieldEnum """ + """ sortByCustomField: SalesforceUserPackageLicenseSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserPackageLicenseSortByFieldEnum """ + """ sortByField: SalesforceUserPackageLicenseSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserPackageLicenses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserPackageLicensesConnection customFields(""" @@ -165866,15 +167909,15 @@ type SalesforcePeriod implements OneGraphNode { """ fiscalYearSettingsPlural(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFiscalYearSettingsConnectionFilter """ + """ filter: SalesforceFiscalYearSettingsConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFiscalYearSettingsSortByFieldEnum """ + """ sortByCustomField: SalesforceFiscalYearSettingsSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFiscalYearSettingsSortByFieldEnum """ + """ sortByField: SalesforceFiscalYearSettingsSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FiscalYearSettings to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFiscalYearSettingssConnection customFields(""" @@ -165962,15 +168005,15 @@ type SalesforceFiscalYearSettings implements OneGraphNode { """ periods(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePeriodConnectionFilter """ + """ filter: SalesforcePeriodConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePeriodSortByFieldEnum """ + """ sortByCustomField: SalesforcePeriodSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePeriodSortByFieldEnum """ + """ sortByField: SalesforcePeriodSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Periods to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePeriodsConnection customFields(""" @@ -166400,15 +168443,15 @@ type SalesforceCronJobDetail implements OneGraphNode { """ cronTriggers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCronTriggerConnectionFilter """ + """ filter: SalesforceCronTriggerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCronTriggerSortByFieldEnum """ + """ sortByCustomField: SalesforceCronTriggerSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCronTriggerSortByFieldEnum """ + """ sortByField: SalesforceCronTriggerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CronTriggers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCronTriggersConnection customFields(""" @@ -166802,15 +168845,15 @@ type SalesforceListViewChart implements OneGraphNode { """ userListViews(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserListViewConnectionFilter """ + """ filter: SalesforceUserListViewConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserListViewSortByFieldEnum """ + """ sortByCustomField: SalesforceUserListViewSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserListViewSortByFieldEnum """ + """ sortByField: SalesforceUserListViewSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserListViews to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserListViewsConnection customFields(""" @@ -167518,15 +169561,15 @@ type SalesforcePlatformCachePartition implements OneGraphNode { """ platforCachePartitionTypes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePlatformCachePartitionTypeConnectionFilter """ + """ filter: SalesforcePlatformCachePartitionTypeConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePlatformCachePartitionTypeSortByFieldEnum """ + """ sortByCustomField: SalesforcePlatformCachePartitionTypeSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePlatformCachePartitionTypeSortByFieldEnum """ + """ sortByField: SalesforcePlatformCachePartitionTypeSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of PlatformCachePartitionTypes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePlatformCachePartitionTypesConnection customFields(""" @@ -168172,15 +170215,15 @@ type SalesforceMatchingRule implements OneGraphNode { """ matchingRuleItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMatchingRuleItemConnectionFilter """ + """ filter: SalesforceMatchingRuleItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMatchingRuleItemSortByFieldEnum """ + """ sortByCustomField: SalesforceMatchingRuleItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMatchingRuleItemSortByFieldEnum """ + """ sortByField: SalesforceMatchingRuleItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of MatchingRuleItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceMatchingRuleItemsConnection customFields(""" @@ -168938,15 +170981,15 @@ type SalesforceSecureAgentsCluster implements OneGraphNode { """ secureAgents(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentConnectionFilter """ + """ filter: SalesforceSecureAgentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSecureAgentSortByFieldEnum """ + """ sortByCustomField: SalesforceSecureAgentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentSortByFieldEnum """ + """ sortByField: SalesforceSecureAgentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SecureAgents to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSecureAgentsConnection customFields(""" @@ -169042,15 +171085,15 @@ type SalesforceSecureAgent implements OneGraphNode { """ secureAgentPlugins(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentPluginConnectionFilter """ + """ filter: SalesforceSecureAgentPluginConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSecureAgentPluginSortByFieldEnum """ + """ sortByCustomField: SalesforceSecureAgentPluginSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentPluginSortByFieldEnum """ + """ sortByField: SalesforceSecureAgentPluginSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SecureAgentPlugins to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSecureAgentPluginsConnection customFields(""" @@ -169138,15 +171181,15 @@ type SalesforceSecureAgentPlugin implements OneGraphNode { """ secureAgentPluginProperties(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentPluginPropertyConnectionFilter """ + """ filter: SalesforceSecureAgentPluginPropertyConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSecureAgentPluginPropertySortByFieldEnum """ + """ sortByCustomField: SalesforceSecureAgentPluginPropertySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentPluginPropertySortByFieldEnum """ + """ sortByField: SalesforceSecureAgentPluginPropertySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SecureAgentPluginProperties to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSecureAgentPluginPropertysConnection customFields(""" @@ -169518,15 +171561,15 @@ type SalesforceLightningComponentBundle implements OneGraphNode { """ lightningComponentResources(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLightningComponentResourceConnectionFilter """ + """ filter: SalesforceLightningComponentResourceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLightningComponentResourceSortByFieldEnum """ + """ sortByCustomField: SalesforceLightningComponentResourceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLightningComponentResourceSortByFieldEnum """ + """ sortByField: SalesforceLightningComponentResourceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LightningComponentResources to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLightningComponentResourcesConnection customFields(""" @@ -171086,15 +173129,15 @@ type SalesforceCategoryNode implements OneGraphNode { """ categoryDatas(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCategoryDataConnectionFilter """ + """ filter: SalesforceCategoryDataConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCategoryDataSortByFieldEnum """ + """ sortByCustomField: SalesforceCategoryDataSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCategoryDataSortByFieldEnum """ + """ sortByField: SalesforceCategoryDataSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CategoryDatas to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCategoryDatasConnection """ @@ -171102,15 +173145,15 @@ type SalesforceCategoryNode implements OneGraphNode { """ categoryNodes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCategoryNodeConnectionFilter """ + """ filter: SalesforceCategoryNodeConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCategoryNodeSortByFieldEnum """ + """ sortByCustomField: SalesforceCategoryNodeSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCategoryNodeSortByFieldEnum """ + """ sortByField: SalesforceCategoryNodeSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CategoryNodes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCategoryNodesConnection customFields(""" @@ -171860,15 +173903,15 @@ type SalesforceStaticResource implements OneGraphNode { """ externalDataSources(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceExternalDataSourceConnectionFilter """ + """ filter: SalesforceExternalDataSourceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum """ + """ sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceExternalDataSourceSortByFieldEnum """ + """ sortByField: SalesforceExternalDataSourceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ExternalDataSources to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceExternalDataSourcesConnection customFields(""" @@ -172418,15 +174461,15 @@ type SalesforceApexTestSuite implements OneGraphNode { """ apexClassJunctions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTestSuiteMembershipConnectionFilter """ + """ filter: SalesforceTestSuiteMembershipConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTestSuiteMembershipSortByFieldEnum """ + """ sortByCustomField: SalesforceTestSuiteMembershipSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTestSuiteMembershipSortByFieldEnum """ + """ sortByField: SalesforceTestSuiteMembershipSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TestSuiteMemberships to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTestSuiteMembershipsConnection customFields(""" @@ -173296,15 +175339,15 @@ type SalesforceEmailServicesFunction implements OneGraphNode { """ addresses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailServicesAddressConnectionFilter """ + """ filter: SalesforceEmailServicesAddressConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailServicesAddressSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailServicesAddressSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailServicesAddressSortByFieldEnum """ + """ sortByField: SalesforceEmailServicesAddressSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailServicesAddresses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailServicesAddresssConnection customFields(""" @@ -173902,15 +175945,15 @@ type SalesforceAccountCleanInfo implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -173994,15 +176037,15 @@ type SalesforceAccountContactRole implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -174344,15 +176387,15 @@ type SalesforceBackgroundOperation implements OneGraphNode { """ mergedOperations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceBackgroundOperationConnectionFilter """ + """ filter: SalesforceBackgroundOperationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceBackgroundOperationSortByFieldEnum """ + """ sortByCustomField: SalesforceBackgroundOperationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceBackgroundOperationSortByFieldEnum """ + """ sortByField: SalesforceBackgroundOperationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of BackgroundOperations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceBackgroundOperationsConnection """ @@ -174360,15 +176403,15 @@ type SalesforceBackgroundOperation implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -174448,15 +176491,15 @@ type SalesforceCaseContactRole implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -174520,15 +176563,15 @@ type SalesforceCaseSolution implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -174780,15 +176823,15 @@ type SalesforceContactCleanInfo implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -174840,15 +176883,15 @@ type SalesforceContentDocumentSubscription implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -175151,15 +177194,15 @@ type SalesforceContentFolderLink implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -175521,15 +177564,15 @@ type SalesforceContentFolder implements OneGraphNode { """ contentFolders(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderConnectionFilter """ + """ filter: SalesforceContentFolderConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentFolderSortByFieldEnum """ + """ sortByCustomField: SalesforceContentFolderSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderSortByFieldEnum """ + """ sortByField: SalesforceContentFolderSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentFolders to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentFoldersConnection """ @@ -175537,15 +177580,15 @@ type SalesforceContentFolder implements OneGraphNode { """ contentFolderItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderItemConnectionFilter """ + """ filter: SalesforceContentFolderItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentFolderItemSortByFieldEnum """ + """ sortByCustomField: SalesforceContentFolderItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderItemSortByFieldEnum """ + """ sortByField: SalesforceContentFolderItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentFolderItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentFolderItemsConnection """ @@ -175553,15 +177596,15 @@ type SalesforceContentFolder implements OneGraphNode { """ contentFolderLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderLinkConnectionFilter """ + """ filter: SalesforceContentFolderLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentFolderLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentFolderLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderLinkSortByFieldEnum """ + """ sortByField: SalesforceContentFolderLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentFolderLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentFolderLinksConnection """ @@ -175569,15 +177612,15 @@ type SalesforceContentFolder implements OneGraphNode { """ contentFolderMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderMemberConnectionFilter """ + """ filter: SalesforceContentFolderMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentFolderMemberSortByFieldEnum """ + """ sortByCustomField: SalesforceContentFolderMemberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderMemberSortByFieldEnum """ + """ sortByField: SalesforceContentFolderMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentFolderMembers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentFolderMembersConnection """ @@ -175585,15 +177628,15 @@ type SalesforceContentFolder implements OneGraphNode { """ contentWorkspaces(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceConnectionFilter """ + """ filter: SalesforceContentWorkspaceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceSortByFieldEnum """ + """ sortByCustomField: SalesforceContentWorkspaceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceSortByFieldEnum """ + """ sortByField: SalesforceContentWorkspaceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentWorkspaces to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentWorkspacesConnection """ @@ -175601,15 +177644,15 @@ type SalesforceContentFolder implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -175685,15 +177728,15 @@ type SalesforceContentFolderMember implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -176200,15 +178243,15 @@ type SalesforceContentWorkspacePermission implements OneGraphNode { """ contentNotifications(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentNotificationConnectionFilter """ + """ filter: SalesforceContentNotificationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentNotificationSortByFieldEnum """ + """ sortByCustomField: SalesforceContentNotificationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentNotificationSortByFieldEnum """ + """ sortByField: SalesforceContentNotificationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentNotifications to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentNotificationsConnection """ @@ -176216,15 +178259,15 @@ type SalesforceContentWorkspacePermission implements OneGraphNode { """ contentWorkspaceMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceMemberConnectionFilter """ + """ filter: SalesforceContentWorkspaceMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum """ + """ sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum """ + """ sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentWorkspaceMembers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentWorkspaceMembersConnection customFields(""" @@ -176290,15 +178333,15 @@ type SalesforceContentNotification implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -176350,15 +178393,15 @@ type SalesforceContentVersionComment implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -176414,15 +178457,15 @@ type SalesforceContentVersionRating implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -176482,15 +178525,15 @@ type SalesforceContentWorkspaceDoc implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -177095,15 +179138,15 @@ type SalesforceDandBCompany implements OneGraphNode { """ accounts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountConnectionFilter """ + """ filter: SalesforceAccountConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountSortByFieldEnum """ + """ sortByCustomField: SalesforceAccountSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountSortByFieldEnum """ + """ sortByField: SalesforceAccountSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Accounts to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountsConnection """ @@ -177111,15 +179154,15 @@ type SalesforceDandBCompany implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -177127,15 +179170,15 @@ type SalesforceDandBCompany implements OneGraphNode { """ leads(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadConnectionFilter """ + """ filter: SalesforceLeadConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadSortByFieldEnum """ + """ sortByCustomField: SalesforceLeadSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadSortByFieldEnum """ + """ sortByField: SalesforceLeadSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Leads to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadsConnection customFields(""" @@ -177574,15 +179617,15 @@ type SalesforceDataAssessmentMetric implements OneGraphNode { """ dataAssessmentMetrics(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDataAssessmentFieldMetricConnectionFilter """ + """ filter: SalesforceDataAssessmentFieldMetricConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDataAssessmentFieldMetricSortByFieldEnum """ + """ sortByCustomField: SalesforceDataAssessmentFieldMetricSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDataAssessmentFieldMetricSortByFieldEnum """ + """ sortByField: SalesforceDataAssessmentFieldMetricSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DataAssessmentFieldMetrics to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDataAssessmentFieldMetricsConnection """ @@ -177590,15 +179633,15 @@ type SalesforceDataAssessmentMetric implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -177690,15 +179733,15 @@ type SalesforceDataAssessmentFieldMetric implements OneGraphNode { """ dataAssessmentValueMetrics(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDataAssessmentValueMetricConnectionFilter """ + """ filter: SalesforceDataAssessmentValueMetricConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDataAssessmentValueMetricSortByFieldEnum """ + """ sortByCustomField: SalesforceDataAssessmentValueMetricSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDataAssessmentValueMetricSortByFieldEnum """ + """ sortByField: SalesforceDataAssessmentValueMetricSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DataAssessmentValueMetrics to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDataAssessmentValueMetricsConnection """ @@ -177706,15 +179749,15 @@ type SalesforceDataAssessmentFieldMetric implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -177794,15 +179837,15 @@ type SalesforceDataAssessmentValueMetric implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -178099,15 +180142,15 @@ type SalesforceDatacloudOwnedEntity implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -178221,15 +180264,15 @@ type SalesforceDatacloudPurchaseUsage implements OneGraphNode { """ datacloudOwnedEntities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDatacloudOwnedEntityConnectionFilter """ + """ filter: SalesforceDatacloudOwnedEntityConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDatacloudOwnedEntitySortByFieldEnum """ + """ sortByCustomField: SalesforceDatacloudOwnedEntitySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDatacloudOwnedEntitySortByFieldEnum """ + """ sortByField: SalesforceDatacloudOwnedEntitySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DatacloudOwnedEntities to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDatacloudOwnedEntitysConnection """ @@ -178237,15 +180280,15 @@ type SalesforceDatacloudPurchaseUsage implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -178341,15 +180384,15 @@ type SalesforceFileSearchActivity implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -178649,15 +180692,15 @@ type SalesforceIdeaComment implements OneGraphNode { """ ideas(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdeaConnectionFilter """ + """ filter: SalesforceIdeaConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceIdeaSortByFieldEnum """ + """ sortByCustomField: SalesforceIdeaSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdeaSortByFieldEnum """ + """ sortByField: SalesforceIdeaSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Ideas to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceIdeasConnection """ @@ -178665,15 +180708,15 @@ type SalesforceIdeaComment implements OneGraphNode { """ votes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVoteConnectionFilter """ + """ filter: SalesforceVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVoteSortByFieldEnum """ + """ sortByField: SalesforceVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Votes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceVotesConnection customFields(""" @@ -179119,15 +181162,15 @@ type SalesforceCommunity implements OneGraphNode { """ ideas(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdeaConnectionFilter """ + """ filter: SalesforceIdeaConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceIdeaSortByFieldEnum """ + """ sortByCustomField: SalesforceIdeaSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdeaSortByFieldEnum """ + """ sortByField: SalesforceIdeaSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Ideas to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceIdeasConnection """ @@ -179135,15 +181178,15 @@ type SalesforceCommunity implements OneGraphNode { """ ideaComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdeaCommentConnectionFilter """ + """ filter: SalesforceIdeaCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceIdeaCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceIdeaCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdeaCommentSortByFieldEnum """ + """ sortByField: SalesforceIdeaCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of IdeaComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceIdeaCommentsConnection customFields(""" @@ -179295,15 +181338,15 @@ type SalesforceIdea implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -179311,15 +181354,15 @@ type SalesforceIdea implements OneGraphNode { """ ideas(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdeaConnectionFilter """ + """ filter: SalesforceIdeaConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceIdeaSortByFieldEnum """ + """ sortByCustomField: SalesforceIdeaSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdeaSortByFieldEnum """ + """ sortByField: SalesforceIdeaSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Ideas to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceIdeasConnection """ @@ -179327,15 +181370,15 @@ type SalesforceIdea implements OneGraphNode { """ comments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdeaCommentConnectionFilter """ + """ filter: SalesforceIdeaCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceIdeaCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceIdeaCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdeaCommentSortByFieldEnum """ + """ sortByField: SalesforceIdeaCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of IdeaComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceIdeaCommentsConnection """ @@ -179343,15 +181386,15 @@ type SalesforceIdea implements OneGraphNode { """ votes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVoteConnectionFilter """ + """ filter: SalesforceVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVoteSortByFieldEnum """ + """ sortByField: SalesforceVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Votes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceVotesConnection customFields(""" @@ -179699,15 +181742,15 @@ type SalesforceLeadCleanInfo implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -180185,15 +182228,15 @@ type SalesforceMacro implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -180201,15 +182244,15 @@ type SalesforceMacro implements OneGraphNode { """ histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroHistoryConnectionFilter """ + """ filter: SalesforceMacroHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMacroHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceMacroHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroHistorySortByFieldEnum """ + """ sortByField: SalesforceMacroHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of MacroHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceMacroHistorysConnection """ @@ -180217,15 +182260,15 @@ type SalesforceMacro implements OneGraphNode { """ macroInstructions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroInstructionConnectionFilter """ + """ filter: SalesforceMacroInstructionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMacroInstructionSortByFieldEnum """ + """ sortByCustomField: SalesforceMacroInstructionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroInstructionSortByFieldEnum """ + """ sortByField: SalesforceMacroInstructionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of MacroInstructions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceMacroInstructionsConnection customFields(""" @@ -180317,15 +182360,15 @@ type SalesforceMacroInstruction implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -180429,15 +182472,15 @@ type SalesforcePushTopic implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -180761,15 +182804,15 @@ type SalesforceQuickText implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -180777,15 +182820,15 @@ type SalesforceQuickText implements OneGraphNode { """ histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQuickTextHistoryConnectionFilter """ + """ filter: SalesforceQuickTextHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceQuickTextHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceQuickTextHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQuickTextHistorySortByFieldEnum """ + """ sortByField: SalesforceQuickTextHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of QuickTextHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceQuickTextHistorysConnection customFields(""" @@ -180889,15 +182932,15 @@ type SalesforceSearchActivity implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -180961,15 +183004,15 @@ type SalesforceSearchPromotionRule implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -181055,15 +183098,15 @@ type SalesforceTodayGoal implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -181135,15 +183178,15 @@ type SalesforceUserAppInfo implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -181227,15 +183270,15 @@ type SalesforceUserProvMockTarget implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -181450,15 +183493,15 @@ type SalesforceUserProvisioningLog implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -181879,15 +183922,15 @@ type SalesforceDuplicateRecordItem implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -181895,15 +183938,15 @@ type SalesforceDuplicateRecordItem implements OneGraphNode { """ processInstances(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ + """ filter: SalesforceProcessInstanceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstancesConnection customFields(""" @@ -182235,15 +184278,15 @@ type SalesforceDuplicateRule implements OneGraphNode { """ duplicateRecordSets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRecordSetConnectionFilter """ + """ filter: SalesforceDuplicateRecordSetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDuplicateRecordSetSortByFieldEnum """ + """ sortByCustomField: SalesforceDuplicateRecordSetSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRecordSetSortByFieldEnum """ + """ sortByField: SalesforceDuplicateRecordSetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DuplicateRecordSets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDuplicateRecordSetsConnection customFields(""" @@ -182327,15 +184370,15 @@ type SalesforceDuplicateRecordSet implements OneGraphNode { """ duplicateRecordItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRecordItemConnectionFilter """ + """ filter: SalesforceDuplicateRecordItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum """ + """ sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum """ + """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DuplicateRecordItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDuplicateRecordItemsConnection """ @@ -182343,15 +184386,15 @@ type SalesforceDuplicateRecordSet implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -182359,15 +184402,15 @@ type SalesforceDuplicateRecordSet implements OneGraphNode { """ processInstances(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ + """ filter: SalesforceProcessInstanceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstancesConnection customFields(""" @@ -183314,15 +185357,15 @@ type SalesforceContractContactRole implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -183889,15 +185932,15 @@ type SalesforcePartner implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -183905,15 +185948,15 @@ type SalesforcePartner implements OneGraphNode { """ partners(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePartnerConnectionFilter """ + """ filter: SalesforcePartnerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePartnerSortByFieldEnum """ + """ sortByCustomField: SalesforcePartnerSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePartnerSortByFieldEnum """ + """ sortByField: SalesforcePartnerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Partners to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePartnersConnection customFields(""" @@ -184315,15 +186358,15 @@ type SalesforceOpportunityPartner implements OneGraphNode { """ opportunityPartners(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityPartnerConnectionFilter """ + """ filter: SalesforceOpportunityPartnerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityPartnerSortByFieldEnum """ + """ sortByField: SalesforceOpportunityPartnerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityPartners to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityPartnersConnection customFields(""" @@ -185030,15 +187073,15 @@ type SalesforceOpportunityContactRole implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -185575,15 +187618,15 @@ type SalesforceAccountPartner implements OneGraphNode { """ accountPartners(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountPartnerConnectionFilter """ + """ filter: SalesforceAccountPartnerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountPartnerSortByFieldEnum """ + """ sortByCustomField: SalesforceAccountPartnerSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountPartnerSortByFieldEnum """ + """ sortByField: SalesforceAccountPartnerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AccountPartners to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountPartnersConnection customFields(""" @@ -186705,15 +188748,15 @@ type SalesforceCampaignMember implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -187539,15 +189582,15 @@ type SalesforceFeedRevision implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -187943,15 +189986,15 @@ type SalesforceAccountFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -187959,15 +190002,15 @@ type SalesforceAccountFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -187975,15 +190018,15 @@ type SalesforceAccountFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -187991,15 +190034,15 @@ type SalesforceAccountFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -188103,15 +190146,15 @@ type SalesforceCaseFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -188119,15 +190162,15 @@ type SalesforceCaseFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -188135,15 +190178,15 @@ type SalesforceCaseFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -188151,15 +190194,15 @@ type SalesforceCaseFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -188263,15 +190306,15 @@ type SalesforceContactFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -188279,15 +190322,15 @@ type SalesforceContactFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -188295,15 +190338,15 @@ type SalesforceContactFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -188311,15 +190354,15 @@ type SalesforceContactFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -188423,15 +190466,15 @@ type SalesforceContentDocumentFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -188439,15 +190482,15 @@ type SalesforceContentDocumentFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -188455,15 +190498,15 @@ type SalesforceContentDocumentFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -188471,15 +190514,15 @@ type SalesforceContentDocumentFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -188583,15 +190626,15 @@ type SalesforceContractFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -188599,15 +190642,15 @@ type SalesforceContractFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -188615,15 +190658,15 @@ type SalesforceContractFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -188631,15 +190674,15 @@ type SalesforceContractFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -188743,15 +190786,15 @@ type SalesforceDashboardComponentFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -188759,15 +190802,15 @@ type SalesforceDashboardComponentFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -188775,15 +190818,15 @@ type SalesforceDashboardComponentFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -188791,15 +190834,15 @@ type SalesforceDashboardComponentFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -188903,15 +190946,15 @@ type SalesforceDashboardFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -188919,15 +190962,15 @@ type SalesforceDashboardFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -188935,15 +190978,15 @@ type SalesforceDashboardFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -188951,15 +190994,15 @@ type SalesforceDashboardFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -189373,15 +191416,15 @@ type SalesforceEventRelation implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -190341,15 +192384,15 @@ type SalesforceAssetRelationshipFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -190357,15 +192400,15 @@ type SalesforceAssetRelationshipFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -190373,15 +192416,15 @@ type SalesforceAssetRelationshipFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -190389,15 +192432,15 @@ type SalesforceAssetRelationshipFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -190642,15 +192685,15 @@ type SalesforceTopicAssignment implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -190946,15 +192989,15 @@ type SalesforceNote implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -191435,15 +193478,15 @@ type SalesforceEmailMessageRelation implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -192002,15 +194045,15 @@ type SalesforceContentDistributionView implements OneGraphNode { """ contentDistributionViews(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionViewConnectionFilter """ + """ filter: SalesforceContentDistributionViewConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionViewSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDistributionViewSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionViewSortByFieldEnum """ + """ sortByField: SalesforceContentDistributionViewSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDistributionViews to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDistributionViewsConnection customFields(""" @@ -192120,15 +194163,15 @@ type SalesforceOutgoingEmail { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -192136,15 +194179,15 @@ type SalesforceOutgoingEmail { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection customFields(""" @@ -192358,15 +194401,15 @@ type SalesforceCollaborationInvitation implements OneGraphNode { """ collaborationInvitations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationInvitationConnectionFilter """ + """ filter: SalesforceCollaborationInvitationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationInvitationSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationInvitationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationInvitationSortByFieldEnum """ + """ sortByField: SalesforceCollaborationInvitationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationInvitations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationInvitationsConnection """ @@ -192374,15 +194417,15 @@ type SalesforceCollaborationInvitation implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -192577,15 +194620,15 @@ type SalesforceCollaborationGroupRecord implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -192791,15 +194834,15 @@ type SalesforceCollaborationGroupMemberRequest implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -193014,15 +195057,15 @@ type SalesforceCollaborationGroupMember implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -193262,15 +195305,15 @@ type SalesforceCollaborationGroupFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -193278,15 +195321,15 @@ type SalesforceCollaborationGroupFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -193294,15 +195337,15 @@ type SalesforceCollaborationGroupFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -193310,15 +195353,15 @@ type SalesforceCollaborationGroupFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -193766,15 +195809,15 @@ type SalesforceAnnouncement implements OneGraphNode { """ collaborationGroups(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupConnectionFilter """ + """ filter: SalesforceCollaborationGroupConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationGroupSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationGroups to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupsConnection """ @@ -193782,15 +195825,15 @@ type SalesforceAnnouncement implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -193938,15 +195981,15 @@ type SalesforceCollaborationGroup implements OneGraphNode { """ announcements(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAnnouncementConnectionFilter """ + """ filter: SalesforceAnnouncementConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAnnouncementSortByFieldEnum """ + """ sortByCustomField: SalesforceAnnouncementSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAnnouncementSortByFieldEnum """ + """ sortByField: SalesforceAnnouncementSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Announcements to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAnnouncementsConnection """ @@ -193954,15 +195997,15 @@ type SalesforceCollaborationGroup implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupFeedConnectionFilter """ + """ filter: SalesforceCollaborationGroupFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationGroupFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationGroupFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupFeedsConnection """ @@ -193970,15 +196013,15 @@ type SalesforceCollaborationGroup implements OneGraphNode { """ groupMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupMemberConnectionFilter """ + """ filter: SalesforceCollaborationGroupMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupMemberSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationGroupMemberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationGroupMembers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupMembersConnection """ @@ -193986,15 +196029,15 @@ type SalesforceCollaborationGroup implements OneGraphNode { """ groupMemberRequests(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupMemberRequestConnectionFilter """ + """ filter: SalesforceCollaborationGroupMemberRequestConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationGroupMemberRequests to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupMemberRequestsConnection """ @@ -194002,15 +196045,15 @@ type SalesforceCollaborationGroup implements OneGraphNode { """ collaborationGroupRecords(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupRecordConnectionFilter """ + """ filter: SalesforceCollaborationGroupRecordConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupRecordsConnection """ @@ -194018,15 +196061,15 @@ type SalesforceCollaborationGroup implements OneGraphNode { """ collaborationInvitations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationInvitationConnectionFilter """ + """ filter: SalesforceCollaborationInvitationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationInvitationSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationInvitationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationInvitationSortByFieldEnum """ + """ sortByField: SalesforceCollaborationInvitationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationInvitations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationInvitationsConnection """ @@ -194034,15 +196077,15 @@ type SalesforceCollaborationGroup implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -194050,15 +196093,15 @@ type SalesforceCollaborationGroup implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -194066,15 +196109,15 @@ type SalesforceCollaborationGroup implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -194082,15 +196125,15 @@ type SalesforceCollaborationGroup implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -194098,15 +196141,15 @@ type SalesforceCollaborationGroup implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -194114,15 +196157,15 @@ type SalesforceCollaborationGroup implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -194737,15 +196780,15 @@ type SalesforceBrandTemplate implements OneGraphNode { """ emailTemplates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailTemplateConnectionFilter """ + """ filter: SalesforceEmailTemplateConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailTemplateSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailTemplateSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailTemplateSortByFieldEnum """ + """ sortByField: SalesforceEmailTemplateSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailTemplates to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailTemplatesConnection customFields(""" @@ -194895,15 +196938,15 @@ type SalesforceEmailTemplate implements OneGraphNode { """ attachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ + """ filter: SalesforceAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Attachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAttachmentsConnection """ @@ -194911,15 +196954,15 @@ type SalesforceEmailTemplate implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -194927,15 +196970,15 @@ type SalesforceEmailTemplate implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -194943,15 +196986,15 @@ type SalesforceEmailTemplate implements OneGraphNode { """ documentAttachmentMaps(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDocumentAttachmentMapConnectionFilter """ + """ filter: SalesforceDocumentAttachmentMapConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDocumentAttachmentMapSortByFieldEnum """ + """ sortByCustomField: SalesforceDocumentAttachmentMapSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum """ + """ sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DocumentAttachmentMaps to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDocumentAttachmentMapsConnection customFields(""" @@ -195368,15 +197411,15 @@ type SalesforceUserListView implements OneGraphNode { """ userListViewCriterions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserListViewCriterionConnectionFilter """ + """ filter: SalesforceUserListViewCriterionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserListViewCriterionSortByFieldEnum """ + """ sortByCustomField: SalesforceUserListViewCriterionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserListViewCriterionSortByFieldEnum """ + """ sortByField: SalesforceUserListViewCriterionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserListViewCriterions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserListViewCriterionsConnection customFields(""" @@ -195753,15 +197796,15 @@ type SalesforceListView implements OneGraphNode { """ listEmailRecipientSources(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListEmailRecipientSourceConnectionFilter """ + """ filter: SalesforceListEmailRecipientSourceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceListEmailRecipientSourceSortByFieldEnum """ + """ sortByCustomField: SalesforceListEmailRecipientSourceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum """ + """ sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ListEmailRecipientSources to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceListEmailRecipientSourcesConnection """ @@ -195769,15 +197812,15 @@ type SalesforceListView implements OneGraphNode { """ userListViews(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserListViewConnectionFilter """ + """ filter: SalesforceUserListViewConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserListViewSortByFieldEnum """ + """ sortByCustomField: SalesforceUserListViewSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserListViewSortByFieldEnum """ + """ sortByField: SalesforceUserListViewSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserListViews to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserListViewsConnection customFields(""" @@ -195861,15 +197904,15 @@ type SalesforceListEmailRecipientSource implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -196169,15 +198212,15 @@ type SalesforceListEmail implements OneGraphNode { """ contentDistributions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ + """ filter: SalesforceContentDistributionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDistributionsConnection """ @@ -196185,15 +198228,15 @@ type SalesforceListEmail implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -196201,15 +198244,15 @@ type SalesforceListEmail implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -196217,15 +198260,15 @@ type SalesforceListEmail implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -196233,15 +198276,15 @@ type SalesforceListEmail implements OneGraphNode { """ listEmailRecipientSources(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListEmailRecipientSourceConnectionFilter """ + """ filter: SalesforceListEmailRecipientSourceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceListEmailRecipientSourceSortByFieldEnum """ + """ sortByCustomField: SalesforceListEmailRecipientSourceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum """ + """ sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ListEmailRecipientSources to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceListEmailRecipientSourcesConnection customFields(""" @@ -196403,15 +198446,15 @@ type SalesforceContentDistribution implements OneGraphNode { """ contentDistributionViews(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionViewConnectionFilter """ + """ filter: SalesforceContentDistributionViewConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionViewSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDistributionViewSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionViewSortByFieldEnum """ + """ sortByField: SalesforceContentDistributionViewSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDistributionViews to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDistributionViewsConnection """ @@ -196419,15 +198462,15 @@ type SalesforceContentDistribution implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -196615,15 +198658,15 @@ type SalesforceEmailMessage implements OneGraphNode { """ attachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ + """ filter: SalesforceAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Attachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAttachmentsConnection """ @@ -196631,15 +198674,15 @@ type SalesforceEmailMessage implements OneGraphNode { """ contentDistributions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ + """ filter: SalesforceContentDistributionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDistributionsConnection """ @@ -196647,15 +198690,15 @@ type SalesforceEmailMessage implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -196663,15 +198706,15 @@ type SalesforceEmailMessage implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -196679,15 +198722,15 @@ type SalesforceEmailMessage implements OneGraphNode { """ emailMessages(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ + """ filter: SalesforceEmailMessageConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailMessagesConnection """ @@ -196695,15 +198738,15 @@ type SalesforceEmailMessage implements OneGraphNode { """ emailMessageRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageRelationConnectionFilter """ + """ filter: SalesforceEmailMessageRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageRelationSortByFieldEnum """ + """ sortByField: SalesforceEmailMessageRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailMessageRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailMessageRelationsConnection """ @@ -196711,15 +198754,15 @@ type SalesforceEmailMessage implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -196727,15 +198770,15 @@ type SalesforceEmailMessage implements OneGraphNode { """ processInstances(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ + """ filter: SalesforceProcessInstanceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstancesConnection customFields(""" @@ -197696,15 +199739,15 @@ type SalesforceAssetFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -197712,15 +199755,15 @@ type SalesforceAssetFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -197728,15 +199771,15 @@ type SalesforceAssetFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -197744,15 +199787,15 @@ type SalesforceAssetFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -198212,15 +200255,15 @@ type SalesforceAsset implements OneGraphNode { """ childAssets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetConnectionFilter """ + """ filter: SalesforceAssetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetSortByFieldEnum """ + """ sortByCustomField: SalesforceAssetSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetSortByFieldEnum """ + """ sortByField: SalesforceAssetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Assets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetsConnection """ @@ -198228,15 +200271,15 @@ type SalesforceAsset implements OneGraphNode { """ assets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetConnectionFilter """ + """ filter: SalesforceAssetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetSortByFieldEnum """ + """ sortByCustomField: SalesforceAssetSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetSortByFieldEnum """ + """ sortByField: SalesforceAssetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Assets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetsConnection """ @@ -198244,15 +200287,15 @@ type SalesforceAsset implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetFeedConnectionFilter """ + """ filter: SalesforceAssetFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceAssetFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetFeedSortByFieldEnum """ + """ sortByField: SalesforceAssetFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AssetFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetFeedsConnection """ @@ -198260,15 +200303,15 @@ type SalesforceAsset implements OneGraphNode { """ histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetHistoryConnectionFilter """ + """ filter: SalesforceAssetHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceAssetHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetHistorySortByFieldEnum """ + """ sortByField: SalesforceAssetHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AssetHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetHistorysConnection """ @@ -198276,15 +200319,15 @@ type SalesforceAsset implements OneGraphNode { """ primaryAssets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipConnectionFilter """ + """ filter: SalesforceAssetRelationshipConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetRelationshipSortByFieldEnum """ + """ sortByCustomField: SalesforceAssetRelationshipSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipSortByFieldEnum """ + """ sortByField: SalesforceAssetRelationshipSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AssetRelationships to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetRelationshipsConnection """ @@ -198292,15 +200335,15 @@ type SalesforceAsset implements OneGraphNode { """ relatedAssets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipConnectionFilter """ + """ filter: SalesforceAssetRelationshipConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetRelationshipSortByFieldEnum """ + """ sortByCustomField: SalesforceAssetRelationshipSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipSortByFieldEnum """ + """ sortByField: SalesforceAssetRelationshipSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AssetRelationships to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetRelationshipsConnection """ @@ -198308,15 +200351,15 @@ type SalesforceAsset implements OneGraphNode { """ shares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetShareConnectionFilter """ + """ filter: SalesforceAssetShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetShareSortByFieldEnum """ + """ sortByCustomField: SalesforceAssetShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetShareSortByFieldEnum """ + """ sortByField: SalesforceAssetShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AssetShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetSharesConnection """ @@ -198324,15 +200367,15 @@ type SalesforceAsset implements OneGraphNode { """ attachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ + """ filter: SalesforceAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Attachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAttachmentsConnection """ @@ -198340,15 +200383,15 @@ type SalesforceAsset implements OneGraphNode { """ cases(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseConnectionFilter """ + """ filter: SalesforceCaseConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseSortByFieldEnum """ + """ sortByField: SalesforceCaseSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Cases to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCasesConnection """ @@ -198356,15 +200399,15 @@ type SalesforceAsset implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -198372,15 +200415,15 @@ type SalesforceAsset implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -198388,15 +200431,15 @@ type SalesforceAsset implements OneGraphNode { """ emails(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ + """ filter: SalesforceEmailMessageConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailMessagesConnection """ @@ -198404,15 +200447,15 @@ type SalesforceAsset implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -198420,15 +200463,15 @@ type SalesforceAsset implements OneGraphNode { """ events(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ + """ filter: SalesforceEventConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ + """ sortByField: SalesforceEventSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Events to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventsConnection """ @@ -198436,15 +200479,15 @@ type SalesforceAsset implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -198452,15 +200495,15 @@ type SalesforceAsset implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -198468,15 +200511,15 @@ type SalesforceAsset implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -198484,15 +200527,15 @@ type SalesforceAsset implements OneGraphNode { """ notes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNoteConnectionFilter """ + """ filter: SalesforceNoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNoteSortByFieldEnum """ + """ sortByCustomField: SalesforceNoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNoteSortByFieldEnum """ + """ sortByField: SalesforceNoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Notes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceNotesConnection """ @@ -198500,15 +200543,15 @@ type SalesforceAsset implements OneGraphNode { """ processInstances(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ + """ filter: SalesforceProcessInstanceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstancesConnection """ @@ -198516,15 +200559,15 @@ type SalesforceAsset implements OneGraphNode { """ tasks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ + """ filter: SalesforceTaskConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ + """ sortByField: SalesforceTaskSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Tasks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTasksConnection """ @@ -198532,15 +200575,15 @@ type SalesforceAsset implements OneGraphNode { """ topicAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ + """ filter: SalesforceTopicAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicAssignmentsConnection customFields(""" @@ -198640,15 +200683,15 @@ type SalesforceAssetRelationship implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipFeedConnectionFilter """ + """ filter: SalesforceAssetRelationshipFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetRelationshipFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceAssetRelationshipFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum """ + """ sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AssetRelationshipFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetRelationshipFeedsConnection """ @@ -198656,15 +200699,15 @@ type SalesforceAssetRelationship implements OneGraphNode { """ histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipHistoryConnectionFilter """ + """ filter: SalesforceAssetRelationshipHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetRelationshipHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceAssetRelationshipHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipHistorySortByFieldEnum """ + """ sortByField: SalesforceAssetRelationshipHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AssetRelationshipHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetRelationshipHistorysConnection """ @@ -198672,15 +200715,15 @@ type SalesforceAssetRelationship implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -198688,15 +200731,15 @@ type SalesforceAssetRelationship implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -198704,15 +200747,15 @@ type SalesforceAssetRelationship implements OneGraphNode { """ emails(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ + """ filter: SalesforceEmailMessageConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailMessagesConnection """ @@ -198720,15 +200763,15 @@ type SalesforceAssetRelationship implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -198736,15 +200779,15 @@ type SalesforceAssetRelationship implements OneGraphNode { """ events(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ + """ filter: SalesforceEventConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ + """ sortByField: SalesforceEventSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Events to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventsConnection """ @@ -198752,15 +200795,15 @@ type SalesforceAssetRelationship implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -198768,15 +200811,15 @@ type SalesforceAssetRelationship implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -198784,15 +200827,15 @@ type SalesforceAssetRelationship implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -198800,15 +200843,15 @@ type SalesforceAssetRelationship implements OneGraphNode { """ processInstances(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ + """ filter: SalesforceProcessInstanceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstancesConnection """ @@ -198816,15 +200859,15 @@ type SalesforceAssetRelationship implements OneGraphNode { """ tasks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ + """ filter: SalesforceTaskConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ + """ sortByField: SalesforceTaskSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Tasks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTasksConnection customFields(""" @@ -199040,15 +201083,15 @@ type SalesforceEvent implements OneGraphNode { """ acceptedEventRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAcceptedEventRelationConnectionFilter """ + """ filter: SalesforceAcceptedEventRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAcceptedEventRelationSortByFieldEnum """ + """ sortByField: SalesforceAcceptedEventRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AcceptedEventRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAcceptedEventRelationsConnection """ @@ -199056,15 +201099,15 @@ type SalesforceEvent implements OneGraphNode { """ attachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ + """ filter: SalesforceAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Attachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAttachmentsConnection """ @@ -199072,15 +201115,15 @@ type SalesforceEvent implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -199088,15 +201131,15 @@ type SalesforceEvent implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -199104,15 +201147,15 @@ type SalesforceEvent implements OneGraphNode { """ declinedEventRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDeclinedEventRelationConnectionFilter """ + """ filter: SalesforceDeclinedEventRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDeclinedEventRelationSortByFieldEnum """ + """ sortByField: SalesforceDeclinedEventRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DeclinedEventRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDeclinedEventRelationsConnection """ @@ -199120,15 +201163,15 @@ type SalesforceEvent implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -199136,15 +201179,15 @@ type SalesforceEvent implements OneGraphNode { """ recurringEvents(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ + """ filter: SalesforceEventConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ + """ sortByField: SalesforceEventSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Events to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventsConnection """ @@ -199152,15 +201195,15 @@ type SalesforceEvent implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventFeedConnectionFilter """ + """ filter: SalesforceEventFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceEventFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventFeedSortByFieldEnum """ + """ sortByField: SalesforceEventFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EventFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventFeedsConnection """ @@ -199168,15 +201211,15 @@ type SalesforceEvent implements OneGraphNode { """ eventRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventRelationConnectionFilter """ + """ filter: SalesforceEventRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceEventRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventRelationSortByFieldEnum """ + """ sortByField: SalesforceEventRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EventRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventRelationsConnection """ @@ -199184,15 +201227,15 @@ type SalesforceEvent implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -199200,15 +201243,15 @@ type SalesforceEvent implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -199216,15 +201259,15 @@ type SalesforceEvent implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -199232,15 +201275,15 @@ type SalesforceEvent implements OneGraphNode { """ topicAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ + """ filter: SalesforceTopicAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicAssignmentsConnection """ @@ -199248,15 +201291,15 @@ type SalesforceEvent implements OneGraphNode { """ undecidedEventRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUndecidedEventRelationConnectionFilter """ + """ filter: SalesforceUndecidedEventRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUndecidedEventRelationSortByFieldEnum """ + """ sortByField: SalesforceUndecidedEventRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UndecidedEventRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUndecidedEventRelationsConnection customFields(""" @@ -199360,15 +201403,15 @@ type SalesforceEventFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -199376,15 +201419,15 @@ type SalesforceEventFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -199392,15 +201435,15 @@ type SalesforceEventFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -199408,15 +201451,15 @@ type SalesforceEventFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -199520,15 +201563,15 @@ type SalesforceLeadFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -199536,15 +201579,15 @@ type SalesforceLeadFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -199552,15 +201595,15 @@ type SalesforceLeadFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -199568,15 +201611,15 @@ type SalesforceLeadFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -199680,15 +201723,15 @@ type SalesforceOpportunityFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -199696,15 +201739,15 @@ type SalesforceOpportunityFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -199712,15 +201755,15 @@ type SalesforceOpportunityFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -199728,15 +201771,15 @@ type SalesforceOpportunityFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -199842,15 +201885,15 @@ type SalesforceOrderFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -199858,15 +201901,15 @@ type SalesforceOrderFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -199874,15 +201917,15 @@ type SalesforceOrderFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -199890,15 +201933,15 @@ type SalesforceOrderFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -200004,15 +202047,15 @@ type SalesforceProduct2Feed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -200020,15 +202063,15 @@ type SalesforceProduct2Feed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -200036,15 +202079,15 @@ type SalesforceProduct2Feed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -200052,15 +202095,15 @@ type SalesforceProduct2Feed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -200166,15 +202209,15 @@ type SalesforceReportFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -200182,15 +202225,15 @@ type SalesforceReportFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -200198,15 +202241,15 @@ type SalesforceReportFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -200214,15 +202257,15 @@ type SalesforceReportFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -200328,15 +202371,15 @@ type SalesforceOrderItemFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -200344,15 +202387,15 @@ type SalesforceOrderItemFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -200360,15 +202403,15 @@ type SalesforceOrderItemFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -200376,15 +202419,15 @@ type SalesforceOrderItemFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -201648,15 +203691,15 @@ type SalesforceOpportunityLineItem implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -201774,15 +203817,15 @@ type SalesforcePricebookEntry implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -201790,15 +203833,15 @@ type SalesforcePricebookEntry implements OneGraphNode { """ opportunityLineItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityLineItemConnectionFilter """ + """ filter: SalesforceOpportunityLineItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityLineItemSortByFieldEnum """ + """ sortByField: SalesforceOpportunityLineItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityLineItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityLineItemsConnection """ @@ -201806,15 +203849,15 @@ type SalesforcePricebookEntry implements OneGraphNode { """ orderItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemConnectionFilter """ + """ filter: SalesforceOrderItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderItemSortByFieldEnum """ + """ sortByCustomField: SalesforceOrderItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemSortByFieldEnum """ + """ sortByField: SalesforceOrderItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrderItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderItemsConnection customFields(""" @@ -201942,15 +203985,15 @@ type SalesforceOrderItem implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -201958,15 +204001,15 @@ type SalesforceOrderItem implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -201974,15 +204017,15 @@ type SalesforceOrderItem implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -201990,15 +204033,15 @@ type SalesforceOrderItem implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -202006,15 +204049,15 @@ type SalesforceOrderItem implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -202022,15 +204065,15 @@ type SalesforceOrderItem implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -202038,15 +204081,15 @@ type SalesforceOrderItem implements OneGraphNode { """ childOrderItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemConnectionFilter """ + """ filter: SalesforceOrderItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderItemSortByFieldEnum """ + """ sortByCustomField: SalesforceOrderItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemSortByFieldEnum """ + """ sortByField: SalesforceOrderItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrderItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderItemsConnection """ @@ -202054,15 +204097,15 @@ type SalesforceOrderItem implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemFeedConnectionFilter """ + """ filter: SalesforceOrderItemFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderItemFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceOrderItemFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemFeedSortByFieldEnum """ + """ sortByField: SalesforceOrderItemFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrderItemFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderItemFeedsConnection """ @@ -202070,15 +204113,15 @@ type SalesforceOrderItem implements OneGraphNode { """ histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemHistoryConnectionFilter """ + """ filter: SalesforceOrderItemHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderItemHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceOrderItemHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemHistorySortByFieldEnum """ + """ sortByField: SalesforceOrderItemHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrderItemHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderItemHistorysConnection customFields(""" @@ -202232,15 +204275,15 @@ type SalesforceFeedItem implements OneGraphNode { """ announcements(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAnnouncementConnectionFilter """ + """ filter: SalesforceAnnouncementConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAnnouncementSortByFieldEnum """ + """ sortByCustomField: SalesforceAnnouncementSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAnnouncementSortByFieldEnum """ + """ sortByField: SalesforceAnnouncementSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Announcements to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAnnouncementsConnection """ @@ -202248,15 +204291,15 @@ type SalesforceFeedItem implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -202264,15 +204307,15 @@ type SalesforceFeedItem implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -202280,15 +204323,15 @@ type SalesforceFeedItem implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -202296,15 +204339,15 @@ type SalesforceFeedItem implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection """ @@ -202312,15 +204355,15 @@ type SalesforceFeedItem implements OneGraphNode { """ feedRevisions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedRevisionConnectionFilter """ + """ filter: SalesforceFeedRevisionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedRevisionSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedRevisionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedRevisionSortByFieldEnum """ + """ sortByField: SalesforceFeedRevisionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedRevisions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedRevisionsConnection """ @@ -202328,15 +204371,15 @@ type SalesforceFeedItem implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -202344,15 +204387,15 @@ type SalesforceFeedItem implements OneGraphNode { """ topicAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ + """ filter: SalesforceTopicAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicAssignmentsConnection customFields(""" @@ -202839,15 +204882,15 @@ type SalesforceDomain implements OneGraphNode { """ domainSites(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDomainSiteConnectionFilter """ + """ filter: SalesforceDomainSiteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDomainSiteSortByFieldEnum """ + """ sortByCustomField: SalesforceDomainSiteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDomainSiteSortByFieldEnum """ + """ sortByField: SalesforceDomainSiteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DomainSites to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDomainSitesConnection customFields(""" @@ -203117,15 +205160,15 @@ type SalesforceSite implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -203133,15 +205176,15 @@ type SalesforceSite implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -203149,15 +205192,15 @@ type SalesforceSite implements OneGraphNode { """ siteDomainPaths(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDomainSiteConnectionFilter """ + """ filter: SalesforceDomainSiteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDomainSiteSortByFieldEnum """ + """ sortByCustomField: SalesforceDomainSiteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDomainSiteSortByFieldEnum """ + """ sortByField: SalesforceDomainSiteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DomainSites to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDomainSitesConnection """ @@ -203165,15 +205208,15 @@ type SalesforceSite implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -203181,15 +205224,15 @@ type SalesforceSite implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -203197,15 +205240,15 @@ type SalesforceSite implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -203213,15 +205256,15 @@ type SalesforceSite implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSiteFeedConnectionFilter """ + """ filter: SalesforceSiteFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSiteFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceSiteFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSiteFeedSortByFieldEnum """ + """ sortByField: SalesforceSiteFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SiteFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSiteFeedsConnection """ @@ -203229,15 +205272,15 @@ type SalesforceSite implements OneGraphNode { """ histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSiteHistoryConnectionFilter """ + """ filter: SalesforceSiteHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSiteHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceSiteHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSiteHistorySortByFieldEnum """ + """ sortByField: SalesforceSiteHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SiteHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSiteHistorysConnection customFields(""" @@ -203341,15 +205384,15 @@ type SalesforceSiteFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -203357,15 +205400,15 @@ type SalesforceSiteFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -203373,15 +205416,15 @@ type SalesforceSiteFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -203389,15 +205432,15 @@ type SalesforceSiteFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -203569,15 +205612,15 @@ type SalesforceSolutionFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -203585,15 +205628,15 @@ type SalesforceSolutionFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -203601,15 +205644,15 @@ type SalesforceSolutionFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -203617,15 +205660,15 @@ type SalesforceSolutionFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -203691,15 +205734,15 @@ type SalesforceFeedPollVote implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -203879,15 +205922,15 @@ type SalesforceTaskFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -203895,15 +205938,15 @@ type SalesforceTaskFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -203911,15 +205954,15 @@ type SalesforceTaskFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -203927,15 +205970,15 @@ type SalesforceTaskFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -203997,15 +206040,15 @@ type SalesforceFeedPollChoice implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection """ @@ -204013,15 +206056,15 @@ type SalesforceFeedPollChoice implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -204264,15 +206307,15 @@ type SalesforceTopicFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -204280,15 +206323,15 @@ type SalesforceTopicFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -204296,15 +206339,15 @@ type SalesforceTopicFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -204312,15 +206355,15 @@ type SalesforceTopicFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -204442,15 +206485,15 @@ type SalesforceFeedComment implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -204458,15 +206501,15 @@ type SalesforceFeedComment implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -204474,15 +206517,15 @@ type SalesforceFeedComment implements OneGraphNode { """ feedRevisions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedRevisionConnectionFilter """ + """ filter: SalesforceFeedRevisionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedRevisionSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedRevisionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedRevisionSortByFieldEnum """ + """ sortByField: SalesforceFeedRevisionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedRevisions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedRevisionsConnection """ @@ -204490,15 +206533,15 @@ type SalesforceFeedComment implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -204683,15 +206726,15 @@ type SalesforceUserFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -204699,15 +206742,15 @@ type SalesforceUserFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -204715,15 +206758,15 @@ type SalesforceUserFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -204731,15 +206774,15 @@ type SalesforceUserFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -204801,15 +206844,15 @@ type SalesforceFeedAttachment implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -204935,15 +206978,15 @@ type SalesforceCampaignFeed implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -204951,15 +206994,15 @@ type SalesforceCampaignFeed implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -204967,15 +207010,15 @@ type SalesforceCampaignFeed implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -204983,15 +207026,15 @@ type SalesforceCampaignFeed implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection customFields(""" @@ -205535,15 +207578,15 @@ type SalesforceCampaign implements OneGraphNode { """ attachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ + """ filter: SalesforceAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Attachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAttachmentsConnection """ @@ -205551,15 +207594,15 @@ type SalesforceCampaign implements OneGraphNode { """ childCampaigns(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignConnectionFilter """ + """ filter: SalesforceCampaignConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignSortByFieldEnum """ + """ sortByCustomField: SalesforceCampaignSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignSortByFieldEnum """ + """ sortByField: SalesforceCampaignSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Campaigns to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignsConnection """ @@ -205567,15 +207610,15 @@ type SalesforceCampaign implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignFeedConnectionFilter """ + """ filter: SalesforceCampaignFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceCampaignFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignFeedSortByFieldEnum """ + """ sortByField: SalesforceCampaignFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CampaignFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignFeedsConnection """ @@ -205583,15 +207626,15 @@ type SalesforceCampaign implements OneGraphNode { """ histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignHistoryConnectionFilter """ + """ filter: SalesforceCampaignHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceCampaignHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignHistorySortByFieldEnum """ + """ sortByField: SalesforceCampaignHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CampaignHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignHistorysConnection """ @@ -205599,15 +207642,15 @@ type SalesforceCampaign implements OneGraphNode { """ campaignMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignMemberConnectionFilter """ + """ filter: SalesforceCampaignMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignMemberSortByFieldEnum """ + """ sortByCustomField: SalesforceCampaignMemberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignMemberSortByFieldEnum """ + """ sortByField: SalesforceCampaignMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CampaignMembers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignMembersConnection """ @@ -205615,15 +207658,15 @@ type SalesforceCampaign implements OneGraphNode { """ campaignMemberStatuses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignMemberStatusConnectionFilter """ + """ filter: SalesforceCampaignMemberStatusConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignMemberStatusSortByFieldEnum """ + """ sortByCustomField: SalesforceCampaignMemberStatusSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignMemberStatusSortByFieldEnum """ + """ sortByField: SalesforceCampaignMemberStatusSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CampaignMemberStatuses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignMemberStatussConnection """ @@ -205631,15 +207674,15 @@ type SalesforceCampaign implements OneGraphNode { """ shares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignShareConnectionFilter """ + """ filter: SalesforceCampaignShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignShareSortByFieldEnum """ + """ sortByCustomField: SalesforceCampaignShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignShareSortByFieldEnum """ + """ sortByField: SalesforceCampaignShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CampaignShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignSharesConnection """ @@ -205647,15 +207690,15 @@ type SalesforceCampaign implements OneGraphNode { """ recordAssociatedGroups(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupRecordConnectionFilter """ + """ filter: SalesforceCollaborationGroupRecordConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupRecordsConnection """ @@ -205663,15 +207706,15 @@ type SalesforceCampaign implements OneGraphNode { """ contentDistributions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ + """ filter: SalesforceContentDistributionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDistributionsConnection """ @@ -205679,15 +207722,15 @@ type SalesforceCampaign implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -205695,15 +207738,15 @@ type SalesforceCampaign implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -205711,15 +207754,15 @@ type SalesforceCampaign implements OneGraphNode { """ emails(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ + """ filter: SalesforceEmailMessageConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailMessagesConnection """ @@ -205727,15 +207770,15 @@ type SalesforceCampaign implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -205743,15 +207786,15 @@ type SalesforceCampaign implements OneGraphNode { """ events(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ + """ filter: SalesforceEventConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ + """ sortByField: SalesforceEventSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Events to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventsConnection """ @@ -205759,15 +207802,15 @@ type SalesforceCampaign implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -205775,15 +207818,15 @@ type SalesforceCampaign implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -205791,15 +207834,15 @@ type SalesforceCampaign implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -205807,15 +207850,15 @@ type SalesforceCampaign implements OneGraphNode { """ opportunities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityConnectionFilter """ + """ filter: SalesforceOpportunityConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunitySortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunitySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunitySortByFieldEnum """ + """ sortByField: SalesforceOpportunitySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Opportunities to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunitysConnection """ @@ -205823,15 +207866,15 @@ type SalesforceCampaign implements OneGraphNode { """ processInstances(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ + """ filter: SalesforceProcessInstanceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstancesConnection """ @@ -205839,15 +207882,15 @@ type SalesforceCampaign implements OneGraphNode { """ tasks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ + """ filter: SalesforceTaskConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ + """ sortByField: SalesforceTaskSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Tasks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTasksConnection """ @@ -205855,15 +207898,15 @@ type SalesforceCampaign implements OneGraphNode { """ topicAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ + """ filter: SalesforceTopicAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicAssignmentsConnection customFields(""" @@ -206055,15 +208098,15 @@ type SalesforceOpportunity implements OneGraphNode { """ accountPartners(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountPartnerConnectionFilter """ + """ filter: SalesforceAccountPartnerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountPartnerSortByFieldEnum """ + """ sortByCustomField: SalesforceAccountPartnerSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountPartnerSortByFieldEnum """ + """ sortByField: SalesforceAccountPartnerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AccountPartners to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountPartnersConnection """ @@ -206071,15 +208114,15 @@ type SalesforceOpportunity implements OneGraphNode { """ attachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ + """ filter: SalesforceAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Attachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAttachmentsConnection """ @@ -206087,15 +208130,15 @@ type SalesforceOpportunity implements OneGraphNode { """ recordAssociatedGroups(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupRecordConnectionFilter """ + """ filter: SalesforceCollaborationGroupRecordConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupRecordsConnection """ @@ -206103,15 +208146,15 @@ type SalesforceOpportunity implements OneGraphNode { """ contentDistributions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ + """ filter: SalesforceContentDistributionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDistributionsConnection """ @@ -206119,15 +208162,15 @@ type SalesforceOpportunity implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -206135,15 +208178,15 @@ type SalesforceOpportunity implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -206151,15 +208194,15 @@ type SalesforceOpportunity implements OneGraphNode { """ emails(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ + """ filter: SalesforceEmailMessageConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailMessagesConnection """ @@ -206167,15 +208210,15 @@ type SalesforceOpportunity implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -206183,15 +208226,15 @@ type SalesforceOpportunity implements OneGraphNode { """ events(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ + """ filter: SalesforceEventConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ + """ sortByField: SalesforceEventSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Events to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventsConnection """ @@ -206199,15 +208242,15 @@ type SalesforceOpportunity implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -206215,15 +208258,15 @@ type SalesforceOpportunity implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -206231,15 +208274,15 @@ type SalesforceOpportunity implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -206247,15 +208290,15 @@ type SalesforceOpportunity implements OneGraphNode { """ leads(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadConnectionFilter """ + """ filter: SalesforceLeadConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadSortByFieldEnum """ + """ sortByCustomField: SalesforceLeadSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadSortByFieldEnum """ + """ sortByField: SalesforceLeadSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Leads to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadsConnection """ @@ -206263,15 +208306,15 @@ type SalesforceOpportunity implements OneGraphNode { """ notes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNoteConnectionFilter """ + """ filter: SalesforceNoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNoteSortByFieldEnum """ + """ sortByCustomField: SalesforceNoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNoteSortByFieldEnum """ + """ sortByField: SalesforceNoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Notes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceNotesConnection """ @@ -206279,15 +208322,15 @@ type SalesforceOpportunity implements OneGraphNode { """ opportunityCompetitors(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityCompetitorConnectionFilter """ + """ filter: SalesforceOpportunityCompetitorConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityCompetitorSortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityCompetitorSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityCompetitorSortByFieldEnum """ + """ sortByField: SalesforceOpportunityCompetitorSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityCompetitors to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityCompetitorsConnection """ @@ -206295,15 +208338,15 @@ type SalesforceOpportunity implements OneGraphNode { """ opportunityContactRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityContactRoleConnectionFilter """ + """ filter: SalesforceOpportunityContactRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityContactRoleSortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityContactRoleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityContactRoleSortByFieldEnum """ + """ sortByField: SalesforceOpportunityContactRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityContactRoles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityContactRolesConnection """ @@ -206311,15 +208354,15 @@ type SalesforceOpportunity implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityFeedConnectionFilter """ + """ filter: SalesforceOpportunityFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityFeedSortByFieldEnum """ + """ sortByField: SalesforceOpportunityFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityFeedsConnection """ @@ -206327,15 +208370,15 @@ type SalesforceOpportunity implements OneGraphNode { """ histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityFieldHistoryConnectionFilter """ + """ filter: SalesforceOpportunityFieldHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityFieldHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityFieldHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityFieldHistorySortByFieldEnum """ + """ sortByField: SalesforceOpportunityFieldHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityFieldHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityFieldHistorysConnection """ @@ -206343,15 +208386,15 @@ type SalesforceOpportunity implements OneGraphNode { """ opportunityHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityHistoryConnectionFilter """ + """ filter: SalesforceOpportunityHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityHistorySortByFieldEnum """ + """ sortByField: SalesforceOpportunityHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityHistorysConnection """ @@ -206359,15 +208402,15 @@ type SalesforceOpportunity implements OneGraphNode { """ opportunityLineItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityLineItemConnectionFilter """ + """ filter: SalesforceOpportunityLineItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityLineItemSortByFieldEnum """ + """ sortByField: SalesforceOpportunityLineItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityLineItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityLineItemsConnection """ @@ -206375,15 +208418,15 @@ type SalesforceOpportunity implements OneGraphNode { """ opportunityPartnersFrom(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityPartnerConnectionFilter """ + """ filter: SalesforceOpportunityPartnerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityPartnerSortByFieldEnum """ + """ sortByField: SalesforceOpportunityPartnerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityPartners to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityPartnersConnection """ @@ -206391,15 +208434,15 @@ type SalesforceOpportunity implements OneGraphNode { """ shares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityShareConnectionFilter """ + """ filter: SalesforceOpportunityShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityShareSortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityShareSortByFieldEnum """ + """ sortByField: SalesforceOpportunityShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunitySharesConnection """ @@ -206407,15 +208450,15 @@ type SalesforceOpportunity implements OneGraphNode { """ partners(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePartnerConnectionFilter """ + """ filter: SalesforcePartnerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePartnerSortByFieldEnum """ + """ sortByCustomField: SalesforcePartnerSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePartnerSortByFieldEnum """ + """ sortByField: SalesforcePartnerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Partners to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePartnersConnection """ @@ -206423,15 +208466,15 @@ type SalesforceOpportunity implements OneGraphNode { """ processInstances(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ + """ filter: SalesforceProcessInstanceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstancesConnection """ @@ -206439,15 +208482,15 @@ type SalesforceOpportunity implements OneGraphNode { """ tasks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ + """ filter: SalesforceTaskConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ + """ sortByField: SalesforceTaskSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Tasks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTasksConnection """ @@ -206455,15 +208498,15 @@ type SalesforceOpportunity implements OneGraphNode { """ topicAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ + """ filter: SalesforceTopicAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicAssignmentsConnection customFields(""" @@ -206932,15 +208975,15 @@ type SalesforcePricebook2 implements OneGraphNode { """ contracts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractConnectionFilter """ + """ filter: SalesforceContractConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractSortByFieldEnum """ + """ sortByCustomField: SalesforceContractSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractSortByFieldEnum """ + """ sortByField: SalesforceContractSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Contracts to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContractsConnection """ @@ -206948,15 +208991,15 @@ type SalesforcePricebook2 implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -206964,15 +209007,15 @@ type SalesforcePricebook2 implements OneGraphNode { """ opportunities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityConnectionFilter """ + """ filter: SalesforceOpportunityConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunitySortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunitySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunitySortByFieldEnum """ + """ sortByField: SalesforceOpportunitySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Opportunities to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunitysConnection """ @@ -206980,15 +209023,15 @@ type SalesforcePricebook2 implements OneGraphNode { """ orders(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderConnectionFilter """ + """ filter: SalesforceOrderConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderSortByFieldEnum """ + """ sortByCustomField: SalesforceOrderSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderSortByFieldEnum """ + """ sortByField: SalesforceOrderSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Orders to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrdersConnection """ @@ -206996,15 +209039,15 @@ type SalesforcePricebook2 implements OneGraphNode { """ histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePricebook2HistoryConnectionFilter """ + """ filter: SalesforcePricebook2HistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePricebook2HistorySortByFieldEnum """ + """ sortByCustomField: SalesforcePricebook2HistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePricebook2HistorySortByFieldEnum """ + """ sortByField: SalesforcePricebook2HistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Pricebook2Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePricebook2HistorysConnection """ @@ -207012,15 +209055,15 @@ type SalesforcePricebook2 implements OneGraphNode { """ pricebookEntries(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePricebookEntryConnectionFilter """ + """ filter: SalesforcePricebookEntryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePricebookEntrySortByFieldEnum """ + """ sortByCustomField: SalesforcePricebookEntrySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePricebookEntrySortByFieldEnum """ + """ sortByField: SalesforcePricebookEntrySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of PricebookEntries to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePricebookEntrysConnection customFields(""" @@ -207232,15 +209275,15 @@ type SalesforceContract implements OneGraphNode { """ attachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ + """ filter: SalesforceAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Attachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAttachmentsConnection """ @@ -207248,15 +209291,15 @@ type SalesforceContract implements OneGraphNode { """ recordAssociatedGroups(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupRecordConnectionFilter """ + """ filter: SalesforceCollaborationGroupRecordConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupRecordsConnection """ @@ -207264,15 +209307,15 @@ type SalesforceContract implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -207280,15 +209323,15 @@ type SalesforceContract implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -207296,15 +209339,15 @@ type SalesforceContract implements OneGraphNode { """ contractContactRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractContactRoleConnectionFilter """ + """ filter: SalesforceContractContactRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractContactRoleSortByFieldEnum """ + """ sortByCustomField: SalesforceContractContactRoleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractContactRoleSortByFieldEnum """ + """ sortByField: SalesforceContractContactRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContractContactRoles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContractContactRolesConnection """ @@ -207312,15 +209355,15 @@ type SalesforceContract implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractFeedConnectionFilter """ + """ filter: SalesforceContractFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceContractFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractFeedSortByFieldEnum """ + """ sortByField: SalesforceContractFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContractFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContractFeedsConnection """ @@ -207328,15 +209371,15 @@ type SalesforceContract implements OneGraphNode { """ histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractHistoryConnectionFilter """ + """ filter: SalesforceContractHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceContractHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractHistorySortByFieldEnum """ + """ sortByField: SalesforceContractHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContractHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContractHistorysConnection """ @@ -207344,15 +209387,15 @@ type SalesforceContract implements OneGraphNode { """ emails(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ + """ filter: SalesforceEmailMessageConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailMessagesConnection """ @@ -207360,15 +209403,15 @@ type SalesforceContract implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -207376,15 +209419,15 @@ type SalesforceContract implements OneGraphNode { """ events(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ + """ filter: SalesforceEventConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ + """ sortByField: SalesforceEventSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Events to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventsConnection """ @@ -207392,15 +209435,15 @@ type SalesforceContract implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -207408,15 +209451,15 @@ type SalesforceContract implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -207424,15 +209467,15 @@ type SalesforceContract implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -207440,15 +209483,15 @@ type SalesforceContract implements OneGraphNode { """ notes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNoteConnectionFilter """ + """ filter: SalesforceNoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNoteSortByFieldEnum """ + """ sortByCustomField: SalesforceNoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNoteSortByFieldEnum """ + """ sortByField: SalesforceNoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Notes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceNotesConnection """ @@ -207456,15 +209499,15 @@ type SalesforceContract implements OneGraphNode { """ orders(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderConnectionFilter """ + """ filter: SalesforceOrderConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderSortByFieldEnum """ + """ sortByCustomField: SalesforceOrderSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderSortByFieldEnum """ + """ sortByField: SalesforceOrderSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Orders to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrdersConnection """ @@ -207472,15 +209515,15 @@ type SalesforceContract implements OneGraphNode { """ processInstances(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ + """ filter: SalesforceProcessInstanceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstancesConnection """ @@ -207488,15 +209531,15 @@ type SalesforceContract implements OneGraphNode { """ tasks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ + """ filter: SalesforceTaskConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ + """ sortByField: SalesforceTaskSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Tasks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTasksConnection """ @@ -207504,15 +209547,15 @@ type SalesforceContract implements OneGraphNode { """ topicAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ + """ filter: SalesforceTopicAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicAssignmentsConnection customFields(""" @@ -207798,15 +209841,15 @@ type SalesforceOrder implements OneGraphNode { """ attachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ + """ filter: SalesforceAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Attachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAttachmentsConnection """ @@ -207814,15 +209857,15 @@ type SalesforceOrder implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -207830,15 +209873,15 @@ type SalesforceOrder implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -207846,15 +209889,15 @@ type SalesforceOrder implements OneGraphNode { """ emails(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ + """ filter: SalesforceEmailMessageConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailMessagesConnection """ @@ -207862,15 +209905,15 @@ type SalesforceOrder implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -207878,15 +209921,15 @@ type SalesforceOrder implements OneGraphNode { """ events(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ + """ filter: SalesforceEventConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ + """ sortByField: SalesforceEventSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Events to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventsConnection """ @@ -207894,15 +209937,15 @@ type SalesforceOrder implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -207910,15 +209953,15 @@ type SalesforceOrder implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -207926,15 +209969,15 @@ type SalesforceOrder implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -207942,15 +209985,15 @@ type SalesforceOrder implements OneGraphNode { """ notes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNoteConnectionFilter """ + """ filter: SalesforceNoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNoteSortByFieldEnum """ + """ sortByCustomField: SalesforceNoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNoteSortByFieldEnum """ + """ sortByField: SalesforceNoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Notes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceNotesConnection """ @@ -207958,15 +210001,15 @@ type SalesforceOrder implements OneGraphNode { """ orders(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderConnectionFilter """ + """ filter: SalesforceOrderConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderSortByFieldEnum """ + """ sortByCustomField: SalesforceOrderSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderSortByFieldEnum """ + """ sortByField: SalesforceOrderSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Orders to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrdersConnection """ @@ -207974,15 +210017,15 @@ type SalesforceOrder implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderFeedConnectionFilter """ + """ filter: SalesforceOrderFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceOrderFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderFeedSortByFieldEnum """ + """ sortByField: SalesforceOrderFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrderFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderFeedsConnection """ @@ -207990,15 +210033,15 @@ type SalesforceOrder implements OneGraphNode { """ histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderHistoryConnectionFilter """ + """ filter: SalesforceOrderHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceOrderHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderHistorySortByFieldEnum """ + """ sortByField: SalesforceOrderHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrderHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderHistorysConnection """ @@ -208006,15 +210049,15 @@ type SalesforceOrder implements OneGraphNode { """ orderItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemConnectionFilter """ + """ filter: SalesforceOrderItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderItemSortByFieldEnum """ + """ sortByCustomField: SalesforceOrderItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemSortByFieldEnum """ + """ sortByField: SalesforceOrderItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrderItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderItemsConnection """ @@ -208022,15 +210065,15 @@ type SalesforceOrder implements OneGraphNode { """ shares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderShareConnectionFilter """ + """ filter: SalesforceOrderShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderShareSortByFieldEnum """ + """ sortByCustomField: SalesforceOrderShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderShareSortByFieldEnum """ + """ sortByField: SalesforceOrderShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrderShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderSharesConnection """ @@ -208038,15 +210081,15 @@ type SalesforceOrder implements OneGraphNode { """ processInstances(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ + """ filter: SalesforceProcessInstanceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstancesConnection """ @@ -208054,15 +210097,15 @@ type SalesforceOrder implements OneGraphNode { """ tasks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ + """ filter: SalesforceTaskConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ + """ sortByField: SalesforceTaskSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Tasks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTasksConnection """ @@ -208070,15 +210113,15 @@ type SalesforceOrder implements OneGraphNode { """ topicAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ + """ filter: SalesforceTopicAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicAssignmentsConnection customFields(""" @@ -208156,15 +210199,15 @@ type SalesforceOrgDeleteRequest implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -208172,15 +210215,15 @@ type SalesforceOrgDeleteRequest implements OneGraphNode { """ processInstances(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ + """ filter: SalesforceProcessInstanceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstancesConnection customFields(""" @@ -208272,15 +210315,15 @@ type SalesforceStreamingChannel implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -208288,15 +210331,15 @@ type SalesforceStreamingChannel implements OneGraphNode { """ processInstances(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ + """ filter: SalesforceProcessInstanceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstancesConnection customFields(""" @@ -208845,15 +210888,15 @@ type SalesforceProcessInstanceNode implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -208927,15 +210970,15 @@ type SalesforceProcessNode implements OneGraphNode { """ processInstanceNodes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceNodeConnectionFilter """ + """ filter: SalesforceProcessInstanceNodeConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceNodeSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceNodeSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceNodeSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceNodeSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstanceNodes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstanceNodesConnection """ @@ -208943,15 +210986,15 @@ type SalesforceProcessNode implements OneGraphNode { """ processInstanceSteps(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceStepConnectionFilter """ + """ filter: SalesforceProcessInstanceStepConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceStepSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceStepSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceStepSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceStepSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstanceSteps to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstanceStepsConnection customFields(""" @@ -209259,15 +211302,15 @@ type SalesforceProcessDefinition implements OneGraphNode { """ processInstances(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ + """ filter: SalesforceProcessInstanceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstancesConnection """ @@ -209275,15 +211318,15 @@ type SalesforceProcessDefinition implements OneGraphNode { """ processNodes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessNodeConnectionFilter """ + """ filter: SalesforceProcessNodeConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessNodeSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessNodeSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessNodeSortByFieldEnum """ + """ sortByField: SalesforceProcessNodeSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessNodes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessNodesConnection customFields(""" @@ -209395,15 +211438,15 @@ type SalesforceProcessInstance implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -209411,15 +211454,15 @@ type SalesforceProcessInstance implements OneGraphNode { """ nodes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceNodeConnectionFilter """ + """ filter: SalesforceProcessInstanceNodeConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceNodeSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceNodeSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceNodeSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceNodeSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstanceNodes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstanceNodesConnection """ @@ -209427,15 +211470,15 @@ type SalesforceProcessInstance implements OneGraphNode { """ steps(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceStepConnectionFilter """ + """ filter: SalesforceProcessInstanceStepConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceStepSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceStepSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceStepSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceStepSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstanceSteps to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstanceStepsConnection """ @@ -209443,15 +211486,15 @@ type SalesforceProcessInstance implements OneGraphNode { """ workitems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceWorkitemConnectionFilter """ + """ filter: SalesforceProcessInstanceWorkitemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceWorkitemSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceWorkitemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceWorkitemSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceWorkitemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstanceWorkitems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstanceWorkitemsConnection customFields(""" @@ -209720,15 +211763,15 @@ type SalesforceUserProvAccountStaging implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -209905,15 +211948,15 @@ type SalesforceUserProvAccount implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -209921,15 +211964,15 @@ type SalesforceUserProvAccount implements OneGraphNode { """ userProvisioningRequests(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningRequestConnectionFilter """ + """ filter: SalesforceUserProvisioningRequestConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum """ + """ sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum """ + """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserProvisioningRequests to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvisioningRequestsConnection customFields(""" @@ -210133,15 +212176,15 @@ type SalesforceUserAppMenuCustomization implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -210365,15 +212408,15 @@ type SalesforceInstalledMobileApp implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -211519,15 +213562,15 @@ type SalesforceScontrol implements OneGraphNode { """ webLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceWebLinkConnectionFilter """ + """ filter: SalesforceWebLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceWebLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceWebLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceWebLinkSortByFieldEnum """ + """ sortByField: SalesforceWebLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of WebLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceWebLinksConnection customFields(""" @@ -212002,15 +214045,15 @@ type SalesforceApexPage implements OneGraphNode { """ setupEntityAccessItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSetupEntityAccessConnectionFilter """ + """ filter: SalesforceSetupEntityAccessConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum """ + """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum """ + """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSetupEntityAccesssConnection """ @@ -212018,15 +214061,15 @@ type SalesforceApexPage implements OneGraphNode { """ visualforceAccessMetricsPlural(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVisualforceAccessMetricsConnectionFilter """ + """ filter: SalesforceVisualforceAccessMetricsConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceVisualforceAccessMetricsSortByFieldEnum """ + """ sortByCustomField: SalesforceVisualforceAccessMetricsSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVisualforceAccessMetricsSortByFieldEnum """ + """ sortByField: SalesforceVisualforceAccessMetricsSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of VisualforceAccessMetrics to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceVisualforceAccessMetricssConnection """ @@ -212034,15 +214077,15 @@ type SalesforceApexPage implements OneGraphNode { """ webLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceWebLinkConnectionFilter """ + """ filter: SalesforceWebLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceWebLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceWebLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceWebLinkSortByFieldEnum """ + """ sortByField: SalesforceWebLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of WebLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceWebLinksConnection customFields(""" @@ -212706,15 +214749,15 @@ type SalesforceUserProvisioningConfig implements OneGraphNode { """ userProvisioningRequests(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningRequestConnectionFilter """ + """ filter: SalesforceUserProvisioningRequestConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum """ + """ sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum """ + """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserProvisioningRequests to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvisioningRequestsConnection customFields(""" @@ -213119,15 +215162,15 @@ type SalesforceNamedCredential implements OneGraphNode { """ userAuths(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceExternalDataUserAuthConnectionFilter """ + """ filter: SalesforceExternalDataUserAuthConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum """ + """ sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceExternalDataUserAuthSortByFieldEnum """ + """ sortByField: SalesforceExternalDataUserAuthSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ExternalDataUserAuths to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceExternalDataUserAuthsConnection """ @@ -213135,15 +215178,15 @@ type SalesforceNamedCredential implements OneGraphNode { """ setupEntityAccessItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSetupEntityAccessConnectionFilter """ + """ filter: SalesforceSetupEntityAccessConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum """ + """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum """ + """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSetupEntityAccesssConnection """ @@ -213151,15 +215194,15 @@ type SalesforceNamedCredential implements OneGraphNode { """ userProvisioningConfigs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningConfigConnectionFilter """ + """ filter: SalesforceUserProvisioningConfigConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningConfigSortByFieldEnum """ + """ sortByCustomField: SalesforceUserProvisioningConfigSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningConfigSortByFieldEnum """ + """ sortByField: SalesforceUserProvisioningConfigSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserProvisioningConfigs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvisioningConfigsConnection customFields(""" @@ -214489,15 +216532,15 @@ type SalesforceCustomPermission implements OneGraphNode { """ customPermissionItem(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomPermissionDependencyConnectionFilter """ + """ filter: SalesforceCustomPermissionDependencyConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomPermissionDependencySortByFieldEnum """ + """ sortByCustomField: SalesforceCustomPermissionDependencySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomPermissionDependencySortByFieldEnum """ + """ sortByField: SalesforceCustomPermissionDependencySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CustomPermissionDependencies to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCustomPermissionDependencysConnection """ @@ -214505,15 +216548,15 @@ type SalesforceCustomPermission implements OneGraphNode { """ customPermissionDependencyItem(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomPermissionDependencyConnectionFilter """ + """ filter: SalesforceCustomPermissionDependencyConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomPermissionDependencySortByFieldEnum """ + """ sortByCustomField: SalesforceCustomPermissionDependencySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomPermissionDependencySortByFieldEnum """ + """ sortByField: SalesforceCustomPermissionDependencySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CustomPermissionDependencies to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCustomPermissionDependencysConnection """ @@ -214521,15 +216564,15 @@ type SalesforceCustomPermission implements OneGraphNode { """ grantedByLicenses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGrantedByLicenseConnectionFilter """ + """ filter: SalesforceGrantedByLicenseConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceGrantedByLicenseSortByFieldEnum """ + """ sortByCustomField: SalesforceGrantedByLicenseSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGrantedByLicenseSortByFieldEnum """ + """ sortByField: SalesforceGrantedByLicenseSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of GrantedByLicenses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceGrantedByLicensesConnection """ @@ -214537,15 +216580,15 @@ type SalesforceCustomPermission implements OneGraphNode { """ setupEntityAccessItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSetupEntityAccessConnectionFilter """ + """ filter: SalesforceSetupEntityAccessConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum """ + """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum """ + """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSetupEntityAccesssConnection customFields(""" @@ -215467,15 +217510,15 @@ type SalesforcePermissionSetLicense implements OneGraphNode { """ grantedByLicenses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGrantedByLicenseConnectionFilter """ + """ filter: SalesforceGrantedByLicenseConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceGrantedByLicenseSortByFieldEnum """ + """ sortByCustomField: SalesforceGrantedByLicenseSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGrantedByLicenseSortByFieldEnum """ + """ sortByField: SalesforceGrantedByLicenseSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of GrantedByLicenses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceGrantedByLicensesConnection """ @@ -215483,15 +217526,15 @@ type SalesforcePermissionSetLicense implements OneGraphNode { """ permissionSets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetConnectionFilter """ + """ filter: SalesforcePermissionSetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePermissionSetSortByFieldEnum """ + """ sortByCustomField: SalesforcePermissionSetSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetSortByFieldEnum """ + """ sortByField: SalesforcePermissionSetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of PermissionSets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePermissionSetsConnection """ @@ -215499,15 +217542,15 @@ type SalesforcePermissionSetLicense implements OneGraphNode { """ permissionSetLicenseAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetLicenseAssignConnectionFilter """ + """ filter: SalesforcePermissionSetLicenseAssignConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePermissionSetLicenseAssignSortByFieldEnum """ + """ sortByCustomField: SalesforcePermissionSetLicenseAssignSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum """ + """ sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of PermissionSetLicenseAssigns to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePermissionSetLicenseAssignsConnection customFields(""" @@ -216478,15 +218521,15 @@ type SalesforceProfile implements OneGraphNode { """ permissionSets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetConnectionFilter """ + """ filter: SalesforcePermissionSetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePermissionSetSortByFieldEnum """ + """ sortByCustomField: SalesforcePermissionSetSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetSortByFieldEnum """ + """ sortByField: SalesforcePermissionSetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of PermissionSets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePermissionSetsConnection """ @@ -216494,15 +218537,15 @@ type SalesforceProfile implements OneGraphNode { """ users(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserConnectionFilter """ + """ filter: SalesforceUserConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserSortByFieldEnum """ + """ sortByCustomField: SalesforceUserSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserSortByFieldEnum """ + """ sortByField: SalesforceUserSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Users to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUsersConnection customFields(""" @@ -217635,15 +219678,15 @@ type SalesforceUserLicense implements OneGraphNode { """ customObjectUserLicenseMetricsPlural(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomObjectUserLicenseMetricsConnectionFilter """ + """ filter: SalesforceCustomObjectUserLicenseMetricsConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomObjectUserLicenseMetricsSortByFieldEnum """ + """ sortByCustomField: SalesforceCustomObjectUserLicenseMetricsSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomObjectUserLicenseMetricsSortByFieldEnum """ + """ sortByField: SalesforceCustomObjectUserLicenseMetricsSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CustomObjectUserLicenseMetrics to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCustomObjectUserLicenseMetricssConnection """ @@ -217651,15 +219694,15 @@ type SalesforceUserLicense implements OneGraphNode { """ permissionSets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetConnectionFilter """ + """ filter: SalesforcePermissionSetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePermissionSetSortByFieldEnum """ + """ sortByCustomField: SalesforcePermissionSetSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetSortByFieldEnum """ + """ sortByField: SalesforcePermissionSetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of PermissionSets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePermissionSetsConnection """ @@ -217667,15 +219710,15 @@ type SalesforceUserLicense implements OneGraphNode { """ profiles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProfileConnectionFilter """ + """ filter: SalesforceProfileConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProfileSortByFieldEnum """ + """ sortByCustomField: SalesforceProfileSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProfileSortByFieldEnum """ + """ sortByField: SalesforceProfileSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Profiles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProfilesConnection customFields(""" @@ -218517,15 +220560,15 @@ type SalesforcePermissionSet implements OneGraphNode { """ fieldPerms(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFieldPermissionsConnectionFilter """ + """ filter: SalesforceFieldPermissionsConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFieldPermissionsSortByFieldEnum """ + """ sortByCustomField: SalesforceFieldPermissionsSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFieldPermissionsSortByFieldEnum """ + """ sortByField: SalesforceFieldPermissionsSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FieldPermissions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFieldPermissionssConnection """ @@ -218533,15 +220576,15 @@ type SalesforcePermissionSet implements OneGraphNode { """ objectPerms(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceObjectPermissionsConnectionFilter """ + """ filter: SalesforceObjectPermissionsConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceObjectPermissionsSortByFieldEnum """ + """ sortByCustomField: SalesforceObjectPermissionsSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceObjectPermissionsSortByFieldEnum """ + """ sortByField: SalesforceObjectPermissionsSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ObjectPermissions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceObjectPermissionssConnection """ @@ -218549,15 +220592,15 @@ type SalesforcePermissionSet implements OneGraphNode { """ assignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetAssignmentConnectionFilter """ + """ filter: SalesforcePermissionSetAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePermissionSetAssignmentSortByFieldEnum """ + """ sortByCustomField: SalesforcePermissionSetAssignmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetAssignmentSortByFieldEnum """ + """ sortByField: SalesforcePermissionSetAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of PermissionSetAssignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePermissionSetAssignmentsConnection """ @@ -218565,15 +220608,15 @@ type SalesforcePermissionSet implements OneGraphNode { """ sessionActivations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSessionPermSetActivationConnectionFilter """ + """ filter: SalesforceSessionPermSetActivationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSessionPermSetActivationSortByFieldEnum """ + """ sortByCustomField: SalesforceSessionPermSetActivationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSessionPermSetActivationSortByFieldEnum """ + """ sortByField: SalesforceSessionPermSetActivationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SessionPermSetActivations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSessionPermSetActivationsConnection """ @@ -218581,15 +220624,15 @@ type SalesforcePermissionSet implements OneGraphNode { """ setupEntityAccessItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSetupEntityAccessConnectionFilter """ + """ filter: SalesforceSetupEntityAccessConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum """ + """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum """ + """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSetupEntityAccesssConnection customFields(""" @@ -219409,15 +221452,15 @@ type SalesforceLoginGeo implements OneGraphNode { """ authSessions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthSessionConnectionFilter """ + """ filter: SalesforceAuthSessionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthSessionSortByFieldEnum """ + """ sortByCustomField: SalesforceAuthSessionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthSessionSortByFieldEnum """ + """ sortByField: SalesforceAuthSessionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AuthSessions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAuthSessionsConnection """ @@ -219425,15 +221468,15 @@ type SalesforceLoginGeo implements OneGraphNode { """ loginHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLoginHistoryConnectionFilter """ + """ filter: SalesforceLoginHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLoginHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceLoginHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLoginHistorySortByFieldEnum """ + """ sortByField: SalesforceLoginHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LoginHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLoginHistorysConnection """ @@ -219441,15 +221484,15 @@ type SalesforceLoginGeo implements OneGraphNode { """ verificationHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVerificationHistoryConnectionFilter """ + """ filter: SalesforceVerificationHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceVerificationHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceVerificationHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVerificationHistorySortByFieldEnum """ + """ sortByField: SalesforceVerificationHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of VerificationHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceVerificationHistorysConnection customFields(""" @@ -219956,15 +221999,15 @@ type SalesforceAuthConfig implements OneGraphNode { """ authProvidersForConfig(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthConfigProvidersConnectionFilter """ + """ filter: SalesforceAuthConfigProvidersConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum """ + """ sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthConfigProvidersSortByFieldEnum """ + """ sortByField: SalesforceAuthConfigProvidersSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AuthConfigProviders to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAuthConfigProviderssConnection customFields(""" @@ -220210,15 +222253,15 @@ type SalesforceSamlSsoConfig implements OneGraphNode { """ authConfigProvidersPlural(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthConfigProvidersConnectionFilter """ + """ filter: SalesforceAuthConfigProvidersConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum """ + """ sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthConfigProvidersSortByFieldEnum """ + """ sortByField: SalesforceAuthConfigProvidersSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AuthConfigProviders to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAuthConfigProviderssConnection """ @@ -220226,15 +222269,15 @@ type SalesforceSamlSsoConfig implements OneGraphNode { """ loginHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLoginHistoryConnectionFilter """ + """ filter: SalesforceLoginHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLoginHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceLoginHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLoginHistorySortByFieldEnum """ + """ sortByField: SalesforceLoginHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LoginHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLoginHistorysConnection customFields(""" @@ -220344,15 +222387,15 @@ type SalesforceLoginHistory implements OneGraphNode { """ authSessions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthSessionConnectionFilter """ + """ filter: SalesforceAuthSessionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthSessionSortByFieldEnum """ + """ sortByCustomField: SalesforceAuthSessionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthSessionSortByFieldEnum """ + """ sortByField: SalesforceAuthSessionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AuthSessions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAuthSessionsConnection """ @@ -220360,15 +222403,15 @@ type SalesforceLoginHistory implements OneGraphNode { """ verificationHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVerificationHistoryConnectionFilter """ + """ filter: SalesforceVerificationHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceVerificationHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceVerificationHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVerificationHistorySortByFieldEnum """ + """ sortByField: SalesforceVerificationHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of VerificationHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceVerificationHistorysConnection customFields(""" @@ -220468,15 +222511,15 @@ type SalesforceAuthSession implements OneGraphNode { """ authSessions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthSessionConnectionFilter """ + """ filter: SalesforceAuthSessionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthSessionSortByFieldEnum """ + """ sortByCustomField: SalesforceAuthSessionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthSessionSortByFieldEnum """ + """ sortByField: SalesforceAuthSessionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AuthSessions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAuthSessionsConnection """ @@ -220484,15 +222527,15 @@ type SalesforceAuthSession implements OneGraphNode { """ idpEventLogs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdpEventLogConnectionFilter """ + """ filter: SalesforceIdpEventLogConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceIdpEventLogSortByFieldEnum """ + """ sortByCustomField: SalesforceIdpEventLogSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdpEventLogSortByFieldEnum """ + """ sortByField: SalesforceIdpEventLogSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of IdpEventLogs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceIdpEventLogsConnection """ @@ -220500,15 +222543,15 @@ type SalesforceAuthSession implements OneGraphNode { """ sessionPermSetActivations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSessionPermSetActivationConnectionFilter """ + """ filter: SalesforceSessionPermSetActivationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSessionPermSetActivationSortByFieldEnum """ + """ sortByCustomField: SalesforceSessionPermSetActivationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSessionPermSetActivationSortByFieldEnum """ + """ sortByField: SalesforceSessionPermSetActivationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SessionPermSetActivations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSessionPermSetActivationsConnection customFields(""" @@ -220698,15 +222741,15 @@ type SalesforceConnectedApplication implements OneGraphNode { """ idpEventLogs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdpEventLogConnectionFilter """ + """ filter: SalesforceIdpEventLogConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceIdpEventLogSortByFieldEnum """ + """ sortByCustomField: SalesforceIdpEventLogSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdpEventLogSortByFieldEnum """ + """ sortByField: SalesforceIdpEventLogSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of IdpEventLogs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceIdpEventLogsConnection """ @@ -220714,15 +222757,15 @@ type SalesforceConnectedApplication implements OneGraphNode { """ installedMobileApps(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceInstalledMobileAppConnectionFilter """ + """ filter: SalesforceInstalledMobileAppConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceInstalledMobileAppSortByFieldEnum """ + """ sortByCustomField: SalesforceInstalledMobileAppSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceInstalledMobileAppSortByFieldEnum """ + """ sortByField: SalesforceInstalledMobileAppSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of InstalledMobileApps to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceInstalledMobileAppsConnection """ @@ -220730,15 +222773,15 @@ type SalesforceConnectedApplication implements OneGraphNode { """ setupEntityAccessItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSetupEntityAccessConnectionFilter """ + """ filter: SalesforceSetupEntityAccessConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum """ + """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum """ + """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSetupEntityAccesssConnection """ @@ -220746,15 +222789,15 @@ type SalesforceConnectedApplication implements OneGraphNode { """ userAppMenuCustomizations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserAppMenuCustomizationConnectionFilter """ + """ filter: SalesforceUserAppMenuCustomizationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserAppMenuCustomizationSortByFieldEnum """ + """ sortByCustomField: SalesforceUserAppMenuCustomizationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserAppMenuCustomizationSortByFieldEnum """ + """ sortByField: SalesforceUserAppMenuCustomizationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserAppMenuCustomizations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserAppMenuCustomizationsConnection """ @@ -220762,15 +222805,15 @@ type SalesforceConnectedApplication implements OneGraphNode { """ userProvAccounts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvAccountConnectionFilter """ + """ filter: SalesforceUserProvAccountConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvAccountSortByFieldEnum """ + """ sortByCustomField: SalesforceUserProvAccountSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvAccountSortByFieldEnum """ + """ sortByField: SalesforceUserProvAccountSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserProvAccounts to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvAccountsConnection """ @@ -220778,15 +222821,15 @@ type SalesforceConnectedApplication implements OneGraphNode { """ userProvAccountStagings(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvAccountStagingConnectionFilter """ + """ filter: SalesforceUserProvAccountStagingConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvAccountStagingSortByFieldEnum """ + """ sortByCustomField: SalesforceUserProvAccountStagingSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvAccountStagingSortByFieldEnum """ + """ sortByField: SalesforceUserProvAccountStagingSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserProvAccountStagings to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvAccountStagingsConnection """ @@ -220794,15 +222837,15 @@ type SalesforceConnectedApplication implements OneGraphNode { """ userProvisioningConfigs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningConfigConnectionFilter """ + """ filter: SalesforceUserProvisioningConfigConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningConfigSortByFieldEnum """ + """ sortByCustomField: SalesforceUserProvisioningConfigSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningConfigSortByFieldEnum """ + """ sortByField: SalesforceUserProvisioningConfigSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserProvisioningConfigs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvisioningConfigsConnection """ @@ -220810,15 +222853,15 @@ type SalesforceConnectedApplication implements OneGraphNode { """ userProvisioningRequests(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningRequestConnectionFilter """ + """ filter: SalesforceUserProvisioningRequestConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum """ + """ sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum """ + """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserProvisioningRequests to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvisioningRequestsConnection """ @@ -220826,15 +222869,15 @@ type SalesforceConnectedApplication implements OneGraphNode { """ verificationHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVerificationHistoryConnectionFilter """ + """ filter: SalesforceVerificationHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceVerificationHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceVerificationHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVerificationHistorySortByFieldEnum """ + """ sortByField: SalesforceVerificationHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of VerificationHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceVerificationHistorysConnection customFields(""" @@ -220984,15 +223027,15 @@ type SalesforceUserProvisioningRequest implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -221000,15 +223043,15 @@ type SalesforceUserProvisioningRequest implements OneGraphNode { """ processInstances(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ + """ filter: SalesforceProcessInstanceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstancesConnection """ @@ -221016,15 +223059,15 @@ type SalesforceUserProvisioningRequest implements OneGraphNode { """ userProvisioningLogs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningLogConnectionFilter """ + """ filter: SalesforceUserProvisioningLogConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningLogSortByFieldEnum """ + """ sortByCustomField: SalesforceUserProvisioningLogSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningLogSortByFieldEnum """ + """ sortByField: SalesforceUserProvisioningLogSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserProvisioningLogs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvisioningLogsConnection """ @@ -221032,15 +223075,15 @@ type SalesforceUserProvisioningRequest implements OneGraphNode { """ userProvisioningRequests(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningRequestConnectionFilter """ + """ filter: SalesforceUserProvisioningRequestConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum """ + """ sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum """ + """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserProvisioningRequests to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvisioningRequestsConnection customFields(""" @@ -221124,15 +223167,15 @@ type SalesforceWaveCompatibilityCheckItem implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -221388,15 +223431,15 @@ type SalesforceFlowInterview implements OneGraphNode { """ recordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -222028,15 +224071,15 @@ type SalesforceApexTestRunResult implements OneGraphNode { """ apexTestQueueItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestQueueItemConnectionFilter """ + """ filter: SalesforceApexTestQueueItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum """ + """ sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestQueueItemSortByFieldEnum """ + """ sortByField: SalesforceApexTestQueueItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ApexTestQueueItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexTestQueueItemsConnection """ @@ -222044,15 +224087,15 @@ type SalesforceApexTestRunResult implements OneGraphNode { """ apexTestResults(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestResultConnectionFilter """ + """ filter: SalesforceApexTestResultConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestResultSortByFieldEnum """ + """ sortByCustomField: SalesforceApexTestResultSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestResultSortByFieldEnum """ + """ sortByField: SalesforceApexTestResultSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ApexTestResults to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexTestResultsConnection customFields(""" @@ -222307,15 +224350,15 @@ type SalesforceApexLog implements OneGraphNode { """ apexTestResults(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestResultConnectionFilter """ + """ filter: SalesforceApexTestResultConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestResultSortByFieldEnum """ + """ sortByCustomField: SalesforceApexTestResultSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestResultSortByFieldEnum """ + """ sortByField: SalesforceApexTestResultSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ApexTestResults to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexTestResultsConnection customFields(""" @@ -222411,15 +224454,15 @@ type SalesforceApexTestResult implements OneGraphNode { """ apexTestResults(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestResultLimitsConnectionFilter """ + """ filter: SalesforceApexTestResultLimitsConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestResultLimitsSortByFieldEnum """ + """ sortByCustomField: SalesforceApexTestResultLimitsSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestResultLimitsSortByFieldEnum """ + """ sortByField: SalesforceApexTestResultLimitsSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ApexTestResultLimits to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexTestResultLimitssConnection customFields(""" @@ -222830,15 +224873,15 @@ type SalesforceAsyncApexJob implements OneGraphNode { """ apexTestQueueItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestQueueItemConnectionFilter """ + """ filter: SalesforceApexTestQueueItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum """ + """ sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestQueueItemSortByFieldEnum """ + """ sortByField: SalesforceApexTestQueueItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ApexTestQueueItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexTestQueueItemsConnection """ @@ -222846,15 +224889,15 @@ type SalesforceAsyncApexJob implements OneGraphNode { """ apexTestResults(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestResultConnectionFilter """ + """ filter: SalesforceApexTestResultConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestResultSortByFieldEnum """ + """ sortByCustomField: SalesforceApexTestResultSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestResultSortByFieldEnum """ + """ sortByField: SalesforceApexTestResultSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ApexTestResults to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexTestResultsConnection """ @@ -222862,15 +224905,15 @@ type SalesforceAsyncApexJob implements OneGraphNode { """ asyncApex(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestRunResultConnectionFilter """ + """ filter: SalesforceApexTestRunResultConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestRunResultSortByFieldEnum """ + """ sortByCustomField: SalesforceApexTestRunResultSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestRunResultSortByFieldEnum """ + """ sortByField: SalesforceApexTestRunResultSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ApexTestRunResults to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexTestRunResultsConnection """ @@ -222878,15 +224921,15 @@ type SalesforceAsyncApexJob implements OneGraphNode { """ asyncApexJobs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAsyncApexJobConnectionFilter """ + """ filter: SalesforceAsyncApexJobConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAsyncApexJobSortByFieldEnum """ + """ sortByCustomField: SalesforceAsyncApexJobSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAsyncApexJobSortByFieldEnum """ + """ sortByField: SalesforceAsyncApexJobSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AsyncApexJobs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAsyncApexJobsConnection """ @@ -222894,15 +224937,15 @@ type SalesforceAsyncApexJob implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -222978,15 +225021,15 @@ type SalesforceApexTestQueueItem implements OneGraphNode { """ apexTestResults(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestResultConnectionFilter """ + """ filter: SalesforceApexTestResultConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestResultSortByFieldEnum """ + """ sortByCustomField: SalesforceApexTestResultSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestResultSortByFieldEnum """ + """ sortByField: SalesforceApexTestResultSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ApexTestResults to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexTestResultsConnection """ @@ -222994,15 +225037,15 @@ type SalesforceApexTestQueueItem implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -223112,15 +225155,15 @@ type SalesforceApexClass implements OneGraphNode { """ apexTestQueueItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestQueueItemConnectionFilter """ + """ filter: SalesforceApexTestQueueItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum """ + """ sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestQueueItemSortByFieldEnum """ + """ sortByField: SalesforceApexTestQueueItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ApexTestQueueItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexTestQueueItemsConnection """ @@ -223128,15 +225171,15 @@ type SalesforceApexClass implements OneGraphNode { """ apexTestResults(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestResultConnectionFilter """ + """ filter: SalesforceApexTestResultConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestResultSortByFieldEnum """ + """ sortByCustomField: SalesforceApexTestResultSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestResultSortByFieldEnum """ + """ sortByField: SalesforceApexTestResultSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ApexTestResults to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexTestResultsConnection """ @@ -223144,15 +225187,15 @@ type SalesforceApexClass implements OneGraphNode { """ asyncApexJobs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAsyncApexJobConnectionFilter """ + """ filter: SalesforceAsyncApexJobConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAsyncApexJobSortByFieldEnum """ + """ sortByCustomField: SalesforceAsyncApexJobSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAsyncApexJobSortByFieldEnum """ + """ sortByField: SalesforceAsyncApexJobSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AsyncApexJobs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAsyncApexJobsConnection """ @@ -223160,15 +225203,15 @@ type SalesforceApexClass implements OneGraphNode { """ authProviders(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthProviderConnectionFilter """ + """ filter: SalesforceAuthProviderConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthProviderSortByFieldEnum """ + """ sortByCustomField: SalesforceAuthProviderSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthProviderSortByFieldEnum """ + """ sortByField: SalesforceAuthProviderSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AuthProviders to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAuthProvidersConnection """ @@ -223176,15 +225219,15 @@ type SalesforceApexClass implements OneGraphNode { """ emailServicesFunctions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailServicesFunctionConnectionFilter """ + """ filter: SalesforceEmailServicesFunctionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailServicesFunctionSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailServicesFunctionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailServicesFunctionSortByFieldEnum """ + """ sortByField: SalesforceEmailServicesFunctionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailServicesFunctions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailServicesFunctionsConnection """ @@ -223192,15 +225235,15 @@ type SalesforceApexClass implements OneGraphNode { """ externalDataSources(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceExternalDataSourceConnectionFilter """ + """ filter: SalesforceExternalDataSourceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum """ + """ sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceExternalDataSourceSortByFieldEnum """ + """ sortByField: SalesforceExternalDataSourceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ExternalDataSources to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceExternalDataSourcesConnection """ @@ -223208,15 +225251,15 @@ type SalesforceApexClass implements OneGraphNode { """ samlSsoConfigs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSamlSsoConfigConnectionFilter """ + """ filter: SalesforceSamlSsoConfigConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSamlSsoConfigSortByFieldEnum """ + """ sortByCustomField: SalesforceSamlSsoConfigSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSamlSsoConfigSortByFieldEnum """ + """ sortByField: SalesforceSamlSsoConfigSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SamlSsoConfigs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSamlSsoConfigsConnection """ @@ -223224,15 +225267,15 @@ type SalesforceApexClass implements OneGraphNode { """ setupEntityAccessItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSetupEntityAccessConnectionFilter """ + """ filter: SalesforceSetupEntityAccessConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum """ + """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum """ + """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSetupEntityAccesssConnection """ @@ -223240,15 +225283,15 @@ type SalesforceApexClass implements OneGraphNode { """ testSuiteMemberships(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTestSuiteMembershipConnectionFilter """ + """ filter: SalesforceTestSuiteMembershipConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTestSuiteMembershipSortByFieldEnum """ + """ sortByCustomField: SalesforceTestSuiteMembershipSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTestSuiteMembershipSortByFieldEnum """ + """ sortByField: SalesforceTestSuiteMembershipSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TestSuiteMemberships to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTestSuiteMembershipsConnection """ @@ -223256,15 +225299,15 @@ type SalesforceApexClass implements OneGraphNode { """ transactionSecurityPolicies(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTransactionSecurityPolicyConnectionFilter """ + """ filter: SalesforceTransactionSecurityPolicyConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTransactionSecurityPolicySortByFieldEnum """ + """ sortByCustomField: SalesforceTransactionSecurityPolicySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTransactionSecurityPolicySortByFieldEnum """ + """ sortByField: SalesforceTransactionSecurityPolicySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TransactionSecurityPolicies to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTransactionSecurityPolicysConnection customFields(""" @@ -223388,15 +225431,15 @@ type SalesforceAuthProvider implements OneGraphNode { """ authConfigProvidersPlural(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthConfigProvidersConnectionFilter """ + """ filter: SalesforceAuthConfigProvidersConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum """ + """ sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthConfigProvidersSortByFieldEnum """ + """ sortByField: SalesforceAuthConfigProvidersSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AuthConfigProviders to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAuthConfigProviderssConnection """ @@ -223404,15 +225447,15 @@ type SalesforceAuthProvider implements OneGraphNode { """ externalDataSources(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceExternalDataSourceConnectionFilter """ + """ filter: SalesforceExternalDataSourceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum """ + """ sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceExternalDataSourceSortByFieldEnum """ + """ sortByField: SalesforceExternalDataSourceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ExternalDataSources to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceExternalDataSourcesConnection """ @@ -223420,15 +225463,15 @@ type SalesforceAuthProvider implements OneGraphNode { """ externalDataUserAuths(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceExternalDataUserAuthConnectionFilter """ + """ filter: SalesforceExternalDataUserAuthConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum """ + """ sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceExternalDataUserAuthSortByFieldEnum """ + """ sortByField: SalesforceExternalDataUserAuthSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ExternalDataUserAuths to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceExternalDataUserAuthsConnection """ @@ -223436,15 +225479,15 @@ type SalesforceAuthProvider implements OneGraphNode { """ loginHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLoginHistoryConnectionFilter """ + """ filter: SalesforceLoginHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLoginHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceLoginHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLoginHistorySortByFieldEnum """ + """ sortByField: SalesforceLoginHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LoginHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLoginHistorysConnection """ @@ -223452,15 +225495,15 @@ type SalesforceAuthProvider implements OneGraphNode { """ namedCredentials(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNamedCredentialConnectionFilter """ + """ filter: SalesforceNamedCredentialConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNamedCredentialSortByFieldEnum """ + """ sortByCustomField: SalesforceNamedCredentialSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNamedCredentialSortByFieldEnum """ + """ sortByField: SalesforceNamedCredentialSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of NamedCredentials to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceNamedCredentialsConnection customFields(""" @@ -223588,15 +225631,15 @@ type SalesforceExternalDataSource implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -223604,15 +225647,15 @@ type SalesforceExternalDataSource implements OneGraphNode { """ userAuths(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceExternalDataUserAuthConnectionFilter """ + """ filter: SalesforceExternalDataUserAuthConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum """ + """ sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceExternalDataUserAuthSortByFieldEnum """ + """ sortByField: SalesforceExternalDataUserAuthSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ExternalDataUserAuths to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceExternalDataUserAuthsConnection """ @@ -223620,15 +225663,15 @@ type SalesforceExternalDataSource implements OneGraphNode { """ product2s(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProduct2ConnectionFilter """ + """ filter: SalesforceProduct2ConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProduct2SortByFieldEnum """ + """ sortByCustomField: SalesforceProduct2SortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProduct2SortByFieldEnum """ + """ sortByField: SalesforceProduct2SortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Product2s to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProduct2sConnection """ @@ -223636,15 +225679,15 @@ type SalesforceExternalDataSource implements OneGraphNode { """ setupEntityAccessItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSetupEntityAccessConnectionFilter """ + """ filter: SalesforceSetupEntityAccessConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum """ + """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum """ + """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSetupEntityAccesssConnection customFields(""" @@ -223756,15 +225799,15 @@ type SalesforceProduct2 implements OneGraphNode { """ assets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetConnectionFilter """ + """ filter: SalesforceAssetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetSortByFieldEnum """ + """ sortByCustomField: SalesforceAssetSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetSortByFieldEnum """ + """ sortByField: SalesforceAssetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Assets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetsConnection """ @@ -223772,15 +225815,15 @@ type SalesforceProduct2 implements OneGraphNode { """ attachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ + """ filter: SalesforceAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Attachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAttachmentsConnection """ @@ -223788,15 +225831,15 @@ type SalesforceProduct2 implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -223804,15 +225847,15 @@ type SalesforceProduct2 implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -223820,15 +225863,15 @@ type SalesforceProduct2 implements OneGraphNode { """ emails(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ + """ filter: SalesforceEmailMessageConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailMessagesConnection """ @@ -223836,15 +225879,15 @@ type SalesforceProduct2 implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -223852,15 +225895,15 @@ type SalesforceProduct2 implements OneGraphNode { """ events(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ + """ filter: SalesforceEventConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ + """ sortByField: SalesforceEventSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Events to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventsConnection """ @@ -223868,15 +225911,15 @@ type SalesforceProduct2 implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -223884,15 +225927,15 @@ type SalesforceProduct2 implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -223900,15 +225943,15 @@ type SalesforceProduct2 implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -223916,15 +225959,15 @@ type SalesforceProduct2 implements OneGraphNode { """ notes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNoteConnectionFilter """ + """ filter: SalesforceNoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNoteSortByFieldEnum """ + """ sortByCustomField: SalesforceNoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNoteSortByFieldEnum """ + """ sortByField: SalesforceNoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Notes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceNotesConnection """ @@ -223932,15 +225975,15 @@ type SalesforceProduct2 implements OneGraphNode { """ opportunityLineItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityLineItemConnectionFilter """ + """ filter: SalesforceOpportunityLineItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityLineItemSortByFieldEnum """ + """ sortByField: SalesforceOpportunityLineItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityLineItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityLineItemsConnection """ @@ -223948,15 +225991,15 @@ type SalesforceProduct2 implements OneGraphNode { """ orderItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemConnectionFilter """ + """ filter: SalesforceOrderItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderItemSortByFieldEnum """ + """ sortByCustomField: SalesforceOrderItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemSortByFieldEnum """ + """ sortByField: SalesforceOrderItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrderItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderItemsConnection """ @@ -223964,15 +226007,15 @@ type SalesforceProduct2 implements OneGraphNode { """ pricebookEntries(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePricebookEntryConnectionFilter """ + """ filter: SalesforcePricebookEntryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePricebookEntrySortByFieldEnum """ + """ sortByCustomField: SalesforcePricebookEntrySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePricebookEntrySortByFieldEnum """ + """ sortByField: SalesforcePricebookEntrySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of PricebookEntries to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePricebookEntrysConnection """ @@ -223980,15 +226023,15 @@ type SalesforceProduct2 implements OneGraphNode { """ processInstances(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ + """ filter: SalesforceProcessInstanceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstancesConnection """ @@ -223996,15 +226039,15 @@ type SalesforceProduct2 implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProduct2FeedConnectionFilter """ + """ filter: SalesforceProduct2FeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProduct2FeedSortByFieldEnum """ + """ sortByCustomField: SalesforceProduct2FeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProduct2FeedSortByFieldEnum """ + """ sortByField: SalesforceProduct2FeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Product2Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProduct2FeedsConnection """ @@ -224012,15 +226055,15 @@ type SalesforceProduct2 implements OneGraphNode { """ histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProduct2HistoryConnectionFilter """ + """ filter: SalesforceProduct2HistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProduct2HistorySortByFieldEnum """ + """ sortByCustomField: SalesforceProduct2HistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProduct2HistorySortByFieldEnum """ + """ sortByField: SalesforceProduct2HistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Product2Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProduct2HistorysConnection """ @@ -224028,15 +226071,15 @@ type SalesforceProduct2 implements OneGraphNode { """ tasks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ + """ filter: SalesforceTaskConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ + """ sortByField: SalesforceTaskSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Tasks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTasksConnection customFields(""" @@ -224138,15 +226181,15 @@ type SalesforceAttachment implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -224280,15 +226323,15 @@ type SalesforceSolution implements OneGraphNode { """ attachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ + """ filter: SalesforceAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Attachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAttachmentsConnection """ @@ -224296,15 +226339,15 @@ type SalesforceSolution implements OneGraphNode { """ caseSolutions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseSolutionConnectionFilter """ + """ filter: SalesforceCaseSolutionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseSolutionSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseSolutionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseSolutionSortByFieldEnum """ + """ sortByField: SalesforceCaseSolutionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseSolutions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseSolutionsConnection """ @@ -224312,15 +226355,15 @@ type SalesforceSolution implements OneGraphNode { """ categoryDatas(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCategoryDataConnectionFilter """ + """ filter: SalesforceCategoryDataConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCategoryDataSortByFieldEnum """ + """ sortByCustomField: SalesforceCategoryDataSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCategoryDataSortByFieldEnum """ + """ sortByField: SalesforceCategoryDataSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CategoryDatas to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCategoryDatasConnection """ @@ -224328,15 +226371,15 @@ type SalesforceSolution implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -224344,15 +226387,15 @@ type SalesforceSolution implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -224360,15 +226403,15 @@ type SalesforceSolution implements OneGraphNode { """ emails(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ + """ filter: SalesforceEmailMessageConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailMessagesConnection """ @@ -224376,15 +226419,15 @@ type SalesforceSolution implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -224392,15 +226435,15 @@ type SalesforceSolution implements OneGraphNode { """ events(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ + """ filter: SalesforceEventConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ + """ sortByField: SalesforceEventSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Events to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventsConnection """ @@ -224408,15 +226451,15 @@ type SalesforceSolution implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -224424,15 +226467,15 @@ type SalesforceSolution implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -224440,15 +226483,15 @@ type SalesforceSolution implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -224456,15 +226499,15 @@ type SalesforceSolution implements OneGraphNode { """ processInstances(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ + """ filter: SalesforceProcessInstanceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstancesConnection """ @@ -224472,15 +226515,15 @@ type SalesforceSolution implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionFeedConnectionFilter """ + """ filter: SalesforceSolutionFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSolutionFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceSolutionFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionFeedSortByFieldEnum """ + """ sortByField: SalesforceSolutionFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SolutionFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSolutionFeedsConnection """ @@ -224488,15 +226531,15 @@ type SalesforceSolution implements OneGraphNode { """ histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionHistoryConnectionFilter """ + """ filter: SalesforceSolutionHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSolutionHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceSolutionHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionHistorySortByFieldEnum """ + """ sortByField: SalesforceSolutionHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SolutionHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSolutionHistorysConnection """ @@ -224504,15 +226547,15 @@ type SalesforceSolution implements OneGraphNode { """ tasks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ + """ filter: SalesforceTaskConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ + """ sortByField: SalesforceTaskSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Tasks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTasksConnection """ @@ -224520,15 +226563,15 @@ type SalesforceSolution implements OneGraphNode { """ topicAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ + """ filter: SalesforceTopicAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicAssignmentsConnection """ @@ -224536,15 +226579,15 @@ type SalesforceSolution implements OneGraphNode { """ votes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVoteConnectionFilter """ + """ filter: SalesforceVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVoteSortByFieldEnum """ + """ sortByField: SalesforceVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Votes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceVotesConnection customFields(""" @@ -224752,15 +226795,15 @@ type SalesforceTask implements OneGraphNode { """ attachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ + """ filter: SalesforceAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Attachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAttachmentsConnection """ @@ -224768,15 +226811,15 @@ type SalesforceTask implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -224784,15 +226827,15 @@ type SalesforceTask implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -224800,15 +226843,15 @@ type SalesforceTask implements OneGraphNode { """ emailMessages(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ + """ filter: SalesforceEmailMessageConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailMessagesConnection """ @@ -224816,15 +226859,15 @@ type SalesforceTask implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -224832,15 +226875,15 @@ type SalesforceTask implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -224848,15 +226891,15 @@ type SalesforceTask implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -224864,15 +226907,15 @@ type SalesforceTask implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -224880,15 +226923,15 @@ type SalesforceTask implements OneGraphNode { """ recurringTasks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ + """ filter: SalesforceTaskConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ + """ sortByField: SalesforceTaskSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Tasks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTasksConnection """ @@ -224896,15 +226939,15 @@ type SalesforceTask implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskFeedConnectionFilter """ + """ filter: SalesforceTaskFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceTaskFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskFeedSortByFieldEnum """ + """ sortByField: SalesforceTaskFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TaskFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTaskFeedsConnection """ @@ -224912,15 +226955,15 @@ type SalesforceTask implements OneGraphNode { """ topicAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ + """ filter: SalesforceTopicAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicAssignmentsConnection customFields(""" @@ -224982,15 +227025,15 @@ type SalesforceEntitySubscription implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -225406,15 +227449,15 @@ type SalesforceReport implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -225422,15 +227465,15 @@ type SalesforceReport implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -225438,15 +227481,15 @@ type SalesforceReport implements OneGraphNode { """ dashboardComponents(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardComponentConnectionFilter """ + """ filter: SalesforceDashboardComponentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDashboardComponentSortByFieldEnum """ + """ sortByCustomField: SalesforceDashboardComponentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardComponentSortByFieldEnum """ + """ sortByField: SalesforceDashboardComponentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DashboardComponents to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDashboardComponentsConnection """ @@ -225454,15 +227497,15 @@ type SalesforceReport implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -225470,15 +227513,15 @@ type SalesforceReport implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -225486,15 +227529,15 @@ type SalesforceReport implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -225502,15 +227545,15 @@ type SalesforceReport implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -225518,15 +227561,15 @@ type SalesforceReport implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceReportFeedConnectionFilter """ + """ filter: SalesforceReportFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceReportFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceReportFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceReportFeedSortByFieldEnum """ + """ sortByField: SalesforceReportFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ReportFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceReportFeedsConnection customFields(""" @@ -225574,15 +227617,15 @@ type SalesforceDashboardComponent implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -225590,15 +227633,15 @@ type SalesforceDashboardComponent implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -225606,15 +227649,15 @@ type SalesforceDashboardComponent implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardComponentFeedConnectionFilter """ + """ filter: SalesforceDashboardComponentFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDashboardComponentFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceDashboardComponentFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardComponentFeedSortByFieldEnum """ + """ sortByField: SalesforceDashboardComponentFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DashboardComponentFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDashboardComponentFeedsConnection """ @@ -225622,15 +227665,15 @@ type SalesforceDashboardComponent implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -225638,15 +227681,15 @@ type SalesforceDashboardComponent implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -225654,15 +227697,15 @@ type SalesforceDashboardComponent implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -225670,15 +227713,15 @@ type SalesforceDashboardComponent implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -225908,15 +227951,15 @@ type SalesforceDashboard implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -225924,15 +227967,15 @@ type SalesforceDashboard implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -225940,15 +227983,15 @@ type SalesforceDashboard implements OneGraphNode { """ dashboardComponents(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardComponentConnectionFilter """ + """ filter: SalesforceDashboardComponentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDashboardComponentSortByFieldEnum """ + """ sortByCustomField: SalesforceDashboardComponentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardComponentSortByFieldEnum """ + """ sortByField: SalesforceDashboardComponentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DashboardComponents to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDashboardComponentsConnection """ @@ -225956,15 +227999,15 @@ type SalesforceDashboard implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardFeedConnectionFilter """ + """ filter: SalesforceDashboardFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDashboardFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceDashboardFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardFeedSortByFieldEnum """ + """ sortByField: SalesforceDashboardFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DashboardFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDashboardFeedsConnection """ @@ -225972,15 +228015,15 @@ type SalesforceDashboard implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -225988,15 +228031,15 @@ type SalesforceDashboard implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -226004,15 +228047,15 @@ type SalesforceDashboard implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -226020,15 +228063,15 @@ type SalesforceDashboard implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -226130,15 +228173,15 @@ type SalesforceFolder implements OneGraphNode { """ dashboards(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardConnectionFilter """ + """ filter: SalesforceDashboardConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDashboardSortByFieldEnum """ + """ sortByCustomField: SalesforceDashboardSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardSortByFieldEnum """ + """ sortByField: SalesforceDashboardSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Dashboards to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDashboardsConnection """ @@ -226146,15 +228189,15 @@ type SalesforceFolder implements OneGraphNode { """ documents(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDocumentConnectionFilter """ + """ filter: SalesforceDocumentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDocumentSortByFieldEnum """ + """ sortByCustomField: SalesforceDocumentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDocumentSortByFieldEnum """ + """ sortByField: SalesforceDocumentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Documents to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDocumentsConnection """ @@ -226162,15 +228205,15 @@ type SalesforceFolder implements OneGraphNode { """ emailTemplates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailTemplateConnectionFilter """ + """ filter: SalesforceEmailTemplateConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailTemplateSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailTemplateSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailTemplateSortByFieldEnum """ + """ sortByField: SalesforceEmailTemplateSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailTemplates to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailTemplatesConnection """ @@ -226178,15 +228221,15 @@ type SalesforceFolder implements OneGraphNode { """ reports(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceReportConnectionFilter """ + """ filter: SalesforceReportConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceReportSortByFieldEnum """ + """ sortByCustomField: SalesforceReportSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceReportSortByFieldEnum """ + """ sortByField: SalesforceReportSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Reports to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceReportsConnection customFields(""" @@ -226324,15 +228367,15 @@ type SalesforceDocument implements OneGraphNode { """ customBrandAssets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomBrandAssetConnectionFilter """ + """ filter: SalesforceCustomBrandAssetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum """ + """ sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomBrandAssetSortByFieldEnum """ + """ sortByField: SalesforceCustomBrandAssetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CustomBrandAssets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCustomBrandAssetsConnection """ @@ -226340,15 +228383,15 @@ type SalesforceDocument implements OneGraphNode { """ documentAttachmentMaps(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDocumentAttachmentMapConnectionFilter """ + """ filter: SalesforceDocumentAttachmentMapConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDocumentAttachmentMapSortByFieldEnum """ + """ sortByCustomField: SalesforceDocumentAttachmentMapSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum """ + """ sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DocumentAttachmentMaps to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDocumentAttachmentMapsConnection """ @@ -226356,15 +228399,15 @@ type SalesforceDocument implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -227118,15 +229161,15 @@ type SalesforceStamp implements OneGraphNode { """ customBrands(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomBrandConnectionFilter """ + """ filter: SalesforceCustomBrandConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomBrandSortByFieldEnum """ + """ sortByCustomField: SalesforceCustomBrandSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomBrandSortByFieldEnum """ + """ sortByField: SalesforceCustomBrandSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CustomBrands to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCustomBrandsConnection """ @@ -227134,15 +229177,15 @@ type SalesforceStamp implements OneGraphNode { """ stampAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStampAssignmentConnectionFilter """ + """ filter: SalesforceStampAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceStampAssignmentSortByFieldEnum """ + """ sortByCustomField: SalesforceStampAssignmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStampAssignmentSortByFieldEnum """ + """ sortByField: SalesforceStampAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of StampAssignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceStampAssignmentsConnection customFields(""" @@ -227204,15 +229247,15 @@ type SalesforceCustomBrand implements OneGraphNode { """ customBrandAssets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomBrandAssetConnectionFilter """ + """ filter: SalesforceCustomBrandAssetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum """ + """ sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomBrandAssetSortByFieldEnum """ + """ sortByField: SalesforceCustomBrandAssetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CustomBrandAssets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCustomBrandAssetsConnection customFields(""" @@ -227593,15 +229636,15 @@ type SalesforceContentAsset implements OneGraphNode { """ chatterExtensions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceChatterExtensionConnectionFilter """ + """ filter: SalesforceChatterExtensionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceChatterExtensionSortByFieldEnum """ + """ sortByCustomField: SalesforceChatterExtensionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceChatterExtensionSortByFieldEnum """ + """ sortByField: SalesforceChatterExtensionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ChatterExtensions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceChatterExtensionsConnection """ @@ -227609,15 +229652,15 @@ type SalesforceContentAsset implements OneGraphNode { """ contentDocuments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentConnectionFilter """ + """ filter: SalesforceContentDocumentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocuments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentsConnection """ @@ -227625,15 +229668,15 @@ type SalesforceContentAsset implements OneGraphNode { """ customBrandAssets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomBrandAssetConnectionFilter """ + """ filter: SalesforceCustomBrandAssetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum """ + """ sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomBrandAssetSortByFieldEnum """ + """ sortByField: SalesforceCustomBrandAssetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CustomBrandAssets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCustomBrandAssetsConnection customFields(""" @@ -227749,15 +229792,15 @@ type SalesforceChatterExtension implements OneGraphNode { """ chatterExtensionConfigs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceChatterExtensionConfigConnectionFilter """ + """ filter: SalesforceChatterExtensionConfigConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceChatterExtensionConfigSortByFieldEnum """ + """ sortByCustomField: SalesforceChatterExtensionConfigSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceChatterExtensionConfigSortByFieldEnum """ + """ sortByField: SalesforceChatterExtensionConfigSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ChatterExtensionConfigs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceChatterExtensionConfigsConnection customFields(""" @@ -228135,15 +230178,15 @@ type SalesforceAuraDefinitionBundle implements OneGraphNode { """ auraDefinitions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuraDefinitionConnectionFilter """ + """ filter: SalesforceAuraDefinitionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuraDefinitionSortByFieldEnum """ + """ sortByCustomField: SalesforceAuraDefinitionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuraDefinitionSortByFieldEnum """ + """ sortByField: SalesforceAuraDefinitionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AuraDefinitions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAuraDefinitionsConnection """ @@ -228151,15 +230194,15 @@ type SalesforceAuraDefinitionBundle implements OneGraphNode { """ chatterExtensions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceChatterExtensionConnectionFilter """ + """ filter: SalesforceChatterExtensionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceChatterExtensionSortByFieldEnum """ + """ sortByCustomField: SalesforceChatterExtensionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceChatterExtensionSortByFieldEnum """ + """ sortByField: SalesforceChatterExtensionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ChatterExtensions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceChatterExtensionsConnection customFields(""" @@ -228292,15 +230335,15 @@ type SalesforceBusinessProcess implements OneGraphNode { """ recordTypes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceRecordTypeConnectionFilter """ + """ filter: SalesforceRecordTypeConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceRecordTypeSortByFieldEnum """ + """ sortByCustomField: SalesforceRecordTypeSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceRecordTypeSortByFieldEnum """ + """ sortByField: SalesforceRecordTypeSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of RecordTypes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceRecordTypesConnection customFields(""" @@ -228388,15 +230431,15 @@ type SalesforceRecordType implements OneGraphNode { """ campaigns(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignConnectionFilter """ + """ filter: SalesforceCampaignConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignSortByFieldEnum """ + """ sortByCustomField: SalesforceCampaignSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignSortByFieldEnum """ + """ sortByField: SalesforceCampaignSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Campaigns to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignsConnection """ @@ -228404,15 +230447,15 @@ type SalesforceRecordType implements OneGraphNode { """ contentWorkspaces(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceConnectionFilter """ + """ filter: SalesforceContentWorkspaceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceSortByFieldEnum """ + """ sortByCustomField: SalesforceContentWorkspaceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceSortByFieldEnum """ + """ sortByField: SalesforceContentWorkspaceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentWorkspaces to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentWorkspacesConnection customFields(""" @@ -228524,15 +230567,15 @@ type SalesforceContentWorkspace implements OneGraphNode { """ contentDocuments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentConnectionFilter """ + """ filter: SalesforceContentDocumentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocuments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentsConnection """ @@ -228540,15 +230583,15 @@ type SalesforceContentWorkspace implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -228556,15 +230599,15 @@ type SalesforceContentWorkspace implements OneGraphNode { """ contentFolderLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderLinkConnectionFilter """ + """ filter: SalesforceContentFolderLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentFolderLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentFolderLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderLinkSortByFieldEnum """ + """ sortByField: SalesforceContentFolderLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentFolderLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentFolderLinksConnection """ @@ -228572,15 +230615,15 @@ type SalesforceContentWorkspace implements OneGraphNode { """ contentNotifications(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentNotificationConnectionFilter """ + """ filter: SalesforceContentNotificationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentNotificationSortByFieldEnum """ + """ sortByCustomField: SalesforceContentNotificationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentNotificationSortByFieldEnum """ + """ sortByField: SalesforceContentNotificationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentNotifications to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentNotificationsConnection """ @@ -228588,15 +230631,15 @@ type SalesforceContentWorkspace implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -228604,15 +230647,15 @@ type SalesforceContentWorkspace implements OneGraphNode { """ contentWorkspaceDocs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceDocConnectionFilter """ + """ filter: SalesforceContentWorkspaceDocConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceDocSortByFieldEnum """ + """ sortByCustomField: SalesforceContentWorkspaceDocSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceDocSortByFieldEnum """ + """ sortByField: SalesforceContentWorkspaceDocSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentWorkspaceDocs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentWorkspaceDocsConnection """ @@ -228620,15 +230663,15 @@ type SalesforceContentWorkspace implements OneGraphNode { """ contentWorkspaceMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceMemberConnectionFilter """ + """ filter: SalesforceContentWorkspaceMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum """ + """ sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum """ + """ sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentWorkspaceMembers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentWorkspaceMembersConnection """ @@ -228636,15 +230679,15 @@ type SalesforceContentWorkspace implements OneGraphNode { """ contentWorkspaceSubscriptions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceSubscriptionConnectionFilter """ + """ filter: SalesforceContentWorkspaceSubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum """ + """ sortByField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentWorkspaceSubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentWorkspaceSubscriptionsConnection customFields(""" @@ -228796,15 +230839,15 @@ type SalesforceContentDocument implements OneGraphNode { """ contentAssets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentAssetConnectionFilter """ + """ filter: SalesforceContentAssetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentAssetSortByFieldEnum """ + """ sortByCustomField: SalesforceContentAssetSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentAssetSortByFieldEnum """ + """ sortByField: SalesforceContentAssetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentAssets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentAssetsConnection """ @@ -228812,15 +230855,15 @@ type SalesforceContentDocument implements OneGraphNode { """ contentDistributions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ + """ filter: SalesforceContentDistributionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDistributionsConnection """ @@ -228828,15 +230871,15 @@ type SalesforceContentDocument implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentFeedConnectionFilter """ + """ filter: SalesforceContentDocumentFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentFeedSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentFeedsConnection """ @@ -228844,15 +230887,15 @@ type SalesforceContentDocument implements OneGraphNode { """ histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentHistoryConnectionFilter """ + """ filter: SalesforceContentDocumentHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentHistorySortByFieldEnum """ + """ sortByField: SalesforceContentDocumentHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentHistorysConnection """ @@ -228860,15 +230903,15 @@ type SalesforceContentDocument implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -228876,15 +230919,15 @@ type SalesforceContentDocument implements OneGraphNode { """ contentDocumentSubscriptions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentSubscriptionConnectionFilter """ + """ filter: SalesforceContentDocumentSubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentSubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentSubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentSubscriptionSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentSubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentSubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentSubscriptionsConnection """ @@ -228892,15 +230935,15 @@ type SalesforceContentDocument implements OneGraphNode { """ contentFolderMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderMemberConnectionFilter """ + """ filter: SalesforceContentFolderMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentFolderMemberSortByFieldEnum """ + """ sortByCustomField: SalesforceContentFolderMemberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderMemberSortByFieldEnum """ + """ sortByField: SalesforceContentFolderMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentFolderMembers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentFolderMembersConnection """ @@ -228908,15 +230951,15 @@ type SalesforceContentDocument implements OneGraphNode { """ contentNotifications(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentNotificationConnectionFilter """ + """ filter: SalesforceContentNotificationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentNotificationSortByFieldEnum """ + """ sortByCustomField: SalesforceContentNotificationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentNotificationSortByFieldEnum """ + """ sortByField: SalesforceContentNotificationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentNotifications to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentNotificationsConnection """ @@ -228924,15 +230967,15 @@ type SalesforceContentDocument implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -228940,15 +230983,15 @@ type SalesforceContentDocument implements OneGraphNode { """ contentVersionComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionCommentConnectionFilter """ + """ filter: SalesforceContentVersionCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionCommentSortByFieldEnum """ + """ sortByField: SalesforceContentVersionCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersionComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionCommentsConnection """ @@ -228956,15 +230999,15 @@ type SalesforceContentDocument implements OneGraphNode { """ contentWorkspaceDocs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceDocConnectionFilter """ + """ filter: SalesforceContentWorkspaceDocConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceDocSortByFieldEnum """ + """ sortByCustomField: SalesforceContentWorkspaceDocSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceDocSortByFieldEnum """ + """ sortByField: SalesforceContentWorkspaceDocSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentWorkspaceDocs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentWorkspaceDocsConnection """ @@ -228972,15 +231015,15 @@ type SalesforceContentDocument implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -228988,15 +231031,15 @@ type SalesforceContentDocument implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -229004,15 +231047,15 @@ type SalesforceContentDocument implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -229020,15 +231063,15 @@ type SalesforceContentDocument implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -229036,15 +231079,15 @@ type SalesforceContentDocument implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -229052,15 +231095,15 @@ type SalesforceContentDocument implements OneGraphNode { """ topicAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ + """ filter: SalesforceTopicAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicAssignmentsConnection customFields(""" @@ -229284,15 +231327,15 @@ type SalesforceContentVersion implements OneGraphNode { """ accountFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountFeedConnectionFilter """ + """ filter: SalesforceAccountFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceAccountFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountFeedSortByFieldEnum """ + """ sortByField: SalesforceAccountFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AccountFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountFeedsConnection """ @@ -229300,15 +231343,15 @@ type SalesforceContentVersion implements OneGraphNode { """ assetFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetFeedConnectionFilter """ + """ filter: SalesforceAssetFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceAssetFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetFeedSortByFieldEnum """ + """ sortByField: SalesforceAssetFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AssetFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetFeedsConnection """ @@ -229316,15 +231359,15 @@ type SalesforceContentVersion implements OneGraphNode { """ assetRelationshipFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipFeedConnectionFilter """ + """ filter: SalesforceAssetRelationshipFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetRelationshipFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceAssetRelationshipFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum """ + """ sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AssetRelationshipFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetRelationshipFeedsConnection """ @@ -229332,15 +231375,15 @@ type SalesforceContentVersion implements OneGraphNode { """ campaignFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignFeedConnectionFilter """ + """ filter: SalesforceCampaignFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceCampaignFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignFeedSortByFieldEnum """ + """ sortByField: SalesforceCampaignFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CampaignFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignFeedsConnection """ @@ -229348,15 +231391,15 @@ type SalesforceContentVersion implements OneGraphNode { """ caseFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseFeedConnectionFilter """ + """ filter: SalesforceCaseFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseFeedSortByFieldEnum """ + """ sortByField: SalesforceCaseFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseFeedsConnection """ @@ -229364,15 +231407,15 @@ type SalesforceContentVersion implements OneGraphNode { """ collaborationGroupFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupFeedConnectionFilter """ + """ filter: SalesforceCollaborationGroupFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationGroupFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationGroupFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupFeedsConnection """ @@ -229380,15 +231423,15 @@ type SalesforceContentVersion implements OneGraphNode { """ contactFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactFeedConnectionFilter """ + """ filter: SalesforceContactFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceContactFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactFeedSortByFieldEnum """ + """ sortByField: SalesforceContactFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContactFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContactFeedsConnection """ @@ -229396,15 +231439,15 @@ type SalesforceContentVersion implements OneGraphNode { """ contentDistributions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ + """ filter: SalesforceContentDistributionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDistributionsConnection """ @@ -229412,15 +231455,15 @@ type SalesforceContentVersion implements OneGraphNode { """ contentDocuments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentConnectionFilter """ + """ filter: SalesforceContentDocumentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocuments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentsConnection """ @@ -229428,15 +231471,15 @@ type SalesforceContentVersion implements OneGraphNode { """ contentDocumentFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentFeedConnectionFilter """ + """ filter: SalesforceContentDocumentFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentFeedSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentFeedsConnection """ @@ -229444,15 +231487,15 @@ type SalesforceContentVersion implements OneGraphNode { """ contentNotifications(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentNotificationConnectionFilter """ + """ filter: SalesforceContentNotificationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentNotificationSortByFieldEnum """ + """ sortByCustomField: SalesforceContentNotificationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentNotificationSortByFieldEnum """ + """ sortByField: SalesforceContentNotificationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentNotifications to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentNotificationsConnection """ @@ -229460,15 +231503,15 @@ type SalesforceContentVersion implements OneGraphNode { """ contentVersionComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionCommentConnectionFilter """ + """ filter: SalesforceContentVersionCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionCommentSortByFieldEnum """ + """ sortByField: SalesforceContentVersionCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersionComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionCommentsConnection """ @@ -229476,15 +231519,15 @@ type SalesforceContentVersion implements OneGraphNode { """ histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionHistoryConnectionFilter """ + """ filter: SalesforceContentVersionHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionHistorySortByFieldEnum """ + """ sortByField: SalesforceContentVersionHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersionHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionHistorysConnection """ @@ -229492,15 +231535,15 @@ type SalesforceContentVersion implements OneGraphNode { """ contentVersionRatings(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionRatingConnectionFilter """ + """ filter: SalesforceContentVersionRatingConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionRatingSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionRatingSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionRatingSortByFieldEnum """ + """ sortByField: SalesforceContentVersionRatingSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersionRatings to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionRatingsConnection """ @@ -229508,15 +231551,15 @@ type SalesforceContentVersion implements OneGraphNode { """ contractFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractFeedConnectionFilter """ + """ filter: SalesforceContractFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceContractFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractFeedSortByFieldEnum """ + """ sortByField: SalesforceContractFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContractFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContractFeedsConnection """ @@ -229524,15 +231567,15 @@ type SalesforceContentVersion implements OneGraphNode { """ dashboardComponentFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardComponentFeedConnectionFilter """ + """ filter: SalesforceDashboardComponentFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDashboardComponentFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceDashboardComponentFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardComponentFeedSortByFieldEnum """ + """ sortByField: SalesforceDashboardComponentFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DashboardComponentFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDashboardComponentFeedsConnection """ @@ -229540,15 +231583,15 @@ type SalesforceContentVersion implements OneGraphNode { """ dashboardFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardFeedConnectionFilter """ + """ filter: SalesforceDashboardFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDashboardFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceDashboardFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardFeedSortByFieldEnum """ + """ sortByField: SalesforceDashboardFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DashboardFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDashboardFeedsConnection """ @@ -229556,15 +231599,15 @@ type SalesforceContentVersion implements OneGraphNode { """ eventFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventFeedConnectionFilter """ + """ filter: SalesforceEventFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceEventFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventFeedSortByFieldEnum """ + """ sortByField: SalesforceEventFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EventFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventFeedsConnection """ @@ -229572,15 +231615,15 @@ type SalesforceContentVersion implements OneGraphNode { """ feedAttachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ + """ filter: SalesforceFeedAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedAttachmentsConnection """ @@ -229588,15 +231631,15 @@ type SalesforceContentVersion implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -229604,15 +231647,15 @@ type SalesforceContentVersion implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -229620,15 +231663,15 @@ type SalesforceContentVersion implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -229636,15 +231679,15 @@ type SalesforceContentVersion implements OneGraphNode { """ leadFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadFeedConnectionFilter """ + """ filter: SalesforceLeadFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceLeadFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadFeedSortByFieldEnum """ + """ sortByField: SalesforceLeadFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LeadFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadFeedsConnection """ @@ -229652,15 +231695,15 @@ type SalesforceContentVersion implements OneGraphNode { """ opportunityFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityFeedConnectionFilter """ + """ filter: SalesforceOpportunityFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityFeedSortByFieldEnum """ + """ sortByField: SalesforceOpportunityFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityFeedsConnection """ @@ -229668,15 +231711,15 @@ type SalesforceContentVersion implements OneGraphNode { """ orderFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderFeedConnectionFilter """ + """ filter: SalesforceOrderFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceOrderFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderFeedSortByFieldEnum """ + """ sortByField: SalesforceOrderFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrderFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderFeedsConnection """ @@ -229684,15 +231727,15 @@ type SalesforceContentVersion implements OneGraphNode { """ orderItemFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemFeedConnectionFilter """ + """ filter: SalesforceOrderItemFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderItemFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceOrderItemFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemFeedSortByFieldEnum """ + """ sortByField: SalesforceOrderItemFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrderItemFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderItemFeedsConnection """ @@ -229700,15 +231743,15 @@ type SalesforceContentVersion implements OneGraphNode { """ product2Feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProduct2FeedConnectionFilter """ + """ filter: SalesforceProduct2FeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProduct2FeedSortByFieldEnum """ + """ sortByCustomField: SalesforceProduct2FeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProduct2FeedSortByFieldEnum """ + """ sortByField: SalesforceProduct2FeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Product2Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProduct2FeedsConnection """ @@ -229716,15 +231759,15 @@ type SalesforceContentVersion implements OneGraphNode { """ reportFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceReportFeedConnectionFilter """ + """ filter: SalesforceReportFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceReportFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceReportFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceReportFeedSortByFieldEnum """ + """ sortByField: SalesforceReportFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ReportFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceReportFeedsConnection """ @@ -229732,15 +231775,15 @@ type SalesforceContentVersion implements OneGraphNode { """ siteFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSiteFeedConnectionFilter """ + """ filter: SalesforceSiteFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSiteFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceSiteFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSiteFeedSortByFieldEnum """ + """ sortByField: SalesforceSiteFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SiteFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSiteFeedsConnection """ @@ -229748,15 +231791,15 @@ type SalesforceContentVersion implements OneGraphNode { """ solutionFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionFeedConnectionFilter """ + """ filter: SalesforceSolutionFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSolutionFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceSolutionFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionFeedSortByFieldEnum """ + """ sortByField: SalesforceSolutionFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SolutionFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSolutionFeedsConnection """ @@ -229764,15 +231807,15 @@ type SalesforceContentVersion implements OneGraphNode { """ taskFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskFeedConnectionFilter """ + """ filter: SalesforceTaskFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceTaskFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskFeedSortByFieldEnum """ + """ sortByField: SalesforceTaskFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TaskFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTaskFeedsConnection """ @@ -229780,15 +231823,15 @@ type SalesforceContentVersion implements OneGraphNode { """ topicFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicFeedConnectionFilter """ + """ filter: SalesforceTopicFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicFeedSortByFieldEnum """ + """ sortByField: SalesforceTopicFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TopicFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicFeedsConnection """ @@ -229796,15 +231839,15 @@ type SalesforceContentVersion implements OneGraphNode { """ userFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserFeedConnectionFilter """ + """ filter: SalesforceUserFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceUserFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserFeedSortByFieldEnum """ + """ sortByField: SalesforceUserFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserFeedsConnection customFields(""" @@ -234213,15 +236256,15 @@ type SalesforceTopic implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -234229,15 +236272,15 @@ type SalesforceTopic implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -234245,15 +236288,15 @@ type SalesforceTopic implements OneGraphNode { """ customBrands(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomBrandConnectionFilter """ + """ filter: SalesforceCustomBrandConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomBrandSortByFieldEnum """ + """ sortByCustomField: SalesforceCustomBrandSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomBrandSortByFieldEnum """ + """ sortByField: SalesforceCustomBrandSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CustomBrands to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCustomBrandsConnection """ @@ -234261,15 +236304,15 @@ type SalesforceTopic implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -234277,15 +236320,15 @@ type SalesforceTopic implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -234293,15 +236336,15 @@ type SalesforceTopic implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -234309,15 +236352,15 @@ type SalesforceTopic implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -234325,15 +236368,15 @@ type SalesforceTopic implements OneGraphNode { """ knowledgeableUsers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceKnowledgeableUserConnectionFilter """ + """ filter: SalesforceKnowledgeableUserConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceKnowledgeableUserSortByFieldEnum """ + """ sortByCustomField: SalesforceKnowledgeableUserSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceKnowledgeableUserSortByFieldEnum """ + """ sortByField: SalesforceKnowledgeableUserSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of KnowledgeableUsers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceKnowledgeableUsersConnection """ @@ -234341,15 +236384,15 @@ type SalesforceTopic implements OneGraphNode { """ topicAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ + """ filter: SalesforceTopicAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicAssignmentsConnection """ @@ -234357,15 +236400,15 @@ type SalesforceTopic implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicFeedConnectionFilter """ + """ filter: SalesforceTopicFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicFeedSortByFieldEnum """ + """ sortByField: SalesforceTopicFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TopicFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicFeedsConnection """ @@ -234373,15 +236416,15 @@ type SalesforceTopic implements OneGraphNode { """ topicUserEvents(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicUserEventConnectionFilter """ + """ filter: SalesforceTopicUserEventConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicUserEventSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicUserEventSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicUserEventSortByFieldEnum """ + """ sortByField: SalesforceTopicUserEventSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TopicUserEvents to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicUserEventsConnection customFields(""" @@ -234443,15 +236486,15 @@ type SalesforceContentDocumentLink implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -234721,15 +236764,15 @@ type SalesforceOrganization implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -234737,15 +236780,15 @@ type SalesforceOrganization implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -234753,15 +236796,15 @@ type SalesforceOrganization implements OneGraphNode { """ customBrands(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomBrandConnectionFilter """ + """ filter: SalesforceCustomBrandConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomBrandSortByFieldEnum """ + """ sortByCustomField: SalesforceCustomBrandSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomBrandSortByFieldEnum """ + """ sortByField: SalesforceCustomBrandSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CustomBrands to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCustomBrandsConnection """ @@ -234769,15 +236812,15 @@ type SalesforceOrganization implements OneGraphNode { """ emailTemplates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailTemplateConnectionFilter """ + """ filter: SalesforceEmailTemplateConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailTemplateSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailTemplateSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailTemplateSortByFieldEnum """ + """ sortByField: SalesforceEmailTemplateSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailTemplates to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailTemplatesConnection """ @@ -234785,15 +236828,15 @@ type SalesforceOrganization implements OneGraphNode { """ groups(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGroupConnectionFilter """ + """ filter: SalesforceGroupConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceGroupSortByFieldEnum """ + """ sortByCustomField: SalesforceGroupSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGroupSortByFieldEnum """ + """ sortByField: SalesforceGroupSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Groups to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceGroupsConnection """ @@ -234801,15 +236844,15 @@ type SalesforceOrganization implements OneGraphNode { """ reports(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceReportConnectionFilter """ + """ filter: SalesforceReportConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceReportSortByFieldEnum """ + """ sortByCustomField: SalesforceReportSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceReportSortByFieldEnum """ + """ sortByField: SalesforceReportSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Reports to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceReportsConnection """ @@ -234817,15 +236860,15 @@ type SalesforceOrganization implements OneGraphNode { """ stamps(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStampConnectionFilter """ + """ filter: SalesforceStampConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceStampSortByFieldEnum """ + """ sortByCustomField: SalesforceStampSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStampSortByFieldEnum """ + """ sortByField: SalesforceStampSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Stamps to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceStampsConnection customFields(""" @@ -234925,15 +236968,15 @@ type SalesforceGroup implements OneGraphNode { """ accountShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountShareConnectionFilter """ + """ filter: SalesforceAccountShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountShareSortByFieldEnum """ + """ sortByCustomField: SalesforceAccountShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountShareSortByFieldEnum """ + """ sortByField: SalesforceAccountShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AccountShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountSharesConnection """ @@ -234941,15 +236984,15 @@ type SalesforceGroup implements OneGraphNode { """ assetShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetShareConnectionFilter """ + """ filter: SalesforceAssetShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetShareSortByFieldEnum """ + """ sortByCustomField: SalesforceAssetShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetShareSortByFieldEnum """ + """ sortByField: SalesforceAssetShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AssetShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetSharesConnection """ @@ -234957,15 +237000,15 @@ type SalesforceGroup implements OneGraphNode { """ campaignShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignShareConnectionFilter """ + """ filter: SalesforceCampaignShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignShareSortByFieldEnum """ + """ sortByCustomField: SalesforceCampaignShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignShareSortByFieldEnum """ + """ sortByField: SalesforceCampaignShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CampaignShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignSharesConnection """ @@ -234973,15 +237016,15 @@ type SalesforceGroup implements OneGraphNode { """ caseShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseShareConnectionFilter """ + """ filter: SalesforceCaseShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseShareSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseShareSortByFieldEnum """ + """ sortByField: SalesforceCaseShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseSharesConnection """ @@ -234989,15 +237032,15 @@ type SalesforceGroup implements OneGraphNode { """ contactShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactShareConnectionFilter """ + """ filter: SalesforceContactShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactShareSortByFieldEnum """ + """ sortByCustomField: SalesforceContactShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactShareSortByFieldEnum """ + """ sortByField: SalesforceContactShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContactShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContactSharesConnection """ @@ -235005,15 +237048,15 @@ type SalesforceGroup implements OneGraphNode { """ contentWorkspaceMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceMemberConnectionFilter """ + """ filter: SalesforceContentWorkspaceMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum """ + """ sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum """ + """ sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentWorkspaceMembers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentWorkspaceMembersConnection """ @@ -235021,15 +237064,15 @@ type SalesforceGroup implements OneGraphNode { """ flowInterviewShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowInterviewShareConnectionFilter """ + """ filter: SalesforceFlowInterviewShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowInterviewShareSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowInterviewShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowInterviewShareSortByFieldEnum """ + """ sortByField: SalesforceFlowInterviewShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowInterviewShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowInterviewSharesConnection """ @@ -235037,15 +237080,15 @@ type SalesforceGroup implements OneGraphNode { """ forecastShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceForecastShareConnectionFilter """ + """ filter: SalesforceForecastShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceForecastShareSortByFieldEnum """ + """ sortByCustomField: SalesforceForecastShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceForecastShareSortByFieldEnum """ + """ sortByField: SalesforceForecastShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ForecastShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceForecastSharesConnection """ @@ -235053,15 +237096,15 @@ type SalesforceGroup implements OneGraphNode { """ groupMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGroupMemberConnectionFilter """ + """ filter: SalesforceGroupMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceGroupMemberSortByFieldEnum """ + """ sortByCustomField: SalesforceGroupMemberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGroupMemberSortByFieldEnum """ + """ sortByField: SalesforceGroupMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of GroupMembers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceGroupMembersConnection """ @@ -235069,15 +237112,15 @@ type SalesforceGroup implements OneGraphNode { """ leadShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadShareConnectionFilter """ + """ filter: SalesforceLeadShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadShareSortByFieldEnum """ + """ sortByCustomField: SalesforceLeadShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadShareSortByFieldEnum """ + """ sortByField: SalesforceLeadShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LeadShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadSharesConnection """ @@ -235085,15 +237128,15 @@ type SalesforceGroup implements OneGraphNode { """ listEmailShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListEmailShareConnectionFilter """ + """ filter: SalesforceListEmailShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceListEmailShareSortByFieldEnum """ + """ sortByCustomField: SalesforceListEmailShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListEmailShareSortByFieldEnum """ + """ sortByField: SalesforceListEmailShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ListEmailShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceListEmailSharesConnection """ @@ -235101,15 +237144,15 @@ type SalesforceGroup implements OneGraphNode { """ macroShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroShareConnectionFilter """ + """ filter: SalesforceMacroShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMacroShareSortByFieldEnum """ + """ sortByCustomField: SalesforceMacroShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroShareSortByFieldEnum """ + """ sortByField: SalesforceMacroShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of MacroShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceMacroSharesConnection """ @@ -235117,15 +237160,15 @@ type SalesforceGroup implements OneGraphNode { """ opportunityShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityShareConnectionFilter """ + """ filter: SalesforceOpportunityShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityShareSortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityShareSortByFieldEnum """ + """ sortByField: SalesforceOpportunityShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunitySharesConnection """ @@ -235133,15 +237176,15 @@ type SalesforceGroup implements OneGraphNode { """ orderShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderShareConnectionFilter """ + """ filter: SalesforceOrderShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderShareSortByFieldEnum """ + """ sortByCustomField: SalesforceOrderShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderShareSortByFieldEnum """ + """ sortByField: SalesforceOrderShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrderShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderSharesConnection """ @@ -235149,15 +237192,15 @@ type SalesforceGroup implements OneGraphNode { """ orgDeleteRequestShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrgDeleteRequestShareConnectionFilter """ + """ filter: SalesforceOrgDeleteRequestShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrgDeleteRequestShareSortByFieldEnum """ + """ sortByCustomField: SalesforceOrgDeleteRequestShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrgDeleteRequestShareSortByFieldEnum """ + """ sortByField: SalesforceOrgDeleteRequestShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrgDeleteRequestShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrgDeleteRequestSharesConnection """ @@ -235165,15 +237208,15 @@ type SalesforceGroup implements OneGraphNode { """ queueSobjects(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQueueSobjectConnectionFilter """ + """ filter: SalesforceQueueSobjectConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceQueueSobjectSortByFieldEnum """ + """ sortByCustomField: SalesforceQueueSobjectSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQueueSobjectSortByFieldEnum """ + """ sortByField: SalesforceQueueSobjectSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of QueueSobjects to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceQueueSobjectsConnection """ @@ -235181,15 +237224,15 @@ type SalesforceGroup implements OneGraphNode { """ quickTextShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQuickTextShareConnectionFilter """ + """ filter: SalesforceQuickTextShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceQuickTextShareSortByFieldEnum """ + """ sortByCustomField: SalesforceQuickTextShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQuickTextShareSortByFieldEnum """ + """ sortByField: SalesforceQuickTextShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of QuickTextShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceQuickTextSharesConnection """ @@ -235197,15 +237240,15 @@ type SalesforceGroup implements OneGraphNode { """ streamingChannelShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStreamingChannelShareConnectionFilter """ + """ filter: SalesforceStreamingChannelShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceStreamingChannelShareSortByFieldEnum """ + """ sortByCustomField: SalesforceStreamingChannelShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStreamingChannelShareSortByFieldEnum """ + """ sortByField: SalesforceStreamingChannelShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of StreamingChannelShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceStreamingChannelSharesConnection """ @@ -235213,15 +237256,15 @@ type SalesforceGroup implements OneGraphNode { """ todayGoalShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTodayGoalShareConnectionFilter """ + """ filter: SalesforceTodayGoalShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTodayGoalShareSortByFieldEnum """ + """ sortByCustomField: SalesforceTodayGoalShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTodayGoalShareSortByFieldEnum """ + """ sortByField: SalesforceTodayGoalShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TodayGoalShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTodayGoalSharesConnection """ @@ -235229,15 +237272,15 @@ type SalesforceGroup implements OneGraphNode { """ delegatedUsers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserConnectionFilter """ + """ filter: SalesforceUserConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserSortByFieldEnum """ + """ sortByCustomField: SalesforceUserSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserSortByFieldEnum """ + """ sortByField: SalesforceUserSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Users to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUsersConnection """ @@ -235245,15 +237288,15 @@ type SalesforceGroup implements OneGraphNode { """ userAppMenuCustomizationShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserAppMenuCustomizationShareConnectionFilter """ + """ filter: SalesforceUserAppMenuCustomizationShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum """ + """ sortByCustomField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum """ + """ sortByField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserAppMenuCustomizationShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserAppMenuCustomizationSharesConnection """ @@ -235261,15 +237304,15 @@ type SalesforceGroup implements OneGraphNode { """ userProvisioningRequestShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningRequestShareConnectionFilter """ + """ filter: SalesforceUserProvisioningRequestShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningRequestShareSortByFieldEnum """ + """ sortByCustomField: SalesforceUserProvisioningRequestShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningRequestShareSortByFieldEnum """ + """ sortByField: SalesforceUserProvisioningRequestShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserProvisioningRequestShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvisioningRequestSharesConnection """ @@ -235277,15 +237320,15 @@ type SalesforceGroup implements OneGraphNode { """ userShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserShareConnectionFilter """ + """ filter: SalesforceUserShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserShareSortByFieldEnum """ + """ sortByCustomField: SalesforceUserShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserShareSortByFieldEnum """ + """ sortByField: SalesforceUserShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserSharesConnection customFields(""" @@ -235355,15 +237398,15 @@ type SalesforceForecastShare implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection customFields(""" @@ -235493,15 +237536,15 @@ type SalesforceUserRole implements OneGraphNode { """ forecastShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceForecastShareConnectionFilter """ + """ filter: SalesforceForecastShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceForecastShareSortByFieldEnum """ + """ sortByCustomField: SalesforceForecastShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceForecastShareSortByFieldEnum """ + """ sortByField: SalesforceForecastShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ForecastShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceForecastSharesConnection """ @@ -235509,15 +237552,15 @@ type SalesforceUserRole implements OneGraphNode { """ groups(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGroupConnectionFilter """ + """ filter: SalesforceGroupConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceGroupSortByFieldEnum """ + """ sortByCustomField: SalesforceGroupSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGroupSortByFieldEnum """ + """ sortByField: SalesforceGroupSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Groups to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceGroupsConnection """ @@ -235525,15 +237568,15 @@ type SalesforceUserRole implements OneGraphNode { """ users(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserConnectionFilter """ + """ filter: SalesforceUserConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserSortByFieldEnum """ + """ sortByCustomField: SalesforceUserSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserSortByFieldEnum """ + """ sortByField: SalesforceUserSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Users to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUsersConnection """ @@ -235541,15 +237584,15 @@ type SalesforceUserRole implements OneGraphNode { """ userRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserRoleConnectionFilter """ + """ filter: SalesforceUserRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserRoleSortByFieldEnum """ + """ sortByCustomField: SalesforceUserRoleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserRoleSortByFieldEnum """ + """ sortByField: SalesforceUserRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserRoles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserRolesConnection customFields(""" @@ -236269,15 +238312,15 @@ type SalesforceUser implements OneGraphNode { """ acceptedEventRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAcceptedEventRelationConnectionFilter """ + """ filter: SalesforceAcceptedEventRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAcceptedEventRelationSortByFieldEnum """ + """ sortByField: SalesforceAcceptedEventRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AcceptedEventRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAcceptedEventRelationsConnection """ @@ -236285,15 +238328,15 @@ type SalesforceUser implements OneGraphNode { """ accounts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountConnectionFilter """ + """ filter: SalesforceAccountConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountSortByFieldEnum """ + """ sortByCustomField: SalesforceAccountSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountSortByFieldEnum """ + """ sortByField: SalesforceAccountSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Accounts to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountsConnection """ @@ -236301,15 +238344,15 @@ type SalesforceUser implements OneGraphNode { """ accountCleanInfos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountCleanInfoConnectionFilter """ + """ filter: SalesforceAccountCleanInfoConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountCleanInfoSortByFieldEnum """ + """ sortByCustomField: SalesforceAccountCleanInfoSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountCleanInfoSortByFieldEnum """ + """ sortByField: SalesforceAccountCleanInfoSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AccountCleanInfos to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountCleanInfosConnection """ @@ -236317,15 +238360,15 @@ type SalesforceUser implements OneGraphNode { """ accountCleanInfoReviewers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountCleanInfoConnectionFilter """ + """ filter: SalesforceAccountCleanInfoConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountCleanInfoSortByFieldEnum """ + """ sortByCustomField: SalesforceAccountCleanInfoSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountCleanInfoSortByFieldEnum """ + """ sortByField: SalesforceAccountCleanInfoSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AccountCleanInfos to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountCleanInfosConnection """ @@ -236333,15 +238376,15 @@ type SalesforceUser implements OneGraphNode { """ accountContactRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountContactRoleConnectionFilter """ + """ filter: SalesforceAccountContactRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountContactRoleSortByFieldEnum """ + """ sortByCustomField: SalesforceAccountContactRoleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountContactRoleSortByFieldEnum """ + """ sortByField: SalesforceAccountContactRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AccountContactRoles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountContactRolesConnection """ @@ -236349,15 +238392,15 @@ type SalesforceUser implements OneGraphNode { """ accountFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountFeedConnectionFilter """ + """ filter: SalesforceAccountFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceAccountFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountFeedSortByFieldEnum """ + """ sortByField: SalesforceAccountFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AccountFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountFeedsConnection """ @@ -236365,15 +238408,15 @@ type SalesforceUser implements OneGraphNode { """ accountHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountHistoryConnectionFilter """ + """ filter: SalesforceAccountHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceAccountHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountHistorySortByFieldEnum """ + """ sortByField: SalesforceAccountHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AccountHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountHistorysConnection """ @@ -236381,15 +238424,15 @@ type SalesforceUser implements OneGraphNode { """ accountPartners(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountPartnerConnectionFilter """ + """ filter: SalesforceAccountPartnerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountPartnerSortByFieldEnum """ + """ sortByCustomField: SalesforceAccountPartnerSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountPartnerSortByFieldEnum """ + """ sortByField: SalesforceAccountPartnerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AccountPartners to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountPartnersConnection """ @@ -236397,15 +238440,15 @@ type SalesforceUser implements OneGraphNode { """ accountShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountShareConnectionFilter """ + """ filter: SalesforceAccountShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountShareSortByFieldEnum """ + """ sortByCustomField: SalesforceAccountShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountShareSortByFieldEnum """ + """ sortByField: SalesforceAccountShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AccountShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountSharesConnection """ @@ -236413,15 +238456,15 @@ type SalesforceUser implements OneGraphNode { """ actionLinkGroupTemplates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceActionLinkGroupTemplateConnectionFilter """ + """ filter: SalesforceActionLinkGroupTemplateConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceActionLinkGroupTemplateSortByFieldEnum """ + """ sortByCustomField: SalesforceActionLinkGroupTemplateSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceActionLinkGroupTemplateSortByFieldEnum """ + """ sortByField: SalesforceActionLinkGroupTemplateSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ActionLinkGroupTemplates to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceActionLinkGroupTemplatesConnection """ @@ -236429,15 +238472,15 @@ type SalesforceUser implements OneGraphNode { """ actionLinkTemplates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceActionLinkTemplateConnectionFilter """ + """ filter: SalesforceActionLinkTemplateConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceActionLinkTemplateSortByFieldEnum """ + """ sortByCustomField: SalesforceActionLinkTemplateSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceActionLinkTemplateSortByFieldEnum """ + """ sortByField: SalesforceActionLinkTemplateSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ActionLinkTemplates to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceActionLinkTemplatesConnection """ @@ -236445,15 +238488,15 @@ type SalesforceUser implements OneGraphNode { """ additionalNumbers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAdditionalNumberConnectionFilter """ + """ filter: SalesforceAdditionalNumberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAdditionalNumberSortByFieldEnum """ + """ sortByCustomField: SalesforceAdditionalNumberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAdditionalNumberSortByFieldEnum """ + """ sortByField: SalesforceAdditionalNumberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AdditionalNumbers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAdditionalNumbersConnection """ @@ -236461,15 +238504,15 @@ type SalesforceUser implements OneGraphNode { """ announcements(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAnnouncementConnectionFilter """ + """ filter: SalesforceAnnouncementConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAnnouncementSortByFieldEnum """ + """ sortByCustomField: SalesforceAnnouncementSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAnnouncementSortByFieldEnum """ + """ sortByField: SalesforceAnnouncementSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Announcements to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAnnouncementsConnection """ @@ -236477,15 +238520,15 @@ type SalesforceUser implements OneGraphNode { """ apexClasses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexClassConnectionFilter """ + """ filter: SalesforceApexClassConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexClassSortByFieldEnum """ + """ sortByCustomField: SalesforceApexClassSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexClassSortByFieldEnum """ + """ sortByField: SalesforceApexClassSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ApexClasses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexClasssConnection """ @@ -236493,15 +238536,15 @@ type SalesforceUser implements OneGraphNode { """ apexComponents(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexComponentConnectionFilter """ + """ filter: SalesforceApexComponentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexComponentSortByFieldEnum """ + """ sortByCustomField: SalesforceApexComponentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexComponentSortByFieldEnum """ + """ sortByField: SalesforceApexComponentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ApexComponents to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexComponentsConnection """ @@ -236509,15 +238552,15 @@ type SalesforceUser implements OneGraphNode { """ apexEmailNotifications(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexEmailNotificationConnectionFilter """ + """ filter: SalesforceApexEmailNotificationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexEmailNotificationSortByFieldEnum """ + """ sortByCustomField: SalesforceApexEmailNotificationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexEmailNotificationSortByFieldEnum """ + """ sortByField: SalesforceApexEmailNotificationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ApexEmailNotifications to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexEmailNotificationsConnection """ @@ -236525,15 +238568,15 @@ type SalesforceUser implements OneGraphNode { """ apexLogs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexLogConnectionFilter """ + """ filter: SalesforceApexLogConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexLogSortByFieldEnum """ + """ sortByCustomField: SalesforceApexLogSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexLogSortByFieldEnum """ + """ sortByField: SalesforceApexLogSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ApexLogs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexLogsConnection """ @@ -236541,15 +238584,15 @@ type SalesforceUser implements OneGraphNode { """ apexPages(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexPageConnectionFilter """ + """ filter: SalesforceApexPageConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexPageSortByFieldEnum """ + """ sortByCustomField: SalesforceApexPageSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexPageSortByFieldEnum """ + """ sortByField: SalesforceApexPageSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ApexPages to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexPagesConnection """ @@ -236557,15 +238600,15 @@ type SalesforceUser implements OneGraphNode { """ apexTestQueueItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestQueueItemConnectionFilter """ + """ filter: SalesforceApexTestQueueItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum """ + """ sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestQueueItemSortByFieldEnum """ + """ sortByField: SalesforceApexTestQueueItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ApexTestQueueItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexTestQueueItemsConnection """ @@ -236573,15 +238616,15 @@ type SalesforceUser implements OneGraphNode { """ apexTestResultLimitsPlural(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestResultLimitsConnectionFilter """ + """ filter: SalesforceApexTestResultLimitsConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestResultLimitsSortByFieldEnum """ + """ sortByCustomField: SalesforceApexTestResultLimitsSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestResultLimitsSortByFieldEnum """ + """ sortByField: SalesforceApexTestResultLimitsSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ApexTestResultLimits to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexTestResultLimitssConnection """ @@ -236589,15 +238632,15 @@ type SalesforceUser implements OneGraphNode { """ apexTestRunResults(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestRunResultConnectionFilter """ + """ filter: SalesforceApexTestRunResultConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestRunResultSortByFieldEnum """ + """ sortByCustomField: SalesforceApexTestRunResultSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestRunResultSortByFieldEnum """ + """ sortByField: SalesforceApexTestRunResultSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ApexTestRunResults to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexTestRunResultsConnection """ @@ -236605,15 +238648,15 @@ type SalesforceUser implements OneGraphNode { """ apexTestSuites(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestSuiteConnectionFilter """ + """ filter: SalesforceApexTestSuiteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestSuiteSortByFieldEnum """ + """ sortByCustomField: SalesforceApexTestSuiteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestSuiteSortByFieldEnum """ + """ sortByField: SalesforceApexTestSuiteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ApexTestSuites to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexTestSuitesConnection """ @@ -236621,15 +238664,15 @@ type SalesforceUser implements OneGraphNode { """ apexTriggers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTriggerConnectionFilter """ + """ filter: SalesforceApexTriggerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTriggerSortByFieldEnum """ + """ sortByCustomField: SalesforceApexTriggerSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTriggerSortByFieldEnum """ + """ sortByField: SalesforceApexTriggerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ApexTriggers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceApexTriggersConnection """ @@ -236637,15 +238680,15 @@ type SalesforceUser implements OneGraphNode { """ appMenuItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAppMenuItemConnectionFilter """ + """ filter: SalesforceAppMenuItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAppMenuItemSortByFieldEnum """ + """ sortByCustomField: SalesforceAppMenuItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAppMenuItemSortByFieldEnum """ + """ sortByField: SalesforceAppMenuItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AppMenuItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAppMenuItemsConnection """ @@ -236653,15 +238696,15 @@ type SalesforceUser implements OneGraphNode { """ assets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetConnectionFilter """ + """ filter: SalesforceAssetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetSortByFieldEnum """ + """ sortByCustomField: SalesforceAssetSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetSortByFieldEnum """ + """ sortByField: SalesforceAssetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Assets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetsConnection """ @@ -236669,15 +238712,15 @@ type SalesforceUser implements OneGraphNode { """ assetFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetFeedConnectionFilter """ + """ filter: SalesforceAssetFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceAssetFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetFeedSortByFieldEnum """ + """ sortByField: SalesforceAssetFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AssetFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetFeedsConnection """ @@ -236685,15 +238728,15 @@ type SalesforceUser implements OneGraphNode { """ assetHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetHistoryConnectionFilter """ + """ filter: SalesforceAssetHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceAssetHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetHistorySortByFieldEnum """ + """ sortByField: SalesforceAssetHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AssetHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetHistorysConnection """ @@ -236701,15 +238744,15 @@ type SalesforceUser implements OneGraphNode { """ assetRelationships(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipConnectionFilter """ + """ filter: SalesforceAssetRelationshipConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetRelationshipSortByFieldEnum """ + """ sortByCustomField: SalesforceAssetRelationshipSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipSortByFieldEnum """ + """ sortByField: SalesforceAssetRelationshipSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AssetRelationships to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetRelationshipsConnection """ @@ -236717,15 +238760,15 @@ type SalesforceUser implements OneGraphNode { """ assetRelationshipFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipFeedConnectionFilter """ + """ filter: SalesforceAssetRelationshipFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetRelationshipFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceAssetRelationshipFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum """ + """ sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AssetRelationshipFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetRelationshipFeedsConnection """ @@ -236733,15 +238776,15 @@ type SalesforceUser implements OneGraphNode { """ assetRelationshipHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipHistoryConnectionFilter """ + """ filter: SalesforceAssetRelationshipHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetRelationshipHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceAssetRelationshipHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipHistorySortByFieldEnum """ + """ sortByField: SalesforceAssetRelationshipHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AssetRelationshipHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetRelationshipHistorysConnection """ @@ -236749,15 +238792,15 @@ type SalesforceUser implements OneGraphNode { """ assetShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetShareConnectionFilter """ + """ filter: SalesforceAssetShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetShareSortByFieldEnum """ + """ sortByCustomField: SalesforceAssetShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetShareSortByFieldEnum """ + """ sortByField: SalesforceAssetShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AssetShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetSharesConnection """ @@ -236765,15 +238808,15 @@ type SalesforceUser implements OneGraphNode { """ assignmentRules(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssignmentRuleConnectionFilter """ + """ filter: SalesforceAssignmentRuleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssignmentRuleSortByFieldEnum """ + """ sortByCustomField: SalesforceAssignmentRuleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssignmentRuleSortByFieldEnum """ + """ sortByField: SalesforceAssignmentRuleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AssignmentRules to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssignmentRulesConnection """ @@ -236781,15 +238824,15 @@ type SalesforceUser implements OneGraphNode { """ asyncApexJobs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAsyncApexJobConnectionFilter """ + """ filter: SalesforceAsyncApexJobConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAsyncApexJobSortByFieldEnum """ + """ sortByCustomField: SalesforceAsyncApexJobSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAsyncApexJobSortByFieldEnum """ + """ sortByField: SalesforceAsyncApexJobSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AsyncApexJobs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAsyncApexJobsConnection """ @@ -236797,15 +238840,15 @@ type SalesforceUser implements OneGraphNode { """ attachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ + """ filter: SalesforceAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Attachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAttachmentsConnection """ @@ -236813,15 +238856,15 @@ type SalesforceUser implements OneGraphNode { """ auraDefinitions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuraDefinitionConnectionFilter """ + """ filter: SalesforceAuraDefinitionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuraDefinitionSortByFieldEnum """ + """ sortByCustomField: SalesforceAuraDefinitionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuraDefinitionSortByFieldEnum """ + """ sortByField: SalesforceAuraDefinitionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AuraDefinitions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAuraDefinitionsConnection """ @@ -236829,15 +238872,15 @@ type SalesforceUser implements OneGraphNode { """ auraDefinitionBundles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuraDefinitionBundleConnectionFilter """ + """ filter: SalesforceAuraDefinitionBundleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuraDefinitionBundleSortByFieldEnum """ + """ sortByCustomField: SalesforceAuraDefinitionBundleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuraDefinitionBundleSortByFieldEnum """ + """ sortByField: SalesforceAuraDefinitionBundleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AuraDefinitionBundles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAuraDefinitionBundlesConnection """ @@ -236845,15 +238888,15 @@ type SalesforceUser implements OneGraphNode { """ authConfigs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthConfigConnectionFilter """ + """ filter: SalesforceAuthConfigConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthConfigSortByFieldEnum """ + """ sortByCustomField: SalesforceAuthConfigSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthConfigSortByFieldEnum """ + """ sortByField: SalesforceAuthConfigSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AuthConfigs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAuthConfigsConnection """ @@ -236861,15 +238904,15 @@ type SalesforceUser implements OneGraphNode { """ authConfigProvidersPlural(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthConfigProvidersConnectionFilter """ + """ filter: SalesforceAuthConfigProvidersConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum """ + """ sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthConfigProvidersSortByFieldEnum """ + """ sortByField: SalesforceAuthConfigProvidersSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AuthConfigProviders to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAuthConfigProviderssConnection """ @@ -236877,15 +238920,15 @@ type SalesforceUser implements OneGraphNode { """ authProviders(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthProviderConnectionFilter """ + """ filter: SalesforceAuthProviderConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthProviderSortByFieldEnum """ + """ sortByCustomField: SalesforceAuthProviderSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthProviderSortByFieldEnum """ + """ sortByField: SalesforceAuthProviderSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AuthProviders to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAuthProvidersConnection """ @@ -236893,15 +238936,15 @@ type SalesforceUser implements OneGraphNode { """ authSessions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthSessionConnectionFilter """ + """ filter: SalesforceAuthSessionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthSessionSortByFieldEnum """ + """ sortByCustomField: SalesforceAuthSessionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthSessionSortByFieldEnum """ + """ sortByField: SalesforceAuthSessionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AuthSessions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAuthSessionsConnection """ @@ -236909,15 +238952,15 @@ type SalesforceUser implements OneGraphNode { """ backgroundOperations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceBackgroundOperationConnectionFilter """ + """ filter: SalesforceBackgroundOperationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceBackgroundOperationSortByFieldEnum """ + """ sortByCustomField: SalesforceBackgroundOperationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceBackgroundOperationSortByFieldEnum """ + """ sortByField: SalesforceBackgroundOperationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of BackgroundOperations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceBackgroundOperationsConnection """ @@ -236925,15 +238968,15 @@ type SalesforceUser implements OneGraphNode { """ brandTemplates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceBrandTemplateConnectionFilter """ + """ filter: SalesforceBrandTemplateConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceBrandTemplateSortByFieldEnum """ + """ sortByCustomField: SalesforceBrandTemplateSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceBrandTemplateSortByFieldEnum """ + """ sortByField: SalesforceBrandTemplateSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of BrandTemplates to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceBrandTemplatesConnection """ @@ -236941,15 +238984,15 @@ type SalesforceUser implements OneGraphNode { """ businessHoursPlural(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceBusinessHoursConnectionFilter """ + """ filter: SalesforceBusinessHoursConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceBusinessHoursSortByFieldEnum """ + """ sortByCustomField: SalesforceBusinessHoursSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceBusinessHoursSortByFieldEnum """ + """ sortByField: SalesforceBusinessHoursSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of BusinessHours to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceBusinessHourssConnection """ @@ -236957,15 +239000,15 @@ type SalesforceUser implements OneGraphNode { """ businessProcesses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceBusinessProcessConnectionFilter """ + """ filter: SalesforceBusinessProcessConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceBusinessProcessSortByFieldEnum """ + """ sortByCustomField: SalesforceBusinessProcessSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceBusinessProcessSortByFieldEnum """ + """ sortByField: SalesforceBusinessProcessSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of BusinessProcesses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceBusinessProcesssConnection """ @@ -236973,15 +239016,15 @@ type SalesforceUser implements OneGraphNode { """ callCenters(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCallCenterConnectionFilter """ + """ filter: SalesforceCallCenterConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCallCenterSortByFieldEnum """ + """ sortByCustomField: SalesforceCallCenterSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCallCenterSortByFieldEnum """ + """ sortByField: SalesforceCallCenterSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CallCenters to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCallCentersConnection """ @@ -236989,15 +239032,15 @@ type SalesforceUser implements OneGraphNode { """ campaigns(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignConnectionFilter """ + """ filter: SalesforceCampaignConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignSortByFieldEnum """ + """ sortByCustomField: SalesforceCampaignSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignSortByFieldEnum """ + """ sortByField: SalesforceCampaignSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Campaigns to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignsConnection """ @@ -237005,15 +239048,15 @@ type SalesforceUser implements OneGraphNode { """ campaignFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignFeedConnectionFilter """ + """ filter: SalesforceCampaignFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceCampaignFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignFeedSortByFieldEnum """ + """ sortByField: SalesforceCampaignFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CampaignFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignFeedsConnection """ @@ -237021,15 +239064,15 @@ type SalesforceUser implements OneGraphNode { """ campaignHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignHistoryConnectionFilter """ + """ filter: SalesforceCampaignHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceCampaignHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignHistorySortByFieldEnum """ + """ sortByField: SalesforceCampaignHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CampaignHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignHistorysConnection """ @@ -237037,15 +239080,15 @@ type SalesforceUser implements OneGraphNode { """ campaignMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignMemberConnectionFilter """ + """ filter: SalesforceCampaignMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignMemberSortByFieldEnum """ + """ sortByCustomField: SalesforceCampaignMemberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignMemberSortByFieldEnum """ + """ sortByField: SalesforceCampaignMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CampaignMembers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignMembersConnection """ @@ -237053,15 +239096,15 @@ type SalesforceUser implements OneGraphNode { """ campaignMemberStatuses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignMemberStatusConnectionFilter """ + """ filter: SalesforceCampaignMemberStatusConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignMemberStatusSortByFieldEnum """ + """ sortByCustomField: SalesforceCampaignMemberStatusSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignMemberStatusSortByFieldEnum """ + """ sortByField: SalesforceCampaignMemberStatusSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CampaignMemberStatuses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignMemberStatussConnection """ @@ -237069,15 +239112,15 @@ type SalesforceUser implements OneGraphNode { """ campaignShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignShareConnectionFilter """ + """ filter: SalesforceCampaignShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignShareSortByFieldEnum """ + """ sortByCustomField: SalesforceCampaignShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignShareSortByFieldEnum """ + """ sortByField: SalesforceCampaignShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CampaignShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignSharesConnection """ @@ -237085,15 +239128,15 @@ type SalesforceUser implements OneGraphNode { """ cases(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseConnectionFilter """ + """ filter: SalesforceCaseConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseSortByFieldEnum """ + """ sortByField: SalesforceCaseSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Cases to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCasesConnection """ @@ -237101,15 +239144,15 @@ type SalesforceUser implements OneGraphNode { """ caseComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseCommentConnectionFilter """ + """ filter: SalesforceCaseCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseCommentSortByFieldEnum """ + """ sortByField: SalesforceCaseCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseCommentsConnection """ @@ -237117,15 +239160,15 @@ type SalesforceUser implements OneGraphNode { """ caseContactRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseContactRoleConnectionFilter """ + """ filter: SalesforceCaseContactRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseContactRoleSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseContactRoleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseContactRoleSortByFieldEnum """ + """ sortByField: SalesforceCaseContactRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseContactRoles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseContactRolesConnection """ @@ -237133,15 +239176,15 @@ type SalesforceUser implements OneGraphNode { """ caseFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseFeedConnectionFilter """ + """ filter: SalesforceCaseFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseFeedSortByFieldEnum """ + """ sortByField: SalesforceCaseFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseFeedsConnection """ @@ -237149,15 +239192,15 @@ type SalesforceUser implements OneGraphNode { """ caseHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseHistoryConnectionFilter """ + """ filter: SalesforceCaseHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceCaseHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseHistorySortByFieldEnum """ + """ sortByField: SalesforceCaseHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseHistorysConnection """ @@ -237165,15 +239208,15 @@ type SalesforceUser implements OneGraphNode { """ caseShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseShareConnectionFilter """ + """ filter: SalesforceCaseShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseShareSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseShareSortByFieldEnum """ + """ sortByField: SalesforceCaseShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseSharesConnection """ @@ -237181,15 +239224,15 @@ type SalesforceUser implements OneGraphNode { """ caseSolutions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseSolutionConnectionFilter """ + """ filter: SalesforceCaseSolutionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseSolutionSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseSolutionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseSolutionSortByFieldEnum """ + """ sortByField: SalesforceCaseSolutionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseSolutions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseSolutionsConnection """ @@ -237197,15 +239240,15 @@ type SalesforceUser implements OneGraphNode { """ caseStatuses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseStatusConnectionFilter """ + """ filter: SalesforceCaseStatusConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseStatusSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseStatusSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseStatusSortByFieldEnum """ + """ sortByField: SalesforceCaseStatusSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseStatuses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseStatussConnection """ @@ -237213,15 +239256,15 @@ type SalesforceUser implements OneGraphNode { """ caseTeamMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamMemberConnectionFilter """ + """ filter: SalesforceCaseTeamMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseTeamMemberSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseTeamMemberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamMemberSortByFieldEnum """ + """ sortByField: SalesforceCaseTeamMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseTeamMembers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseTeamMembersConnection """ @@ -237229,15 +239272,15 @@ type SalesforceUser implements OneGraphNode { """ caseTeamRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamRoleConnectionFilter """ + """ filter: SalesforceCaseTeamRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseTeamRoleSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseTeamRoleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamRoleSortByFieldEnum """ + """ sortByField: SalesforceCaseTeamRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseTeamRoles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseTeamRolesConnection """ @@ -237245,15 +239288,15 @@ type SalesforceUser implements OneGraphNode { """ caseTeamTemplates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamTemplateConnectionFilter """ + """ filter: SalesforceCaseTeamTemplateConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseTeamTemplateSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseTeamTemplateSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamTemplateSortByFieldEnum """ + """ sortByField: SalesforceCaseTeamTemplateSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseTeamTemplates to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseTeamTemplatesConnection """ @@ -237261,15 +239304,15 @@ type SalesforceUser implements OneGraphNode { """ caseTeamTemplateMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamTemplateMemberConnectionFilter """ + """ filter: SalesforceCaseTeamTemplateMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseTeamTemplateMemberSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseTeamTemplateMemberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamTemplateMemberSortByFieldEnum """ + """ sortByField: SalesforceCaseTeamTemplateMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseTeamTemplateMembers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseTeamTemplateMembersConnection """ @@ -237277,15 +239320,15 @@ type SalesforceUser implements OneGraphNode { """ caseTeamTemplateRecords(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamTemplateRecordConnectionFilter """ + """ filter: SalesforceCaseTeamTemplateRecordConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseTeamTemplateRecordSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseTeamTemplateRecordSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamTemplateRecordSortByFieldEnum """ + """ sortByField: SalesforceCaseTeamTemplateRecordSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseTeamTemplateRecords to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseTeamTemplateRecordsConnection """ @@ -237293,15 +239336,15 @@ type SalesforceUser implements OneGraphNode { """ categoryDatas(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCategoryDataConnectionFilter """ + """ filter: SalesforceCategoryDataConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCategoryDataSortByFieldEnum """ + """ sortByCustomField: SalesforceCategoryDataSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCategoryDataSortByFieldEnum """ + """ sortByField: SalesforceCategoryDataSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CategoryDatas to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCategoryDatasConnection """ @@ -237309,15 +239352,15 @@ type SalesforceUser implements OneGraphNode { """ categoryNodes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCategoryNodeConnectionFilter """ + """ filter: SalesforceCategoryNodeConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCategoryNodeSortByFieldEnum """ + """ sortByCustomField: SalesforceCategoryNodeSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCategoryNodeSortByFieldEnum """ + """ sortByField: SalesforceCategoryNodeSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CategoryNodes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCategoryNodesConnection """ @@ -237325,15 +239368,15 @@ type SalesforceUser implements OneGraphNode { """ chatterActivities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceChatterActivityConnectionFilter """ + """ filter: SalesforceChatterActivityConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceChatterActivitySortByFieldEnum """ + """ sortByCustomField: SalesforceChatterActivitySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceChatterActivitySortByFieldEnum """ + """ sortByField: SalesforceChatterActivitySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ChatterActivities to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceChatterActivitysConnection """ @@ -237341,15 +239384,15 @@ type SalesforceUser implements OneGraphNode { """ chatterExtensions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceChatterExtensionConnectionFilter """ + """ filter: SalesforceChatterExtensionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceChatterExtensionSortByFieldEnum """ + """ sortByCustomField: SalesforceChatterExtensionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceChatterExtensionSortByFieldEnum """ + """ sortByField: SalesforceChatterExtensionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ChatterExtensions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceChatterExtensionsConnection """ @@ -237357,15 +239400,15 @@ type SalesforceUser implements OneGraphNode { """ chatterExtensionConfigs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceChatterExtensionConfigConnectionFilter """ + """ filter: SalesforceChatterExtensionConfigConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceChatterExtensionConfigSortByFieldEnum """ + """ sortByCustomField: SalesforceChatterExtensionConfigSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceChatterExtensionConfigSortByFieldEnum """ + """ sortByField: SalesforceChatterExtensionConfigSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ChatterExtensionConfigs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceChatterExtensionConfigsConnection """ @@ -237373,15 +239416,15 @@ type SalesforceUser implements OneGraphNode { """ clientBrowsers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceClientBrowserConnectionFilter """ + """ filter: SalesforceClientBrowserConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceClientBrowserSortByFieldEnum """ + """ sortByCustomField: SalesforceClientBrowserSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceClientBrowserSortByFieldEnum """ + """ sortByField: SalesforceClientBrowserSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ClientBrowsers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceClientBrowsersConnection """ @@ -237389,15 +239432,15 @@ type SalesforceUser implements OneGraphNode { """ collaborationGroups(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupConnectionFilter """ + """ filter: SalesforceCollaborationGroupConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationGroupSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationGroups to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupsConnection """ @@ -237405,15 +239448,15 @@ type SalesforceUser implements OneGraphNode { """ collaborationGroupFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupFeedConnectionFilter """ + """ filter: SalesforceCollaborationGroupFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationGroupFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationGroupFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupFeedsConnection """ @@ -237421,15 +239464,15 @@ type SalesforceUser implements OneGraphNode { """ collaborationGroupMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupMemberConnectionFilter """ + """ filter: SalesforceCollaborationGroupMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupMemberSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationGroupMemberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationGroupMembers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupMembersConnection """ @@ -237437,15 +239480,15 @@ type SalesforceUser implements OneGraphNode { """ groupMemberships(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupMemberConnectionFilter """ + """ filter: SalesforceCollaborationGroupMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupMemberSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationGroupMemberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationGroupMembers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupMembersConnection """ @@ -237453,15 +239496,15 @@ type SalesforceUser implements OneGraphNode { """ collaborationGroupMemberRequests(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupMemberRequestConnectionFilter """ + """ filter: SalesforceCollaborationGroupMemberRequestConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationGroupMemberRequests to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupMemberRequestsConnection """ @@ -237469,15 +239512,15 @@ type SalesforceUser implements OneGraphNode { """ groupMembershipRequests(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupMemberRequestConnectionFilter """ + """ filter: SalesforceCollaborationGroupMemberRequestConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationGroupMemberRequests to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupMemberRequestsConnection """ @@ -237485,15 +239528,15 @@ type SalesforceUser implements OneGraphNode { """ collaborationGroupRecords(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupRecordConnectionFilter """ + """ filter: SalesforceCollaborationGroupRecordConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupRecordsConnection """ @@ -237501,15 +239544,15 @@ type SalesforceUser implements OneGraphNode { """ collaborationInvitations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationInvitationConnectionFilter """ + """ filter: SalesforceCollaborationInvitationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationInvitationSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationInvitationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationInvitationSortByFieldEnum """ + """ sortByField: SalesforceCollaborationInvitationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationInvitations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationInvitationsConnection """ @@ -237517,15 +239560,15 @@ type SalesforceUser implements OneGraphNode { """ communities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCommunityConnectionFilter """ + """ filter: SalesforceCommunityConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCommunitySortByFieldEnum """ + """ sortByCustomField: SalesforceCommunitySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCommunitySortByFieldEnum """ + """ sortByField: SalesforceCommunitySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Communities to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCommunitysConnection """ @@ -237533,15 +239576,15 @@ type SalesforceUser implements OneGraphNode { """ connectedApplications(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceConnectedApplicationConnectionFilter """ + """ filter: SalesforceConnectedApplicationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceConnectedApplicationSortByFieldEnum """ + """ sortByCustomField: SalesforceConnectedApplicationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceConnectedApplicationSortByFieldEnum """ + """ sortByField: SalesforceConnectedApplicationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ConnectedApplications to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceConnectedApplicationsConnection """ @@ -237549,15 +239592,15 @@ type SalesforceUser implements OneGraphNode { """ contacts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactConnectionFilter """ + """ filter: SalesforceContactConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactSortByFieldEnum """ + """ sortByCustomField: SalesforceContactSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactSortByFieldEnum """ + """ sortByField: SalesforceContactSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Contacts to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContactsConnection """ @@ -237565,15 +239608,15 @@ type SalesforceUser implements OneGraphNode { """ contactCleanInfos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactCleanInfoConnectionFilter """ + """ filter: SalesforceContactCleanInfoConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactCleanInfoSortByFieldEnum """ + """ sortByCustomField: SalesforceContactCleanInfoSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactCleanInfoSortByFieldEnum """ + """ sortByField: SalesforceContactCleanInfoSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContactCleanInfos to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContactCleanInfosConnection """ @@ -237581,15 +239624,15 @@ type SalesforceUser implements OneGraphNode { """ contactCleanInfoReviewers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactCleanInfoConnectionFilter """ + """ filter: SalesforceContactCleanInfoConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactCleanInfoSortByFieldEnum """ + """ sortByCustomField: SalesforceContactCleanInfoSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactCleanInfoSortByFieldEnum """ + """ sortByField: SalesforceContactCleanInfoSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContactCleanInfos to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContactCleanInfosConnection """ @@ -237597,15 +239640,15 @@ type SalesforceUser implements OneGraphNode { """ contactFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactFeedConnectionFilter """ + """ filter: SalesforceContactFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceContactFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactFeedSortByFieldEnum """ + """ sortByField: SalesforceContactFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContactFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContactFeedsConnection """ @@ -237613,15 +239656,15 @@ type SalesforceUser implements OneGraphNode { """ contactHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactHistoryConnectionFilter """ + """ filter: SalesforceContactHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceContactHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactHistorySortByFieldEnum """ + """ sortByField: SalesforceContactHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContactHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContactHistorysConnection """ @@ -237629,15 +239672,15 @@ type SalesforceUser implements OneGraphNode { """ contactShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactShareConnectionFilter """ + """ filter: SalesforceContactShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactShareSortByFieldEnum """ + """ sortByCustomField: SalesforceContactShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactShareSortByFieldEnum """ + """ sortByField: SalesforceContactShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContactShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContactSharesConnection """ @@ -237645,15 +239688,15 @@ type SalesforceUser implements OneGraphNode { """ contentAssets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentAssetConnectionFilter """ + """ filter: SalesforceContentAssetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentAssetSortByFieldEnum """ + """ sortByCustomField: SalesforceContentAssetSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentAssetSortByFieldEnum """ + """ sortByField: SalesforceContentAssetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentAssets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentAssetsConnection """ @@ -237661,15 +239704,15 @@ type SalesforceUser implements OneGraphNode { """ contentDistributions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ + """ filter: SalesforceContentDistributionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDistributionsConnection """ @@ -237677,15 +239720,15 @@ type SalesforceUser implements OneGraphNode { """ contentDistributionViews(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionViewConnectionFilter """ + """ filter: SalesforceContentDistributionViewConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionViewSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDistributionViewSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionViewSortByFieldEnum """ + """ sortByField: SalesforceContentDistributionViewSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDistributionViews to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDistributionViewsConnection """ @@ -237693,15 +239736,15 @@ type SalesforceUser implements OneGraphNode { """ contentDocuments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentConnectionFilter """ + """ filter: SalesforceContentDocumentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocuments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentsConnection """ @@ -237709,15 +239752,15 @@ type SalesforceUser implements OneGraphNode { """ contentDocumentFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentFeedConnectionFilter """ + """ filter: SalesforceContentDocumentFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentFeedSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentFeedsConnection """ @@ -237725,15 +239768,15 @@ type SalesforceUser implements OneGraphNode { """ contentDocumentHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentHistoryConnectionFilter """ + """ filter: SalesforceContentDocumentHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentHistorySortByFieldEnum """ + """ sortByField: SalesforceContentDocumentHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentHistorysConnection """ @@ -237741,15 +239784,15 @@ type SalesforceUser implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -237757,15 +239800,15 @@ type SalesforceUser implements OneGraphNode { """ contentDocumentSubscriptions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentSubscriptionConnectionFilter """ + """ filter: SalesforceContentDocumentSubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentSubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentSubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentSubscriptionSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentSubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentSubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentSubscriptionsConnection """ @@ -237773,15 +239816,15 @@ type SalesforceUser implements OneGraphNode { """ contentFolders(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderConnectionFilter """ + """ filter: SalesforceContentFolderConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentFolderSortByFieldEnum """ + """ sortByCustomField: SalesforceContentFolderSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderSortByFieldEnum """ + """ sortByField: SalesforceContentFolderSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentFolders to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentFoldersConnection """ @@ -237789,15 +239832,15 @@ type SalesforceUser implements OneGraphNode { """ contentFolderItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderItemConnectionFilter """ + """ filter: SalesforceContentFolderItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentFolderItemSortByFieldEnum """ + """ sortByCustomField: SalesforceContentFolderItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderItemSortByFieldEnum """ + """ sortByField: SalesforceContentFolderItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentFolderItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentFolderItemsConnection """ @@ -237805,15 +239848,15 @@ type SalesforceUser implements OneGraphNode { """ contentFolderMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderMemberConnectionFilter """ + """ filter: SalesforceContentFolderMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentFolderMemberSortByFieldEnum """ + """ sortByCustomField: SalesforceContentFolderMemberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderMemberSortByFieldEnum """ + """ sortByField: SalesforceContentFolderMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentFolderMembers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentFolderMembersConnection """ @@ -237821,15 +239864,15 @@ type SalesforceUser implements OneGraphNode { """ contentNotifications(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentNotificationConnectionFilter """ + """ filter: SalesforceContentNotificationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentNotificationSortByFieldEnum """ + """ sortByCustomField: SalesforceContentNotificationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentNotificationSortByFieldEnum """ + """ sortByField: SalesforceContentNotificationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentNotifications to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentNotificationsConnection """ @@ -237837,15 +239880,15 @@ type SalesforceUser implements OneGraphNode { """ contentTagSubscriptions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentTagSubscriptionConnectionFilter """ + """ filter: SalesforceContentTagSubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentTagSubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentTagSubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentTagSubscriptionSortByFieldEnum """ + """ sortByField: SalesforceContentTagSubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentTagSubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentTagSubscriptionsConnection """ @@ -237853,15 +239896,15 @@ type SalesforceUser implements OneGraphNode { """ contentUserSubscriptions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentUserSubscriptionConnectionFilter """ + """ filter: SalesforceContentUserSubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentUserSubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentUserSubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentUserSubscriptionSortByFieldEnum """ + """ sortByField: SalesforceContentUserSubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentUserSubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentUserSubscriptionsConnection """ @@ -237869,15 +239912,15 @@ type SalesforceUser implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -237885,15 +239928,15 @@ type SalesforceUser implements OneGraphNode { """ contentVersionHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionHistoryConnectionFilter """ + """ filter: SalesforceContentVersionHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionHistorySortByFieldEnum """ + """ sortByField: SalesforceContentVersionHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersionHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionHistorysConnection """ @@ -237901,15 +239944,15 @@ type SalesforceUser implements OneGraphNode { """ contentVersionRatings(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionRatingConnectionFilter """ + """ filter: SalesforceContentVersionRatingConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionRatingSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionRatingSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionRatingSortByFieldEnum """ + """ sortByField: SalesforceContentVersionRatingSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersionRatings to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionRatingsConnection """ @@ -237917,15 +239960,15 @@ type SalesforceUser implements OneGraphNode { """ contentWorkspaces(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceConnectionFilter """ + """ filter: SalesforceContentWorkspaceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceSortByFieldEnum """ + """ sortByCustomField: SalesforceContentWorkspaceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceSortByFieldEnum """ + """ sortByField: SalesforceContentWorkspaceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentWorkspaces to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentWorkspacesConnection """ @@ -237933,15 +239976,15 @@ type SalesforceUser implements OneGraphNode { """ contentWorkspaceMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceMemberConnectionFilter """ + """ filter: SalesforceContentWorkspaceMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum """ + """ sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum """ + """ sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentWorkspaceMembers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentWorkspaceMembersConnection """ @@ -237949,15 +239992,15 @@ type SalesforceUser implements OneGraphNode { """ contentWorkspacePermissions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspacePermissionConnectionFilter """ + """ filter: SalesforceContentWorkspacePermissionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspacePermissionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentWorkspacePermissionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspacePermissionSortByFieldEnum """ + """ sortByField: SalesforceContentWorkspacePermissionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentWorkspacePermissions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentWorkspacePermissionsConnection """ @@ -237965,15 +240008,15 @@ type SalesforceUser implements OneGraphNode { """ contentWorkspaceSubscriptions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceSubscriptionConnectionFilter """ + """ filter: SalesforceContentWorkspaceSubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum """ + """ sortByField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentWorkspaceSubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentWorkspaceSubscriptionsConnection """ @@ -237981,15 +240024,15 @@ type SalesforceUser implements OneGraphNode { """ contracts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractConnectionFilter """ + """ filter: SalesforceContractConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractSortByFieldEnum """ + """ sortByCustomField: SalesforceContractSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractSortByFieldEnum """ + """ sortByField: SalesforceContractSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Contracts to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContractsConnection """ @@ -237997,15 +240040,15 @@ type SalesforceUser implements OneGraphNode { """ contractsSigned(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractConnectionFilter """ + """ filter: SalesforceContractConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractSortByFieldEnum """ + """ sortByCustomField: SalesforceContractSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractSortByFieldEnum """ + """ sortByField: SalesforceContractSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Contracts to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContractsConnection """ @@ -238013,15 +240056,15 @@ type SalesforceUser implements OneGraphNode { """ contractContactRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractContactRoleConnectionFilter """ + """ filter: SalesforceContractContactRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractContactRoleSortByFieldEnum """ + """ sortByCustomField: SalesforceContractContactRoleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractContactRoleSortByFieldEnum """ + """ sortByField: SalesforceContractContactRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContractContactRoles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContractContactRolesConnection """ @@ -238029,15 +240072,15 @@ type SalesforceUser implements OneGraphNode { """ contractFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractFeedConnectionFilter """ + """ filter: SalesforceContractFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceContractFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractFeedSortByFieldEnum """ + """ sortByField: SalesforceContractFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContractFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContractFeedsConnection """ @@ -238045,15 +240088,15 @@ type SalesforceUser implements OneGraphNode { """ contractHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractHistoryConnectionFilter """ + """ filter: SalesforceContractHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceContractHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractHistorySortByFieldEnum """ + """ sortByField: SalesforceContractHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContractHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContractHistorysConnection """ @@ -238061,15 +240104,15 @@ type SalesforceUser implements OneGraphNode { """ contractStatuses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractStatusConnectionFilter """ + """ filter: SalesforceContractStatusConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractStatusSortByFieldEnum """ + """ sortByCustomField: SalesforceContractStatusSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractStatusSortByFieldEnum """ + """ sortByField: SalesforceContractStatusSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContractStatuses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContractStatussConnection """ @@ -238077,15 +240120,15 @@ type SalesforceUser implements OneGraphNode { """ corsWhitelistEntries(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCorsWhitelistEntryConnectionFilter """ + """ filter: SalesforceCorsWhitelistEntryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCorsWhitelistEntrySortByFieldEnum """ + """ sortByCustomField: SalesforceCorsWhitelistEntrySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCorsWhitelistEntrySortByFieldEnum """ + """ sortByField: SalesforceCorsWhitelistEntrySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CorsWhitelistEntries to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCorsWhitelistEntrysConnection """ @@ -238093,15 +240136,15 @@ type SalesforceUser implements OneGraphNode { """ cronTriggers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCronTriggerConnectionFilter """ + """ filter: SalesforceCronTriggerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCronTriggerSortByFieldEnum """ + """ sortByCustomField: SalesforceCronTriggerSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCronTriggerSortByFieldEnum """ + """ sortByField: SalesforceCronTriggerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CronTriggers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCronTriggersConnection """ @@ -238109,15 +240152,15 @@ type SalesforceUser implements OneGraphNode { """ cspTrustedSites(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCspTrustedSiteConnectionFilter """ + """ filter: SalesforceCspTrustedSiteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCspTrustedSiteSortByFieldEnum """ + """ sortByCustomField: SalesforceCspTrustedSiteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCspTrustedSiteSortByFieldEnum """ + """ sortByField: SalesforceCspTrustedSiteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CspTrustedSites to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCspTrustedSitesConnection """ @@ -238125,15 +240168,15 @@ type SalesforceUser implements OneGraphNode { """ customBrands(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomBrandConnectionFilter """ + """ filter: SalesforceCustomBrandConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomBrandSortByFieldEnum """ + """ sortByCustomField: SalesforceCustomBrandSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomBrandSortByFieldEnum """ + """ sortByField: SalesforceCustomBrandSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CustomBrands to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCustomBrandsConnection """ @@ -238141,15 +240184,15 @@ type SalesforceUser implements OneGraphNode { """ customBrandAssets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomBrandAssetConnectionFilter """ + """ filter: SalesforceCustomBrandAssetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum """ + """ sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomBrandAssetSortByFieldEnum """ + """ sortByField: SalesforceCustomBrandAssetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CustomBrandAssets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCustomBrandAssetsConnection """ @@ -238157,15 +240200,15 @@ type SalesforceUser implements OneGraphNode { """ customPermissions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomPermissionConnectionFilter """ + """ filter: SalesforceCustomPermissionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomPermissionSortByFieldEnum """ + """ sortByCustomField: SalesforceCustomPermissionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomPermissionSortByFieldEnum """ + """ sortByField: SalesforceCustomPermissionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CustomPermissions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCustomPermissionsConnection """ @@ -238173,15 +240216,15 @@ type SalesforceUser implements OneGraphNode { """ customPermissionDependencies(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomPermissionDependencyConnectionFilter """ + """ filter: SalesforceCustomPermissionDependencyConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomPermissionDependencySortByFieldEnum """ + """ sortByCustomField: SalesforceCustomPermissionDependencySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomPermissionDependencySortByFieldEnum """ + """ sortByField: SalesforceCustomPermissionDependencySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CustomPermissionDependencies to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCustomPermissionDependencysConnection """ @@ -238189,15 +240232,15 @@ type SalesforceUser implements OneGraphNode { """ dandBCompanies(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDandBCompanyConnectionFilter """ + """ filter: SalesforceDandBCompanyConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDandBCompanySortByFieldEnum """ + """ sortByCustomField: SalesforceDandBCompanySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDandBCompanySortByFieldEnum """ + """ sortByField: SalesforceDandBCompanySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DandBCompanies to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDandBCompanysConnection """ @@ -238205,15 +240248,15 @@ type SalesforceUser implements OneGraphNode { """ dashboards(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardConnectionFilter """ + """ filter: SalesforceDashboardConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDashboardSortByFieldEnum """ + """ sortByCustomField: SalesforceDashboardSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardSortByFieldEnum """ + """ sortByField: SalesforceDashboardSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Dashboards to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDashboardsConnection """ @@ -238221,15 +240264,15 @@ type SalesforceUser implements OneGraphNode { """ dashboardComponentFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardComponentFeedConnectionFilter """ + """ filter: SalesforceDashboardComponentFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDashboardComponentFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceDashboardComponentFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardComponentFeedSortByFieldEnum """ + """ sortByField: SalesforceDashboardComponentFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DashboardComponentFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDashboardComponentFeedsConnection """ @@ -238237,15 +240280,15 @@ type SalesforceUser implements OneGraphNode { """ dashboardFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardFeedConnectionFilter """ + """ filter: SalesforceDashboardFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDashboardFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceDashboardFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardFeedSortByFieldEnum """ + """ sortByField: SalesforceDashboardFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DashboardFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDashboardFeedsConnection """ @@ -238253,15 +240296,15 @@ type SalesforceUser implements OneGraphNode { """ dataAssessmentFieldMetrics(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDataAssessmentFieldMetricConnectionFilter """ + """ filter: SalesforceDataAssessmentFieldMetricConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDataAssessmentFieldMetricSortByFieldEnum """ + """ sortByCustomField: SalesforceDataAssessmentFieldMetricSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDataAssessmentFieldMetricSortByFieldEnum """ + """ sortByField: SalesforceDataAssessmentFieldMetricSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DataAssessmentFieldMetrics to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDataAssessmentFieldMetricsConnection """ @@ -238269,15 +240312,15 @@ type SalesforceUser implements OneGraphNode { """ dataAssessmentMetrics(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDataAssessmentMetricConnectionFilter """ + """ filter: SalesforceDataAssessmentMetricConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDataAssessmentMetricSortByFieldEnum """ + """ sortByCustomField: SalesforceDataAssessmentMetricSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDataAssessmentMetricSortByFieldEnum """ + """ sortByField: SalesforceDataAssessmentMetricSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DataAssessmentMetrics to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDataAssessmentMetricsConnection """ @@ -238285,15 +240328,15 @@ type SalesforceUser implements OneGraphNode { """ dataAssessmentValueMetrics(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDataAssessmentValueMetricConnectionFilter """ + """ filter: SalesforceDataAssessmentValueMetricConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDataAssessmentValueMetricSortByFieldEnum """ + """ sortByCustomField: SalesforceDataAssessmentValueMetricSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDataAssessmentValueMetricSortByFieldEnum """ + """ sortByField: SalesforceDataAssessmentValueMetricSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DataAssessmentValueMetrics to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDataAssessmentValueMetricsConnection """ @@ -238301,15 +240344,15 @@ type SalesforceUser implements OneGraphNode { """ datacloudOwnedEntities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDatacloudOwnedEntityConnectionFilter """ + """ filter: SalesforceDatacloudOwnedEntityConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDatacloudOwnedEntitySortByFieldEnum """ + """ sortByCustomField: SalesforceDatacloudOwnedEntitySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDatacloudOwnedEntitySortByFieldEnum """ + """ sortByField: SalesforceDatacloudOwnedEntitySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DatacloudOwnedEntities to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDatacloudOwnedEntitysConnection """ @@ -238317,15 +240360,15 @@ type SalesforceUser implements OneGraphNode { """ datacloudPurchaseUsages(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDatacloudPurchaseUsageConnectionFilter """ + """ filter: SalesforceDatacloudPurchaseUsageConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDatacloudPurchaseUsageSortByFieldEnum """ + """ sortByCustomField: SalesforceDatacloudPurchaseUsageSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDatacloudPurchaseUsageSortByFieldEnum """ + """ sortByField: SalesforceDatacloudPurchaseUsageSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DatacloudPurchaseUsages to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDatacloudPurchaseUsagesConnection """ @@ -238333,15 +240376,15 @@ type SalesforceUser implements OneGraphNode { """ declinedEventRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDeclinedEventRelationConnectionFilter """ + """ filter: SalesforceDeclinedEventRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDeclinedEventRelationSortByFieldEnum """ + """ sortByField: SalesforceDeclinedEventRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DeclinedEventRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDeclinedEventRelationsConnection """ @@ -238349,15 +240392,15 @@ type SalesforceUser implements OneGraphNode { """ documents(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDocumentConnectionFilter """ + """ filter: SalesforceDocumentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDocumentSortByFieldEnum """ + """ sortByCustomField: SalesforceDocumentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDocumentSortByFieldEnum """ + """ sortByField: SalesforceDocumentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Documents to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDocumentsConnection """ @@ -238365,15 +240408,15 @@ type SalesforceUser implements OneGraphNode { """ documentAttachmentMaps(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDocumentAttachmentMapConnectionFilter """ + """ filter: SalesforceDocumentAttachmentMapConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDocumentAttachmentMapSortByFieldEnum """ + """ sortByCustomField: SalesforceDocumentAttachmentMapSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum """ + """ sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DocumentAttachmentMaps to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDocumentAttachmentMapsConnection """ @@ -238381,15 +240424,15 @@ type SalesforceUser implements OneGraphNode { """ domains(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDomainConnectionFilter """ + """ filter: SalesforceDomainConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDomainSortByFieldEnum """ + """ sortByCustomField: SalesforceDomainSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDomainSortByFieldEnum """ + """ sortByField: SalesforceDomainSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Domains to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDomainsConnection """ @@ -238397,15 +240440,15 @@ type SalesforceUser implements OneGraphNode { """ domainSites(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDomainSiteConnectionFilter """ + """ filter: SalesforceDomainSiteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDomainSiteSortByFieldEnum """ + """ sortByCustomField: SalesforceDomainSiteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDomainSiteSortByFieldEnum """ + """ sortByField: SalesforceDomainSiteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DomainSites to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDomainSitesConnection """ @@ -238413,15 +240456,15 @@ type SalesforceUser implements OneGraphNode { """ duplicateRecordItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRecordItemConnectionFilter """ + """ filter: SalesforceDuplicateRecordItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum """ + """ sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum """ + """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DuplicateRecordItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDuplicateRecordItemsConnection """ @@ -238429,15 +240472,15 @@ type SalesforceUser implements OneGraphNode { """ duplicateRecordSets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRecordSetConnectionFilter """ + """ filter: SalesforceDuplicateRecordSetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDuplicateRecordSetSortByFieldEnum """ + """ sortByCustomField: SalesforceDuplicateRecordSetSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRecordSetSortByFieldEnum """ + """ sortByField: SalesforceDuplicateRecordSetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DuplicateRecordSets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDuplicateRecordSetsConnection """ @@ -238445,15 +240488,15 @@ type SalesforceUser implements OneGraphNode { """ duplicateRules(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRuleConnectionFilter """ + """ filter: SalesforceDuplicateRuleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDuplicateRuleSortByFieldEnum """ + """ sortByCustomField: SalesforceDuplicateRuleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRuleSortByFieldEnum """ + """ sortByField: SalesforceDuplicateRuleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DuplicateRules to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDuplicateRulesConnection """ @@ -238461,15 +240504,15 @@ type SalesforceUser implements OneGraphNode { """ emailCaptures(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailCaptureConnectionFilter """ + """ filter: SalesforceEmailCaptureConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailCaptureSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailCaptureSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailCaptureSortByFieldEnum """ + """ sortByField: SalesforceEmailCaptureSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailCaptures to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailCapturesConnection """ @@ -238477,15 +240520,15 @@ type SalesforceUser implements OneGraphNode { """ emailDomainKeys(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailDomainKeyConnectionFilter """ + """ filter: SalesforceEmailDomainKeyConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailDomainKeySortByFieldEnum """ + """ sortByCustomField: SalesforceEmailDomainKeySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailDomainKeySortByFieldEnum """ + """ sortByField: SalesforceEmailDomainKeySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailDomainKeys to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailDomainKeysConnection """ @@ -238493,15 +240536,15 @@ type SalesforceUser implements OneGraphNode { """ emailMessages(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ + """ filter: SalesforceEmailMessageConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailMessagesConnection """ @@ -238509,15 +240552,15 @@ type SalesforceUser implements OneGraphNode { """ emailMessageRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageRelationConnectionFilter """ + """ filter: SalesforceEmailMessageRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageRelationSortByFieldEnum """ + """ sortByField: SalesforceEmailMessageRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailMessageRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailMessageRelationsConnection """ @@ -238525,15 +240568,15 @@ type SalesforceUser implements OneGraphNode { """ emailServicesAddresses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailServicesAddressConnectionFilter """ + """ filter: SalesforceEmailServicesAddressConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailServicesAddressSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailServicesAddressSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailServicesAddressSortByFieldEnum """ + """ sortByField: SalesforceEmailServicesAddressSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailServicesAddresses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailServicesAddresssConnection """ @@ -238541,15 +240584,15 @@ type SalesforceUser implements OneGraphNode { """ emailServicesFunctions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailServicesFunctionConnectionFilter """ + """ filter: SalesforceEmailServicesFunctionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailServicesFunctionSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailServicesFunctionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailServicesFunctionSortByFieldEnum """ + """ sortByField: SalesforceEmailServicesFunctionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailServicesFunctions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailServicesFunctionsConnection """ @@ -238557,15 +240600,15 @@ type SalesforceUser implements OneGraphNode { """ emailTemplates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailTemplateConnectionFilter """ + """ filter: SalesforceEmailTemplateConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailTemplateSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailTemplateSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailTemplateSortByFieldEnum """ + """ sortByField: SalesforceEmailTemplateSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailTemplates to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailTemplatesConnection """ @@ -238573,15 +240616,15 @@ type SalesforceUser implements OneGraphNode { """ entitySubscriptions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -238589,15 +240632,15 @@ type SalesforceUser implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -238605,15 +240648,15 @@ type SalesforceUser implements OneGraphNode { """ feedSubscriptions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -238621,15 +240664,15 @@ type SalesforceUser implements OneGraphNode { """ events(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ + """ filter: SalesforceEventConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ + """ sortByField: SalesforceEventSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Events to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventsConnection """ @@ -238637,15 +240680,15 @@ type SalesforceUser implements OneGraphNode { """ eventFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventFeedConnectionFilter """ + """ filter: SalesforceEventFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceEventFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventFeedSortByFieldEnum """ + """ sortByField: SalesforceEventFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EventFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventFeedsConnection """ @@ -238653,15 +240696,15 @@ type SalesforceUser implements OneGraphNode { """ eventLogFiles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventLogFileConnectionFilter """ + """ filter: SalesforceEventLogFileConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventLogFileSortByFieldEnum """ + """ sortByCustomField: SalesforceEventLogFileSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventLogFileSortByFieldEnum """ + """ sortByField: SalesforceEventLogFileSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EventLogFiles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventLogFilesConnection """ @@ -238669,15 +240712,15 @@ type SalesforceUser implements OneGraphNode { """ eventRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventRelationConnectionFilter """ + """ filter: SalesforceEventRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceEventRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventRelationSortByFieldEnum """ + """ sortByField: SalesforceEventRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EventRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventRelationsConnection """ @@ -238685,15 +240728,15 @@ type SalesforceUser implements OneGraphNode { """ externalDataSources(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceExternalDataSourceConnectionFilter """ + """ filter: SalesforceExternalDataSourceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum """ + """ sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceExternalDataSourceSortByFieldEnum """ + """ sortByField: SalesforceExternalDataSourceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ExternalDataSources to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceExternalDataSourcesConnection """ @@ -238701,15 +240744,15 @@ type SalesforceUser implements OneGraphNode { """ externalDataUserAuths(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceExternalDataUserAuthConnectionFilter """ + """ filter: SalesforceExternalDataUserAuthConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum """ + """ sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceExternalDataUserAuthSortByFieldEnum """ + """ sortByField: SalesforceExternalDataUserAuthSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ExternalDataUserAuths to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceExternalDataUserAuthsConnection """ @@ -238717,15 +240760,15 @@ type SalesforceUser implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -238733,15 +240776,15 @@ type SalesforceUser implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -238749,15 +240792,15 @@ type SalesforceUser implements OneGraphNode { """ feedPollChoices(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollChoicesConnection """ @@ -238765,15 +240808,15 @@ type SalesforceUser implements OneGraphNode { """ feedPollVotes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ + """ filter: SalesforceFeedPollVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedPollVotesConnection """ @@ -238781,15 +240824,15 @@ type SalesforceUser implements OneGraphNode { """ feedRevisions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedRevisionConnectionFilter """ + """ filter: SalesforceFeedRevisionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedRevisionSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedRevisionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedRevisionSortByFieldEnum """ + """ sortByField: SalesforceFeedRevisionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedRevisions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedRevisionsConnection """ @@ -238797,15 +240840,15 @@ type SalesforceUser implements OneGraphNode { """ fileSearchActivities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFileSearchActivityConnectionFilter """ + """ filter: SalesforceFileSearchActivityConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFileSearchActivitySortByFieldEnum """ + """ sortByCustomField: SalesforceFileSearchActivitySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFileSearchActivitySortByFieldEnum """ + """ sortByField: SalesforceFileSearchActivitySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FileSearchActivities to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFileSearchActivitysConnection """ @@ -238813,15 +240856,15 @@ type SalesforceUser implements OneGraphNode { """ flowInterviews(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowInterviewConnectionFilter """ + """ filter: SalesforceFlowInterviewConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowInterviewSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowInterviewSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowInterviewSortByFieldEnum """ + """ sortByField: SalesforceFlowInterviewSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowInterviews to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowInterviewsConnection """ @@ -238829,15 +240872,15 @@ type SalesforceUser implements OneGraphNode { """ flowInterviewShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowInterviewShareConnectionFilter """ + """ filter: SalesforceFlowInterviewShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowInterviewShareSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowInterviewShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowInterviewShareSortByFieldEnum """ + """ sortByField: SalesforceFlowInterviewShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowInterviewShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowInterviewSharesConnection """ @@ -238845,15 +240888,15 @@ type SalesforceUser implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -238861,15 +240904,15 @@ type SalesforceUser implements OneGraphNode { """ folders(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFolderConnectionFilter """ + """ filter: SalesforceFolderConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFolderSortByFieldEnum """ + """ sortByCustomField: SalesforceFolderSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFolderSortByFieldEnum """ + """ sortByField: SalesforceFolderSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Folders to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFoldersConnection """ @@ -238877,15 +240920,15 @@ type SalesforceUser implements OneGraphNode { """ forecastShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceForecastShareConnectionFilter """ + """ filter: SalesforceForecastShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceForecastShareSortByFieldEnum """ + """ sortByCustomField: SalesforceForecastShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceForecastShareSortByFieldEnum """ + """ sortByField: SalesforceForecastShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ForecastShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceForecastSharesConnection """ @@ -238893,15 +240936,15 @@ type SalesforceUser implements OneGraphNode { """ grantedByLicenses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGrantedByLicenseConnectionFilter """ + """ filter: SalesforceGrantedByLicenseConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceGrantedByLicenseSortByFieldEnum """ + """ sortByCustomField: SalesforceGrantedByLicenseSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGrantedByLicenseSortByFieldEnum """ + """ sortByField: SalesforceGrantedByLicenseSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of GrantedByLicenses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceGrantedByLicensesConnection """ @@ -238909,15 +240952,15 @@ type SalesforceUser implements OneGraphNode { """ groups(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGroupConnectionFilter """ + """ filter: SalesforceGroupConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceGroupSortByFieldEnum """ + """ sortByCustomField: SalesforceGroupSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGroupSortByFieldEnum """ + """ sortByField: SalesforceGroupSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Groups to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceGroupsConnection """ @@ -238925,15 +240968,15 @@ type SalesforceUser implements OneGraphNode { """ groupMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGroupMemberConnectionFilter """ + """ filter: SalesforceGroupMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceGroupMemberSortByFieldEnum """ + """ sortByCustomField: SalesforceGroupMemberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGroupMemberSortByFieldEnum """ + """ sortByField: SalesforceGroupMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of GroupMembers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceGroupMembersConnection """ @@ -238941,15 +240984,15 @@ type SalesforceUser implements OneGraphNode { """ holidays(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceHolidayConnectionFilter """ + """ filter: SalesforceHolidayConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceHolidaySortByFieldEnum """ + """ sortByCustomField: SalesforceHolidaySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceHolidaySortByFieldEnum """ + """ sortByField: SalesforceHolidaySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Holidays to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceHolidaysConnection """ @@ -238957,15 +241000,15 @@ type SalesforceUser implements OneGraphNode { """ ideas(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdeaConnectionFilter """ + """ filter: SalesforceIdeaConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceIdeaSortByFieldEnum """ + """ sortByCustomField: SalesforceIdeaSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdeaSortByFieldEnum """ + """ sortByField: SalesforceIdeaSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Ideas to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceIdeasConnection """ @@ -238973,15 +241016,15 @@ type SalesforceUser implements OneGraphNode { """ ideaComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdeaCommentConnectionFilter """ + """ filter: SalesforceIdeaCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceIdeaCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceIdeaCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdeaCommentSortByFieldEnum """ + """ sortByField: SalesforceIdeaCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of IdeaComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceIdeaCommentsConnection """ @@ -238989,15 +241032,15 @@ type SalesforceUser implements OneGraphNode { """ idpEventLogs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdpEventLogConnectionFilter """ + """ filter: SalesforceIdpEventLogConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceIdpEventLogSortByFieldEnum """ + """ sortByCustomField: SalesforceIdpEventLogSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdpEventLogSortByFieldEnum """ + """ sortByField: SalesforceIdpEventLogSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of IdpEventLogs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceIdpEventLogsConnection """ @@ -239005,15 +241048,15 @@ type SalesforceUser implements OneGraphNode { """ installedMobileApps(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceInstalledMobileAppConnectionFilter """ + """ filter: SalesforceInstalledMobileAppConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceInstalledMobileAppSortByFieldEnum """ + """ sortByCustomField: SalesforceInstalledMobileAppSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceInstalledMobileAppSortByFieldEnum """ + """ sortByField: SalesforceInstalledMobileAppSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of InstalledMobileApps to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceInstalledMobileAppsConnection """ @@ -239021,15 +241064,15 @@ type SalesforceUser implements OneGraphNode { """ knowledgeableUsers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceKnowledgeableUserConnectionFilter """ + """ filter: SalesforceKnowledgeableUserConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceKnowledgeableUserSortByFieldEnum """ + """ sortByCustomField: SalesforceKnowledgeableUserSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceKnowledgeableUserSortByFieldEnum """ + """ sortByField: SalesforceKnowledgeableUserSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of KnowledgeableUsers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceKnowledgeableUsersConnection """ @@ -239037,15 +241080,15 @@ type SalesforceUser implements OneGraphNode { """ leads(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadConnectionFilter """ + """ filter: SalesforceLeadConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadSortByFieldEnum """ + """ sortByCustomField: SalesforceLeadSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadSortByFieldEnum """ + """ sortByField: SalesforceLeadSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Leads to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadsConnection """ @@ -239053,15 +241096,15 @@ type SalesforceUser implements OneGraphNode { """ leadCleanInfos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadCleanInfoConnectionFilter """ + """ filter: SalesforceLeadCleanInfoConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadCleanInfoSortByFieldEnum """ + """ sortByCustomField: SalesforceLeadCleanInfoSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadCleanInfoSortByFieldEnum """ + """ sortByField: SalesforceLeadCleanInfoSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LeadCleanInfos to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadCleanInfosConnection """ @@ -239069,15 +241112,15 @@ type SalesforceUser implements OneGraphNode { """ leadCleanInfoReviewers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadCleanInfoConnectionFilter """ + """ filter: SalesforceLeadCleanInfoConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadCleanInfoSortByFieldEnum """ + """ sortByCustomField: SalesforceLeadCleanInfoSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadCleanInfoSortByFieldEnum """ + """ sortByField: SalesforceLeadCleanInfoSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LeadCleanInfos to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadCleanInfosConnection """ @@ -239085,15 +241128,15 @@ type SalesforceUser implements OneGraphNode { """ leadFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadFeedConnectionFilter """ + """ filter: SalesforceLeadFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceLeadFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadFeedSortByFieldEnum """ + """ sortByField: SalesforceLeadFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LeadFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadFeedsConnection """ @@ -239101,15 +241144,15 @@ type SalesforceUser implements OneGraphNode { """ leadHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadHistoryConnectionFilter """ + """ filter: SalesforceLeadHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceLeadHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadHistorySortByFieldEnum """ + """ sortByField: SalesforceLeadHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LeadHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadHistorysConnection """ @@ -239117,15 +241160,15 @@ type SalesforceUser implements OneGraphNode { """ leadShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadShareConnectionFilter """ + """ filter: SalesforceLeadShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadShareSortByFieldEnum """ + """ sortByCustomField: SalesforceLeadShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadShareSortByFieldEnum """ + """ sortByField: SalesforceLeadShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LeadShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadSharesConnection """ @@ -239133,15 +241176,15 @@ type SalesforceUser implements OneGraphNode { """ leadStatuses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadStatusConnectionFilter """ + """ filter: SalesforceLeadStatusConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadStatusSortByFieldEnum """ + """ sortByCustomField: SalesforceLeadStatusSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadStatusSortByFieldEnum """ + """ sortByField: SalesforceLeadStatusSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LeadStatuses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadStatussConnection """ @@ -239149,15 +241192,15 @@ type SalesforceUser implements OneGraphNode { """ lightningComponentBundles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLightningComponentBundleConnectionFilter """ + """ filter: SalesforceLightningComponentBundleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLightningComponentBundleSortByFieldEnum """ + """ sortByCustomField: SalesforceLightningComponentBundleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLightningComponentBundleSortByFieldEnum """ + """ sortByField: SalesforceLightningComponentBundleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LightningComponentBundles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLightningComponentBundlesConnection """ @@ -239165,15 +241208,15 @@ type SalesforceUser implements OneGraphNode { """ lightningComponentResources(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLightningComponentResourceConnectionFilter """ + """ filter: SalesforceLightningComponentResourceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLightningComponentResourceSortByFieldEnum """ + """ sortByCustomField: SalesforceLightningComponentResourceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLightningComponentResourceSortByFieldEnum """ + """ sortByField: SalesforceLightningComponentResourceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LightningComponentResources to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLightningComponentResourcesConnection """ @@ -239181,15 +241224,15 @@ type SalesforceUser implements OneGraphNode { """ listEmails(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListEmailConnectionFilter """ + """ filter: SalesforceListEmailConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceListEmailSortByFieldEnum """ + """ sortByCustomField: SalesforceListEmailSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListEmailSortByFieldEnum """ + """ sortByField: SalesforceListEmailSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ListEmails to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceListEmailsConnection """ @@ -239197,15 +241240,15 @@ type SalesforceUser implements OneGraphNode { """ listEmailRecipientSources(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListEmailRecipientSourceConnectionFilter """ + """ filter: SalesforceListEmailRecipientSourceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceListEmailRecipientSourceSortByFieldEnum """ + """ sortByCustomField: SalesforceListEmailRecipientSourceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum """ + """ sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ListEmailRecipientSources to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceListEmailRecipientSourcesConnection """ @@ -239213,15 +241256,15 @@ type SalesforceUser implements OneGraphNode { """ listEmailShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListEmailShareConnectionFilter """ + """ filter: SalesforceListEmailShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceListEmailShareSortByFieldEnum """ + """ sortByCustomField: SalesforceListEmailShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListEmailShareSortByFieldEnum """ + """ sortByField: SalesforceListEmailShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ListEmailShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceListEmailSharesConnection """ @@ -239229,15 +241272,15 @@ type SalesforceUser implements OneGraphNode { """ listViews(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListViewConnectionFilter """ + """ filter: SalesforceListViewConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceListViewSortByFieldEnum """ + """ sortByCustomField: SalesforceListViewSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListViewSortByFieldEnum """ + """ sortByField: SalesforceListViewSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ListViews to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceListViewsConnection """ @@ -239245,15 +241288,15 @@ type SalesforceUser implements OneGraphNode { """ listViewCharts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListViewChartConnectionFilter """ + """ filter: SalesforceListViewChartConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceListViewChartSortByFieldEnum """ + """ sortByCustomField: SalesforceListViewChartSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListViewChartSortByFieldEnum """ + """ sortByField: SalesforceListViewChartSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ListViewCharts to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceListViewChartsConnection """ @@ -239261,15 +241304,15 @@ type SalesforceUser implements OneGraphNode { """ loginGeos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLoginGeoConnectionFilter """ + """ filter: SalesforceLoginGeoConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLoginGeoSortByFieldEnum """ + """ sortByCustomField: SalesforceLoginGeoSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLoginGeoSortByFieldEnum """ + """ sortByField: SalesforceLoginGeoSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LoginGeos to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLoginGeosConnection """ @@ -239277,15 +241320,15 @@ type SalesforceUser implements OneGraphNode { """ loginHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLoginHistoryConnectionFilter """ + """ filter: SalesforceLoginHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLoginHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceLoginHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLoginHistorySortByFieldEnum """ + """ sortByField: SalesforceLoginHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LoginHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLoginHistorysConnection """ @@ -239293,15 +241336,15 @@ type SalesforceUser implements OneGraphNode { """ loginIps(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLoginIpConnectionFilter """ + """ filter: SalesforceLoginIpConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLoginIpSortByFieldEnum """ + """ sortByCustomField: SalesforceLoginIpSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLoginIpSortByFieldEnum """ + """ sortByField: SalesforceLoginIpSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LoginIps to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLoginIpsConnection """ @@ -239309,15 +241352,15 @@ type SalesforceUser implements OneGraphNode { """ macros(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroConnectionFilter """ + """ filter: SalesforceMacroConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMacroSortByFieldEnum """ + """ sortByCustomField: SalesforceMacroSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroSortByFieldEnum """ + """ sortByField: SalesforceMacroSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Macros to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceMacrosConnection """ @@ -239325,15 +241368,15 @@ type SalesforceUser implements OneGraphNode { """ macroHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroHistoryConnectionFilter """ + """ filter: SalesforceMacroHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMacroHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceMacroHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroHistorySortByFieldEnum """ + """ sortByField: SalesforceMacroHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of MacroHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceMacroHistorysConnection """ @@ -239341,15 +241384,15 @@ type SalesforceUser implements OneGraphNode { """ macroInstructions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroInstructionConnectionFilter """ + """ filter: SalesforceMacroInstructionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMacroInstructionSortByFieldEnum """ + """ sortByCustomField: SalesforceMacroInstructionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroInstructionSortByFieldEnum """ + """ sortByField: SalesforceMacroInstructionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of MacroInstructions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceMacroInstructionsConnection """ @@ -239357,15 +241400,15 @@ type SalesforceUser implements OneGraphNode { """ macroShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroShareConnectionFilter """ + """ filter: SalesforceMacroShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMacroShareSortByFieldEnum """ + """ sortByCustomField: SalesforceMacroShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroShareSortByFieldEnum """ + """ sortByField: SalesforceMacroShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of MacroShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceMacroSharesConnection """ @@ -239373,15 +241416,15 @@ type SalesforceUser implements OneGraphNode { """ mailmergeTemplates(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMailmergeTemplateConnectionFilter """ + """ filter: SalesforceMailmergeTemplateConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMailmergeTemplateSortByFieldEnum """ + """ sortByCustomField: SalesforceMailmergeTemplateSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMailmergeTemplateSortByFieldEnum """ + """ sortByField: SalesforceMailmergeTemplateSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of MailmergeTemplates to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceMailmergeTemplatesConnection """ @@ -239389,15 +241432,15 @@ type SalesforceUser implements OneGraphNode { """ matchingRules(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMatchingRuleConnectionFilter """ + """ filter: SalesforceMatchingRuleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMatchingRuleSortByFieldEnum """ + """ sortByCustomField: SalesforceMatchingRuleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMatchingRuleSortByFieldEnum """ + """ sortByField: SalesforceMatchingRuleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of MatchingRules to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceMatchingRulesConnection """ @@ -239405,15 +241448,15 @@ type SalesforceUser implements OneGraphNode { """ matchingRuleItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMatchingRuleItemConnectionFilter """ + """ filter: SalesforceMatchingRuleItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMatchingRuleItemSortByFieldEnum """ + """ sortByCustomField: SalesforceMatchingRuleItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMatchingRuleItemSortByFieldEnum """ + """ sortByField: SalesforceMatchingRuleItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of MatchingRuleItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceMatchingRuleItemsConnection """ @@ -239421,15 +241464,15 @@ type SalesforceUser implements OneGraphNode { """ namedCredentials(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNamedCredentialConnectionFilter """ + """ filter: SalesforceNamedCredentialConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNamedCredentialSortByFieldEnum """ + """ sortByCustomField: SalesforceNamedCredentialSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNamedCredentialSortByFieldEnum """ + """ sortByField: SalesforceNamedCredentialSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of NamedCredentials to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceNamedCredentialsConnection """ @@ -239437,15 +241480,15 @@ type SalesforceUser implements OneGraphNode { """ notes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNoteConnectionFilter """ + """ filter: SalesforceNoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNoteSortByFieldEnum """ + """ sortByCustomField: SalesforceNoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNoteSortByFieldEnum """ + """ sortByField: SalesforceNoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Notes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceNotesConnection """ @@ -239453,15 +241496,15 @@ type SalesforceUser implements OneGraphNode { """ objectPermissionsPlural(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceObjectPermissionsConnectionFilter """ + """ filter: SalesforceObjectPermissionsConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceObjectPermissionsSortByFieldEnum """ + """ sortByCustomField: SalesforceObjectPermissionsSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceObjectPermissionsSortByFieldEnum """ + """ sortByField: SalesforceObjectPermissionsSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ObjectPermissions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceObjectPermissionssConnection """ @@ -239469,15 +241512,15 @@ type SalesforceUser implements OneGraphNode { """ opportunities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityConnectionFilter """ + """ filter: SalesforceOpportunityConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunitySortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunitySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunitySortByFieldEnum """ + """ sortByField: SalesforceOpportunitySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Opportunities to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunitysConnection """ @@ -239485,15 +241528,15 @@ type SalesforceUser implements OneGraphNode { """ opportunityCompetitors(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityCompetitorConnectionFilter """ + """ filter: SalesforceOpportunityCompetitorConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityCompetitorSortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityCompetitorSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityCompetitorSortByFieldEnum """ + """ sortByField: SalesforceOpportunityCompetitorSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityCompetitors to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityCompetitorsConnection """ @@ -239501,15 +241544,15 @@ type SalesforceUser implements OneGraphNode { """ opportunityContactRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityContactRoleConnectionFilter """ + """ filter: SalesforceOpportunityContactRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityContactRoleSortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityContactRoleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityContactRoleSortByFieldEnum """ + """ sortByField: SalesforceOpportunityContactRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityContactRoles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityContactRolesConnection """ @@ -239517,15 +241560,15 @@ type SalesforceUser implements OneGraphNode { """ opportunityFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityFeedConnectionFilter """ + """ filter: SalesforceOpportunityFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityFeedSortByFieldEnum """ + """ sortByField: SalesforceOpportunityFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityFeedsConnection """ @@ -239533,15 +241576,15 @@ type SalesforceUser implements OneGraphNode { """ opportunityFieldHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityFieldHistoryConnectionFilter """ + """ filter: SalesforceOpportunityFieldHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityFieldHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityFieldHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityFieldHistorySortByFieldEnum """ + """ sortByField: SalesforceOpportunityFieldHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityFieldHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityFieldHistorysConnection """ @@ -239549,15 +241592,15 @@ type SalesforceUser implements OneGraphNode { """ opportunityHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityHistoryConnectionFilter """ + """ filter: SalesforceOpportunityHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityHistorySortByFieldEnum """ + """ sortByField: SalesforceOpportunityHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityHistorysConnection """ @@ -239565,15 +241608,15 @@ type SalesforceUser implements OneGraphNode { """ opportunityLineItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityLineItemConnectionFilter """ + """ filter: SalesforceOpportunityLineItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityLineItemSortByFieldEnum """ + """ sortByField: SalesforceOpportunityLineItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityLineItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityLineItemsConnection """ @@ -239581,15 +241624,15 @@ type SalesforceUser implements OneGraphNode { """ opportunityPartners(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityPartnerConnectionFilter """ + """ filter: SalesforceOpportunityPartnerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityPartnerSortByFieldEnum """ + """ sortByField: SalesforceOpportunityPartnerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityPartners to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityPartnersConnection """ @@ -239597,15 +241640,15 @@ type SalesforceUser implements OneGraphNode { """ opportunityShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityShareConnectionFilter """ + """ filter: SalesforceOpportunityShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityShareSortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityShareSortByFieldEnum """ + """ sortByField: SalesforceOpportunityShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunitySharesConnection """ @@ -239613,15 +241656,15 @@ type SalesforceUser implements OneGraphNode { """ opportunityStages(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityStageConnectionFilter """ + """ filter: SalesforceOpportunityStageConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityStageSortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityStageSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityStageSortByFieldEnum """ + """ sortByField: SalesforceOpportunityStageSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityStages to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityStagesConnection """ @@ -239629,15 +241672,15 @@ type SalesforceUser implements OneGraphNode { """ orders(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderConnectionFilter """ + """ filter: SalesforceOrderConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderSortByFieldEnum """ + """ sortByCustomField: SalesforceOrderSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderSortByFieldEnum """ + """ sortByField: SalesforceOrderSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Orders to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrdersConnection """ @@ -239645,15 +241688,15 @@ type SalesforceUser implements OneGraphNode { """ orderFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderFeedConnectionFilter """ + """ filter: SalesforceOrderFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceOrderFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderFeedSortByFieldEnum """ + """ sortByField: SalesforceOrderFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrderFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderFeedsConnection """ @@ -239661,15 +241704,15 @@ type SalesforceUser implements OneGraphNode { """ orderHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderHistoryConnectionFilter """ + """ filter: SalesforceOrderHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceOrderHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderHistorySortByFieldEnum """ + """ sortByField: SalesforceOrderHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrderHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderHistorysConnection """ @@ -239677,15 +241720,15 @@ type SalesforceUser implements OneGraphNode { """ orderItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemConnectionFilter """ + """ filter: SalesforceOrderItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderItemSortByFieldEnum """ + """ sortByCustomField: SalesforceOrderItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemSortByFieldEnum """ + """ sortByField: SalesforceOrderItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrderItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderItemsConnection """ @@ -239693,15 +241736,15 @@ type SalesforceUser implements OneGraphNode { """ orderItemFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemFeedConnectionFilter """ + """ filter: SalesforceOrderItemFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderItemFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceOrderItemFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemFeedSortByFieldEnum """ + """ sortByField: SalesforceOrderItemFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrderItemFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderItemFeedsConnection """ @@ -239709,15 +241752,15 @@ type SalesforceUser implements OneGraphNode { """ orderItemHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemHistoryConnectionFilter """ + """ filter: SalesforceOrderItemHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderItemHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceOrderItemHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemHistorySortByFieldEnum """ + """ sortByField: SalesforceOrderItemHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrderItemHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderItemHistorysConnection """ @@ -239725,15 +241768,15 @@ type SalesforceUser implements OneGraphNode { """ orderShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderShareConnectionFilter """ + """ filter: SalesforceOrderShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderShareSortByFieldEnum """ + """ sortByCustomField: SalesforceOrderShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderShareSortByFieldEnum """ + """ sortByField: SalesforceOrderShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrderShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrderSharesConnection """ @@ -239741,15 +241784,15 @@ type SalesforceUser implements OneGraphNode { """ orgDeleteRequests(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrgDeleteRequestConnectionFilter """ + """ filter: SalesforceOrgDeleteRequestConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrgDeleteRequestSortByFieldEnum """ + """ sortByCustomField: SalesforceOrgDeleteRequestSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrgDeleteRequestSortByFieldEnum """ + """ sortByField: SalesforceOrgDeleteRequestSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrgDeleteRequests to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrgDeleteRequestsConnection """ @@ -239757,15 +241800,15 @@ type SalesforceUser implements OneGraphNode { """ orgDeleteRequestShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrgDeleteRequestShareConnectionFilter """ + """ filter: SalesforceOrgDeleteRequestShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrgDeleteRequestShareSortByFieldEnum """ + """ sortByCustomField: SalesforceOrgDeleteRequestShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrgDeleteRequestShareSortByFieldEnum """ + """ sortByField: SalesforceOrgDeleteRequestShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrgDeleteRequestShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrgDeleteRequestSharesConnection """ @@ -239773,15 +241816,15 @@ type SalesforceUser implements OneGraphNode { """ orgWideEmailAddresses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrgWideEmailAddressConnectionFilter """ + """ filter: SalesforceOrgWideEmailAddressConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrgWideEmailAddressSortByFieldEnum """ + """ sortByCustomField: SalesforceOrgWideEmailAddressSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrgWideEmailAddressSortByFieldEnum """ + """ sortByField: SalesforceOrgWideEmailAddressSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OrgWideEmailAddresses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrgWideEmailAddresssConnection """ @@ -239789,15 +241832,15 @@ type SalesforceUser implements OneGraphNode { """ organizations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrganizationConnectionFilter """ + """ filter: SalesforceOrganizationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrganizationSortByFieldEnum """ + """ sortByCustomField: SalesforceOrganizationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrganizationSortByFieldEnum """ + """ sortByField: SalesforceOrganizationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Organizations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrganizationsConnection """ @@ -239805,15 +241848,15 @@ type SalesforceUser implements OneGraphNode { """ partners(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePartnerConnectionFilter """ + """ filter: SalesforcePartnerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePartnerSortByFieldEnum """ + """ sortByCustomField: SalesforcePartnerSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePartnerSortByFieldEnum """ + """ sortByField: SalesforcePartnerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Partners to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePartnersConnection """ @@ -239821,15 +241864,15 @@ type SalesforceUser implements OneGraphNode { """ partnerRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePartnerRoleConnectionFilter """ + """ filter: SalesforcePartnerRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePartnerRoleSortByFieldEnum """ + """ sortByCustomField: SalesforcePartnerRoleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePartnerRoleSortByFieldEnum """ + """ sortByField: SalesforcePartnerRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of PartnerRoles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePartnerRolesConnection """ @@ -239837,15 +241880,15 @@ type SalesforceUser implements OneGraphNode { """ permissionSets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetConnectionFilter """ + """ filter: SalesforcePermissionSetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePermissionSetSortByFieldEnum """ + """ sortByCustomField: SalesforcePermissionSetSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetSortByFieldEnum """ + """ sortByField: SalesforcePermissionSetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of PermissionSets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePermissionSetsConnection """ @@ -239853,15 +241896,15 @@ type SalesforceUser implements OneGraphNode { """ permissionSetAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetAssignmentConnectionFilter """ + """ filter: SalesforcePermissionSetAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePermissionSetAssignmentSortByFieldEnum """ + """ sortByCustomField: SalesforcePermissionSetAssignmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetAssignmentSortByFieldEnum """ + """ sortByField: SalesforcePermissionSetAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of PermissionSetAssignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePermissionSetAssignmentsConnection """ @@ -239869,15 +241912,15 @@ type SalesforceUser implements OneGraphNode { """ permissionSetLicenses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetLicenseConnectionFilter """ + """ filter: SalesforcePermissionSetLicenseConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePermissionSetLicenseSortByFieldEnum """ + """ sortByCustomField: SalesforcePermissionSetLicenseSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetLicenseSortByFieldEnum """ + """ sortByField: SalesforcePermissionSetLicenseSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of PermissionSetLicenses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePermissionSetLicensesConnection """ @@ -239885,15 +241928,15 @@ type SalesforceUser implements OneGraphNode { """ permissionSetLicenseAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetLicenseAssignConnectionFilter """ + """ filter: SalesforcePermissionSetLicenseAssignConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePermissionSetLicenseAssignSortByFieldEnum """ + """ sortByCustomField: SalesforcePermissionSetLicenseAssignSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum """ + """ sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of PermissionSetLicenseAssigns to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePermissionSetLicenseAssignsConnection """ @@ -239901,15 +241944,15 @@ type SalesforceUser implements OneGraphNode { """ permissionSetLicenseAssigns(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetLicenseAssignConnectionFilter """ + """ filter: SalesforcePermissionSetLicenseAssignConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePermissionSetLicenseAssignSortByFieldEnum """ + """ sortByCustomField: SalesforcePermissionSetLicenseAssignSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum """ + """ sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of PermissionSetLicenseAssigns to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePermissionSetLicenseAssignsConnection """ @@ -239917,15 +241960,15 @@ type SalesforceUser implements OneGraphNode { """ platformCachePartitions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePlatformCachePartitionConnectionFilter """ + """ filter: SalesforcePlatformCachePartitionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePlatformCachePartitionSortByFieldEnum """ + """ sortByCustomField: SalesforcePlatformCachePartitionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePlatformCachePartitionSortByFieldEnum """ + """ sortByField: SalesforcePlatformCachePartitionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of PlatformCachePartitions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePlatformCachePartitionsConnection """ @@ -239933,15 +241976,15 @@ type SalesforceUser implements OneGraphNode { """ platformCachePartitionTypes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePlatformCachePartitionTypeConnectionFilter """ + """ filter: SalesforcePlatformCachePartitionTypeConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePlatformCachePartitionTypeSortByFieldEnum """ + """ sortByCustomField: SalesforcePlatformCachePartitionTypeSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePlatformCachePartitionTypeSortByFieldEnum """ + """ sortByField: SalesforcePlatformCachePartitionTypeSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of PlatformCachePartitionTypes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePlatformCachePartitionTypesConnection """ @@ -239949,15 +241992,15 @@ type SalesforceUser implements OneGraphNode { """ pricebook2s(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePricebook2ConnectionFilter """ + """ filter: SalesforcePricebook2ConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePricebook2SortByFieldEnum """ + """ sortByCustomField: SalesforcePricebook2SortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePricebook2SortByFieldEnum """ + """ sortByField: SalesforcePricebook2SortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Pricebook2s to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePricebook2sConnection """ @@ -239965,15 +242008,15 @@ type SalesforceUser implements OneGraphNode { """ pricebook2Histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePricebook2HistoryConnectionFilter """ + """ filter: SalesforcePricebook2HistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePricebook2HistorySortByFieldEnum """ + """ sortByCustomField: SalesforcePricebook2HistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePricebook2HistorySortByFieldEnum """ + """ sortByField: SalesforcePricebook2HistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Pricebook2Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePricebook2HistorysConnection """ @@ -239981,15 +242024,15 @@ type SalesforceUser implements OneGraphNode { """ pricebookEntries(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePricebookEntryConnectionFilter """ + """ filter: SalesforcePricebookEntryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePricebookEntrySortByFieldEnum """ + """ sortByCustomField: SalesforcePricebookEntrySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePricebookEntrySortByFieldEnum """ + """ sortByField: SalesforcePricebookEntrySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of PricebookEntries to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePricebookEntrysConnection """ @@ -239997,15 +242040,15 @@ type SalesforceUser implements OneGraphNode { """ processDefinitions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessDefinitionConnectionFilter """ + """ filter: SalesforceProcessDefinitionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessDefinitionSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessDefinitionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessDefinitionSortByFieldEnum """ + """ sortByField: SalesforceProcessDefinitionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessDefinitions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessDefinitionsConnection """ @@ -240013,15 +242056,15 @@ type SalesforceUser implements OneGraphNode { """ processInstances(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ + """ filter: SalesforceProcessInstanceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstancesConnection """ @@ -240029,15 +242072,15 @@ type SalesforceUser implements OneGraphNode { """ processInstanceNodes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceNodeConnectionFilter """ + """ filter: SalesforceProcessInstanceNodeConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceNodeSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceNodeSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceNodeSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceNodeSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstanceNodes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstanceNodesConnection """ @@ -240045,15 +242088,15 @@ type SalesforceUser implements OneGraphNode { """ processInstanceSteps(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceStepConnectionFilter """ + """ filter: SalesforceProcessInstanceStepConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceStepSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceStepSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceStepSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceStepSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstanceSteps to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstanceStepsConnection """ @@ -240061,15 +242104,15 @@ type SalesforceUser implements OneGraphNode { """ processInstanceWorkitems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceWorkitemConnectionFilter """ + """ filter: SalesforceProcessInstanceWorkitemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceWorkitemSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceWorkitemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceWorkitemSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceWorkitemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstanceWorkitems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstanceWorkitemsConnection """ @@ -240077,15 +242120,15 @@ type SalesforceUser implements OneGraphNode { """ product2s(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProduct2ConnectionFilter """ + """ filter: SalesforceProduct2ConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProduct2SortByFieldEnum """ + """ sortByCustomField: SalesforceProduct2SortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProduct2SortByFieldEnum """ + """ sortByField: SalesforceProduct2SortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Product2s to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProduct2sConnection """ @@ -240093,15 +242136,15 @@ type SalesforceUser implements OneGraphNode { """ product2Feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProduct2FeedConnectionFilter """ + """ filter: SalesforceProduct2FeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProduct2FeedSortByFieldEnum """ + """ sortByCustomField: SalesforceProduct2FeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProduct2FeedSortByFieldEnum """ + """ sortByField: SalesforceProduct2FeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Product2Feeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProduct2FeedsConnection """ @@ -240109,15 +242152,15 @@ type SalesforceUser implements OneGraphNode { """ product2Histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProduct2HistoryConnectionFilter """ + """ filter: SalesforceProduct2HistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProduct2HistorySortByFieldEnum """ + """ sortByCustomField: SalesforceProduct2HistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProduct2HistorySortByFieldEnum """ + """ sortByField: SalesforceProduct2HistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Product2Histories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProduct2HistorysConnection """ @@ -240125,15 +242168,15 @@ type SalesforceUser implements OneGraphNode { """ profiles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProfileConnectionFilter """ + """ filter: SalesforceProfileConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProfileSortByFieldEnum """ + """ sortByCustomField: SalesforceProfileSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProfileSortByFieldEnum """ + """ sortByField: SalesforceProfileSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Profiles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProfilesConnection """ @@ -240141,15 +242184,15 @@ type SalesforceUser implements OneGraphNode { """ pushTopics(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePushTopicConnectionFilter """ + """ filter: SalesforcePushTopicConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePushTopicSortByFieldEnum """ + """ sortByCustomField: SalesforcePushTopicSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePushTopicSortByFieldEnum """ + """ sortByField: SalesforcePushTopicSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of PushTopics to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePushTopicsConnection """ @@ -240157,15 +242200,15 @@ type SalesforceUser implements OneGraphNode { """ queueSobjects(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQueueSobjectConnectionFilter """ + """ filter: SalesforceQueueSobjectConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceQueueSobjectSortByFieldEnum """ + """ sortByCustomField: SalesforceQueueSobjectSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQueueSobjectSortByFieldEnum """ + """ sortByField: SalesforceQueueSobjectSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of QueueSobjects to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceQueueSobjectsConnection """ @@ -240173,15 +242216,15 @@ type SalesforceUser implements OneGraphNode { """ quickTexts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQuickTextConnectionFilter """ + """ filter: SalesforceQuickTextConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceQuickTextSortByFieldEnum """ + """ sortByCustomField: SalesforceQuickTextSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQuickTextSortByFieldEnum """ + """ sortByField: SalesforceQuickTextSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of QuickTexts to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceQuickTextsConnection """ @@ -240189,15 +242232,15 @@ type SalesforceUser implements OneGraphNode { """ quickTextHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQuickTextHistoryConnectionFilter """ + """ filter: SalesforceQuickTextHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceQuickTextHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceQuickTextHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQuickTextHistorySortByFieldEnum """ + """ sortByField: SalesforceQuickTextHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of QuickTextHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceQuickTextHistorysConnection """ @@ -240205,15 +242248,15 @@ type SalesforceUser implements OneGraphNode { """ quickTextShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQuickTextShareConnectionFilter """ + """ filter: SalesforceQuickTextShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceQuickTextShareSortByFieldEnum """ + """ sortByCustomField: SalesforceQuickTextShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQuickTextShareSortByFieldEnum """ + """ sortByField: SalesforceQuickTextShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of QuickTextShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceQuickTextSharesConnection """ @@ -240221,15 +242264,15 @@ type SalesforceUser implements OneGraphNode { """ recordTypes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceRecordTypeConnectionFilter """ + """ filter: SalesforceRecordTypeConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceRecordTypeSortByFieldEnum """ + """ sortByCustomField: SalesforceRecordTypeSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceRecordTypeSortByFieldEnum """ + """ sortByField: SalesforceRecordTypeSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of RecordTypes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceRecordTypesConnection """ @@ -240237,15 +242280,15 @@ type SalesforceUser implements OneGraphNode { """ reports(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceReportConnectionFilter """ + """ filter: SalesforceReportConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceReportSortByFieldEnum """ + """ sortByCustomField: SalesforceReportSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceReportSortByFieldEnum """ + """ sortByField: SalesforceReportSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Reports to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceReportsConnection """ @@ -240253,15 +242296,15 @@ type SalesforceUser implements OneGraphNode { """ reportFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceReportFeedConnectionFilter """ + """ filter: SalesforceReportFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceReportFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceReportFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceReportFeedSortByFieldEnum """ + """ sortByField: SalesforceReportFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ReportFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceReportFeedsConnection """ @@ -240269,15 +242312,15 @@ type SalesforceUser implements OneGraphNode { """ samlSsoConfigs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSamlSsoConfigConnectionFilter """ + """ filter: SalesforceSamlSsoConfigConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSamlSsoConfigSortByFieldEnum """ + """ sortByCustomField: SalesforceSamlSsoConfigSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSamlSsoConfigSortByFieldEnum """ + """ sortByField: SalesforceSamlSsoConfigSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SamlSsoConfigs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSamlSsoConfigsConnection """ @@ -240285,15 +242328,15 @@ type SalesforceUser implements OneGraphNode { """ scontrols(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceScontrolConnectionFilter """ + """ filter: SalesforceScontrolConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceScontrolSortByFieldEnum """ + """ sortByCustomField: SalesforceScontrolSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceScontrolSortByFieldEnum """ + """ sortByField: SalesforceScontrolSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Scontrols to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceScontrolsConnection """ @@ -240301,15 +242344,15 @@ type SalesforceUser implements OneGraphNode { """ searchActivities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSearchActivityConnectionFilter """ + """ filter: SalesforceSearchActivityConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSearchActivitySortByFieldEnum """ + """ sortByCustomField: SalesforceSearchActivitySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSearchActivitySortByFieldEnum """ + """ sortByField: SalesforceSearchActivitySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SearchActivities to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSearchActivitysConnection """ @@ -240317,15 +242360,15 @@ type SalesforceUser implements OneGraphNode { """ searchPromotionRules(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSearchPromotionRuleConnectionFilter """ + """ filter: SalesforceSearchPromotionRuleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSearchPromotionRuleSortByFieldEnum """ + """ sortByCustomField: SalesforceSearchPromotionRuleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSearchPromotionRuleSortByFieldEnum """ + """ sortByField: SalesforceSearchPromotionRuleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SearchPromotionRules to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSearchPromotionRulesConnection """ @@ -240333,15 +242376,15 @@ type SalesforceUser implements OneGraphNode { """ secureAgents(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentConnectionFilter """ + """ filter: SalesforceSecureAgentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSecureAgentSortByFieldEnum """ + """ sortByCustomField: SalesforceSecureAgentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentSortByFieldEnum """ + """ sortByField: SalesforceSecureAgentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SecureAgents to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSecureAgentsConnection """ @@ -240349,15 +242392,15 @@ type SalesforceUser implements OneGraphNode { """ secureAgentPlugins(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentPluginConnectionFilter """ + """ filter: SalesforceSecureAgentPluginConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSecureAgentPluginSortByFieldEnum """ + """ sortByCustomField: SalesforceSecureAgentPluginSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentPluginSortByFieldEnum """ + """ sortByField: SalesforceSecureAgentPluginSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SecureAgentPlugins to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSecureAgentPluginsConnection """ @@ -240365,15 +242408,15 @@ type SalesforceUser implements OneGraphNode { """ secureAgentPluginProperties(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentPluginPropertyConnectionFilter """ + """ filter: SalesforceSecureAgentPluginPropertyConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSecureAgentPluginPropertySortByFieldEnum """ + """ sortByCustomField: SalesforceSecureAgentPluginPropertySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentPluginPropertySortByFieldEnum """ + """ sortByField: SalesforceSecureAgentPluginPropertySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SecureAgentPluginProperties to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSecureAgentPluginPropertysConnection """ @@ -240381,15 +242424,15 @@ type SalesforceUser implements OneGraphNode { """ secureAgentsClusters(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentsClusterConnectionFilter """ + """ filter: SalesforceSecureAgentsClusterConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSecureAgentsClusterSortByFieldEnum """ + """ sortByCustomField: SalesforceSecureAgentsClusterSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentsClusterSortByFieldEnum """ + """ sortByField: SalesforceSecureAgentsClusterSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SecureAgentsClusters to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSecureAgentsClustersConnection """ @@ -240397,15 +242440,15 @@ type SalesforceUser implements OneGraphNode { """ securityCustomBaselines(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecurityCustomBaselineConnectionFilter """ + """ filter: SalesforceSecurityCustomBaselineConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSecurityCustomBaselineSortByFieldEnum """ + """ sortByCustomField: SalesforceSecurityCustomBaselineSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecurityCustomBaselineSortByFieldEnum """ + """ sortByField: SalesforceSecurityCustomBaselineSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SecurityCustomBaselines to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSecurityCustomBaselinesConnection """ @@ -240413,15 +242456,15 @@ type SalesforceUser implements OneGraphNode { """ sessionPermSetActivations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSessionPermSetActivationConnectionFilter """ + """ filter: SalesforceSessionPermSetActivationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSessionPermSetActivationSortByFieldEnum """ + """ sortByCustomField: SalesforceSessionPermSetActivationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSessionPermSetActivationSortByFieldEnum """ + """ sortByField: SalesforceSessionPermSetActivationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SessionPermSetActivations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSessionPermSetActivationsConnection """ @@ -240429,15 +242472,15 @@ type SalesforceUser implements OneGraphNode { """ setupAuditTrails(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSetupAuditTrailConnectionFilter """ + """ filter: SalesforceSetupAuditTrailConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSetupAuditTrailSortByFieldEnum """ + """ sortByCustomField: SalesforceSetupAuditTrailSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSetupAuditTrailSortByFieldEnum """ + """ sortByField: SalesforceSetupAuditTrailSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SetupAuditTrails to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSetupAuditTrailsConnection """ @@ -240445,15 +242488,15 @@ type SalesforceUser implements OneGraphNode { """ userSites(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSiteConnectionFilter """ + """ filter: SalesforceSiteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSiteSortByFieldEnum """ + """ sortByCustomField: SalesforceSiteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSiteSortByFieldEnum """ + """ sortByField: SalesforceSiteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Sites to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSitesConnection """ @@ -240461,15 +242504,15 @@ type SalesforceUser implements OneGraphNode { """ sites(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSiteConnectionFilter """ + """ filter: SalesforceSiteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSiteSortByFieldEnum """ + """ sortByCustomField: SalesforceSiteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSiteSortByFieldEnum """ + """ sortByField: SalesforceSiteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Sites to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSitesConnection """ @@ -240477,15 +242520,15 @@ type SalesforceUser implements OneGraphNode { """ siteFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSiteFeedConnectionFilter """ + """ filter: SalesforceSiteFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSiteFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceSiteFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSiteFeedSortByFieldEnum """ + """ sortByField: SalesforceSiteFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SiteFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSiteFeedsConnection """ @@ -240493,15 +242536,15 @@ type SalesforceUser implements OneGraphNode { """ siteHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSiteHistoryConnectionFilter """ + """ filter: SalesforceSiteHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSiteHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceSiteHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSiteHistorySortByFieldEnum """ + """ sortByField: SalesforceSiteHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SiteHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSiteHistorysConnection """ @@ -240509,15 +242552,15 @@ type SalesforceUser implements OneGraphNode { """ solutions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionConnectionFilter """ + """ filter: SalesforceSolutionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSolutionSortByFieldEnum """ + """ sortByCustomField: SalesforceSolutionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionSortByFieldEnum """ + """ sortByField: SalesforceSolutionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Solutions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSolutionsConnection """ @@ -240525,15 +242568,15 @@ type SalesforceUser implements OneGraphNode { """ solutionFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionFeedConnectionFilter """ + """ filter: SalesforceSolutionFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSolutionFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceSolutionFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionFeedSortByFieldEnum """ + """ sortByField: SalesforceSolutionFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SolutionFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSolutionFeedsConnection """ @@ -240541,15 +242584,15 @@ type SalesforceUser implements OneGraphNode { """ solutionHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionHistoryConnectionFilter """ + """ filter: SalesforceSolutionHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSolutionHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceSolutionHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionHistorySortByFieldEnum """ + """ sortByField: SalesforceSolutionHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SolutionHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSolutionHistorysConnection """ @@ -240557,15 +242600,15 @@ type SalesforceUser implements OneGraphNode { """ solutionStatuses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionStatusConnectionFilter """ + """ filter: SalesforceSolutionStatusConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSolutionStatusSortByFieldEnum """ + """ sortByCustomField: SalesforceSolutionStatusSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionStatusSortByFieldEnum """ + """ sortByField: SalesforceSolutionStatusSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of SolutionStatuses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceSolutionStatussConnection """ @@ -240573,15 +242616,15 @@ type SalesforceUser implements OneGraphNode { """ stamps(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStampConnectionFilter """ + """ filter: SalesforceStampConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceStampSortByFieldEnum """ + """ sortByCustomField: SalesforceStampSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStampSortByFieldEnum """ + """ sortByField: SalesforceStampSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Stamps to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceStampsConnection """ @@ -240589,15 +242632,15 @@ type SalesforceUser implements OneGraphNode { """ stampAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStampAssignmentConnectionFilter """ + """ filter: SalesforceStampAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceStampAssignmentSortByFieldEnum """ + """ sortByCustomField: SalesforceStampAssignmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStampAssignmentSortByFieldEnum """ + """ sortByField: SalesforceStampAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of StampAssignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceStampAssignmentsConnection """ @@ -240605,15 +242648,15 @@ type SalesforceUser implements OneGraphNode { """ staticResources(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStaticResourceConnectionFilter """ + """ filter: SalesforceStaticResourceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceStaticResourceSortByFieldEnum """ + """ sortByCustomField: SalesforceStaticResourceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStaticResourceSortByFieldEnum """ + """ sortByField: SalesforceStaticResourceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of StaticResources to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceStaticResourcesConnection """ @@ -240621,15 +242664,15 @@ type SalesforceUser implements OneGraphNode { """ streamingChannels(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStreamingChannelConnectionFilter """ + """ filter: SalesforceStreamingChannelConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceStreamingChannelSortByFieldEnum """ + """ sortByCustomField: SalesforceStreamingChannelSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStreamingChannelSortByFieldEnum """ + """ sortByField: SalesforceStreamingChannelSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of StreamingChannels to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceStreamingChannelsConnection """ @@ -240637,15 +242680,15 @@ type SalesforceUser implements OneGraphNode { """ streamingChannelShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStreamingChannelShareConnectionFilter """ + """ filter: SalesforceStreamingChannelShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceStreamingChannelShareSortByFieldEnum """ + """ sortByCustomField: SalesforceStreamingChannelShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStreamingChannelShareSortByFieldEnum """ + """ sortByField: SalesforceStreamingChannelShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of StreamingChannelShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceStreamingChannelSharesConnection """ @@ -240653,15 +242696,15 @@ type SalesforceUser implements OneGraphNode { """ tasks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ + """ filter: SalesforceTaskConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ + """ sortByField: SalesforceTaskSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Tasks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTasksConnection """ @@ -240669,15 +242712,15 @@ type SalesforceUser implements OneGraphNode { """ taskFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskFeedConnectionFilter """ + """ filter: SalesforceTaskFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceTaskFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskFeedSortByFieldEnum """ + """ sortByField: SalesforceTaskFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TaskFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTaskFeedsConnection """ @@ -240685,15 +242728,15 @@ type SalesforceUser implements OneGraphNode { """ taskPriorities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskPriorityConnectionFilter """ + """ filter: SalesforceTaskPriorityConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskPrioritySortByFieldEnum """ + """ sortByCustomField: SalesforceTaskPrioritySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskPrioritySortByFieldEnum """ + """ sortByField: SalesforceTaskPrioritySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TaskPriorities to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTaskPrioritysConnection """ @@ -240701,15 +242744,15 @@ type SalesforceUser implements OneGraphNode { """ taskStatuses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskStatusConnectionFilter """ + """ filter: SalesforceTaskStatusConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskStatusSortByFieldEnum """ + """ sortByCustomField: SalesforceTaskStatusSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskStatusSortByFieldEnum """ + """ sortByField: SalesforceTaskStatusSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TaskStatuses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTaskStatussConnection """ @@ -240717,15 +242760,15 @@ type SalesforceUser implements OneGraphNode { """ tenantUsageEntitlements(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTenantUsageEntitlementConnectionFilter """ + """ filter: SalesforceTenantUsageEntitlementConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTenantUsageEntitlementSortByFieldEnum """ + """ sortByCustomField: SalesforceTenantUsageEntitlementSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTenantUsageEntitlementSortByFieldEnum """ + """ sortByField: SalesforceTenantUsageEntitlementSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TenantUsageEntitlements to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTenantUsageEntitlementsConnection """ @@ -240733,15 +242776,15 @@ type SalesforceUser implements OneGraphNode { """ testSuiteMemberships(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTestSuiteMembershipConnectionFilter """ + """ filter: SalesforceTestSuiteMembershipConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTestSuiteMembershipSortByFieldEnum """ + """ sortByCustomField: SalesforceTestSuiteMembershipSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTestSuiteMembershipSortByFieldEnum """ + """ sortByField: SalesforceTestSuiteMembershipSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TestSuiteMemberships to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTestSuiteMembershipsConnection """ @@ -240749,15 +242792,15 @@ type SalesforceUser implements OneGraphNode { """ todayGoals(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTodayGoalConnectionFilter """ + """ filter: SalesforceTodayGoalConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTodayGoalSortByFieldEnum """ + """ sortByCustomField: SalesforceTodayGoalSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTodayGoalSortByFieldEnum """ + """ sortByField: SalesforceTodayGoalSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TodayGoals to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTodayGoalsConnection """ @@ -240765,15 +242808,15 @@ type SalesforceUser implements OneGraphNode { """ todayGoalShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTodayGoalShareConnectionFilter """ + """ filter: SalesforceTodayGoalShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTodayGoalShareSortByFieldEnum """ + """ sortByCustomField: SalesforceTodayGoalShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTodayGoalShareSortByFieldEnum """ + """ sortByField: SalesforceTodayGoalShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TodayGoalShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTodayGoalSharesConnection """ @@ -240781,15 +242824,15 @@ type SalesforceUser implements OneGraphNode { """ topics(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicConnectionFilter """ + """ filter: SalesforceTopicConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicSortByFieldEnum """ + """ sortByField: SalesforceTopicSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Topics to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicsConnection """ @@ -240797,15 +242840,15 @@ type SalesforceUser implements OneGraphNode { """ topicAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ + """ filter: SalesforceTopicAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicAssignmentsConnection """ @@ -240813,15 +242856,15 @@ type SalesforceUser implements OneGraphNode { """ topicFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicFeedConnectionFilter """ + """ filter: SalesforceTopicFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicFeedSortByFieldEnum """ + """ sortByField: SalesforceTopicFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TopicFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicFeedsConnection """ @@ -240829,15 +242872,15 @@ type SalesforceUser implements OneGraphNode { """ topicUserEvents(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicUserEventConnectionFilter """ + """ filter: SalesforceTopicUserEventConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicUserEventSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicUserEventSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicUserEventSortByFieldEnum """ + """ sortByField: SalesforceTopicUserEventSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TopicUserEvents to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicUserEventsConnection """ @@ -240845,15 +242888,15 @@ type SalesforceUser implements OneGraphNode { """ transactionSecurityPolicies(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTransactionSecurityPolicyConnectionFilter """ + """ filter: SalesforceTransactionSecurityPolicyConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTransactionSecurityPolicySortByFieldEnum """ + """ sortByCustomField: SalesforceTransactionSecurityPolicySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTransactionSecurityPolicySortByFieldEnum """ + """ sortByField: SalesforceTransactionSecurityPolicySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TransactionSecurityPolicies to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTransactionSecurityPolicysConnection """ @@ -240861,15 +242904,15 @@ type SalesforceUser implements OneGraphNode { """ undecidedEventRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUndecidedEventRelationConnectionFilter """ + """ filter: SalesforceUndecidedEventRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUndecidedEventRelationSortByFieldEnum """ + """ sortByField: SalesforceUndecidedEventRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UndecidedEventRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUndecidedEventRelationsConnection """ @@ -240877,15 +242920,15 @@ type SalesforceUser implements OneGraphNode { """ users(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserConnectionFilter """ + """ filter: SalesforceUserConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserSortByFieldEnum """ + """ sortByCustomField: SalesforceUserSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserSortByFieldEnum """ + """ sortByField: SalesforceUserSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Users to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUsersConnection """ @@ -240893,15 +242936,15 @@ type SalesforceUser implements OneGraphNode { """ delegatedUsers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserConnectionFilter """ + """ filter: SalesforceUserConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserSortByFieldEnum """ + """ sortByCustomField: SalesforceUserSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserSortByFieldEnum """ + """ sortByField: SalesforceUserSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Users to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUsersConnection """ @@ -240909,15 +242952,15 @@ type SalesforceUser implements OneGraphNode { """ managedUsers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserConnectionFilter """ + """ filter: SalesforceUserConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserSortByFieldEnum """ + """ sortByCustomField: SalesforceUserSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserSortByFieldEnum """ + """ sortByField: SalesforceUserSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Users to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUsersConnection """ @@ -240925,15 +242968,15 @@ type SalesforceUser implements OneGraphNode { """ userAppInfos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserAppInfoConnectionFilter """ + """ filter: SalesforceUserAppInfoConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserAppInfoSortByFieldEnum """ + """ sortByCustomField: SalesforceUserAppInfoSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserAppInfoSortByFieldEnum """ + """ sortByField: SalesforceUserAppInfoSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserAppInfos to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserAppInfosConnection """ @@ -240941,15 +242984,15 @@ type SalesforceUser implements OneGraphNode { """ userAppMenuCustomizations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserAppMenuCustomizationConnectionFilter """ + """ filter: SalesforceUserAppMenuCustomizationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserAppMenuCustomizationSortByFieldEnum """ + """ sortByCustomField: SalesforceUserAppMenuCustomizationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserAppMenuCustomizationSortByFieldEnum """ + """ sortByField: SalesforceUserAppMenuCustomizationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserAppMenuCustomizations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserAppMenuCustomizationsConnection """ @@ -240957,15 +243000,15 @@ type SalesforceUser implements OneGraphNode { """ userAppMenuCustomizationShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserAppMenuCustomizationShareConnectionFilter """ + """ filter: SalesforceUserAppMenuCustomizationShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum """ + """ sortByCustomField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum """ + """ sortByField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserAppMenuCustomizationShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserAppMenuCustomizationSharesConnection """ @@ -240973,15 +243016,15 @@ type SalesforceUser implements OneGraphNode { """ userFeeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserFeedConnectionFilter """ + """ filter: SalesforceUserFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceUserFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserFeedSortByFieldEnum """ + """ sortByField: SalesforceUserFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserFeedsConnection """ @@ -240989,15 +243032,15 @@ type SalesforceUser implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserFeedConnectionFilter """ + """ filter: SalesforceUserFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceUserFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserFeedSortByFieldEnum """ + """ sortByField: SalesforceUserFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserFeedsConnection """ @@ -241005,15 +243048,15 @@ type SalesforceUser implements OneGraphNode { """ userListViews(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserListViewConnectionFilter """ + """ filter: SalesforceUserListViewConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserListViewSortByFieldEnum """ + """ sortByCustomField: SalesforceUserListViewSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserListViewSortByFieldEnum """ + """ sortByField: SalesforceUserListViewSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserListViews to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserListViewsConnection """ @@ -241021,15 +243064,15 @@ type SalesforceUser implements OneGraphNode { """ userListViewCriterions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserListViewCriterionConnectionFilter """ + """ filter: SalesforceUserListViewCriterionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserListViewCriterionSortByFieldEnum """ + """ sortByCustomField: SalesforceUserListViewCriterionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserListViewCriterionSortByFieldEnum """ + """ sortByField: SalesforceUserListViewCriterionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserListViewCriterions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserListViewCriterionsConnection """ @@ -241037,15 +243080,15 @@ type SalesforceUser implements OneGraphNode { """ userLogins(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserLoginConnectionFilter """ + """ filter: SalesforceUserLoginConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserLoginSortByFieldEnum """ + """ sortByCustomField: SalesforceUserLoginSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserLoginSortByFieldEnum """ + """ sortByField: SalesforceUserLoginSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserLogins to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserLoginsConnection """ @@ -241053,15 +243096,15 @@ type SalesforceUser implements OneGraphNode { """ userPackageLicenses(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserPackageLicenseConnectionFilter """ + """ filter: SalesforceUserPackageLicenseConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserPackageLicenseSortByFieldEnum """ + """ sortByCustomField: SalesforceUserPackageLicenseSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserPackageLicenseSortByFieldEnum """ + """ sortByField: SalesforceUserPackageLicenseSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserPackageLicenses to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserPackageLicensesConnection """ @@ -241069,15 +243112,15 @@ type SalesforceUser implements OneGraphNode { """ userPreferences(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserPreferenceConnectionFilter """ + """ filter: SalesforceUserPreferenceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserPreferenceSortByFieldEnum """ + """ sortByCustomField: SalesforceUserPreferenceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserPreferenceSortByFieldEnum """ + """ sortByField: SalesforceUserPreferenceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserPreferences to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserPreferencesConnection """ @@ -241085,15 +243128,15 @@ type SalesforceUser implements OneGraphNode { """ userProvAccounts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvAccountConnectionFilter """ + """ filter: SalesforceUserProvAccountConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvAccountSortByFieldEnum """ + """ sortByCustomField: SalesforceUserProvAccountSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvAccountSortByFieldEnum """ + """ sortByField: SalesforceUserProvAccountSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserProvAccounts to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvAccountsConnection """ @@ -241101,15 +243144,15 @@ type SalesforceUser implements OneGraphNode { """ userProvAccountStagings(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvAccountStagingConnectionFilter """ + """ filter: SalesforceUserProvAccountStagingConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvAccountStagingSortByFieldEnum """ + """ sortByCustomField: SalesforceUserProvAccountStagingSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvAccountStagingSortByFieldEnum """ + """ sortByField: SalesforceUserProvAccountStagingSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserProvAccountStagings to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvAccountStagingsConnection """ @@ -241117,15 +243160,15 @@ type SalesforceUser implements OneGraphNode { """ userProvMockTargets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvMockTargetConnectionFilter """ + """ filter: SalesforceUserProvMockTargetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvMockTargetSortByFieldEnum """ + """ sortByCustomField: SalesforceUserProvMockTargetSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvMockTargetSortByFieldEnum """ + """ sortByField: SalesforceUserProvMockTargetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserProvMockTargets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvMockTargetsConnection """ @@ -241133,15 +243176,15 @@ type SalesforceUser implements OneGraphNode { """ userProvisioningConfigs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningConfigConnectionFilter """ + """ filter: SalesforceUserProvisioningConfigConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningConfigSortByFieldEnum """ + """ sortByCustomField: SalesforceUserProvisioningConfigSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningConfigSortByFieldEnum """ + """ sortByField: SalesforceUserProvisioningConfigSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserProvisioningConfigs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvisioningConfigsConnection """ @@ -241149,15 +243192,15 @@ type SalesforceUser implements OneGraphNode { """ userProvisioningLogs(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningLogConnectionFilter """ + """ filter: SalesforceUserProvisioningLogConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningLogSortByFieldEnum """ + """ sortByCustomField: SalesforceUserProvisioningLogSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningLogSortByFieldEnum """ + """ sortByField: SalesforceUserProvisioningLogSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserProvisioningLogs to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvisioningLogsConnection """ @@ -241165,15 +243208,15 @@ type SalesforceUser implements OneGraphNode { """ userProvisioningRequests(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningRequestConnectionFilter """ + """ filter: SalesforceUserProvisioningRequestConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum """ + """ sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum """ + """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserProvisioningRequests to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvisioningRequestsConnection """ @@ -241181,15 +243224,15 @@ type SalesforceUser implements OneGraphNode { """ userProvisioningRequestShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningRequestShareConnectionFilter """ + """ filter: SalesforceUserProvisioningRequestShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningRequestShareSortByFieldEnum """ + """ sortByCustomField: SalesforceUserProvisioningRequestShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningRequestShareSortByFieldEnum """ + """ sortByField: SalesforceUserProvisioningRequestShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserProvisioningRequestShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserProvisioningRequestSharesConnection """ @@ -241197,15 +243240,15 @@ type SalesforceUser implements OneGraphNode { """ userRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserRoleConnectionFilter """ + """ filter: SalesforceUserRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserRoleSortByFieldEnum """ + """ sortByCustomField: SalesforceUserRoleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserRoleSortByFieldEnum """ + """ sortByField: SalesforceUserRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserRoles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserRolesConnection """ @@ -241213,15 +243256,15 @@ type SalesforceUser implements OneGraphNode { """ userShares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserShareConnectionFilter """ + """ filter: SalesforceUserShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserShareSortByFieldEnum """ + """ sortByCustomField: SalesforceUserShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserShareSortByFieldEnum """ + """ sortByField: SalesforceUserShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserSharesConnection """ @@ -241229,15 +243272,15 @@ type SalesforceUser implements OneGraphNode { """ shares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserShareConnectionFilter """ + """ filter: SalesforceUserShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserShareSortByFieldEnum """ + """ sortByCustomField: SalesforceUserShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserShareSortByFieldEnum """ + """ sortByField: SalesforceUserShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserSharesConnection """ @@ -241245,15 +243288,15 @@ type SalesforceUser implements OneGraphNode { """ verificationHistories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVerificationHistoryConnectionFilter """ + """ filter: SalesforceVerificationHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceVerificationHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceVerificationHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVerificationHistorySortByFieldEnum """ + """ sortByField: SalesforceVerificationHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of VerificationHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceVerificationHistorysConnection """ @@ -241261,15 +243304,15 @@ type SalesforceUser implements OneGraphNode { """ votes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVoteConnectionFilter """ + """ filter: SalesforceVoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceVoteSortByFieldEnum """ + """ sortByCustomField: SalesforceVoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVoteSortByFieldEnum """ + """ sortByField: SalesforceVoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Votes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceVotesConnection """ @@ -241277,15 +243320,15 @@ type SalesforceUser implements OneGraphNode { """ waveCompatibilityCheckItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceWaveCompatibilityCheckItemConnectionFilter """ + """ filter: SalesforceWaveCompatibilityCheckItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceWaveCompatibilityCheckItemSortByFieldEnum """ + """ sortByCustomField: SalesforceWaveCompatibilityCheckItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceWaveCompatibilityCheckItemSortByFieldEnum """ + """ sortByField: SalesforceWaveCompatibilityCheckItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of WaveCompatibilityCheckItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceWaveCompatibilityCheckItemsConnection """ @@ -241293,15 +243336,15 @@ type SalesforceUser implements OneGraphNode { """ webLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceWebLinkConnectionFilter """ + """ filter: SalesforceWebLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceWebLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceWebLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceWebLinkSortByFieldEnum """ + """ sortByField: SalesforceWebLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of WebLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceWebLinksConnection customFields(""" @@ -241639,15 +243682,15 @@ type SalesforceContact implements OneGraphNode { """ acceptedEventRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAcceptedEventRelationConnectionFilter """ + """ filter: SalesforceAcceptedEventRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAcceptedEventRelationSortByFieldEnum """ + """ sortByField: SalesforceAcceptedEventRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AcceptedEventRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAcceptedEventRelationsConnection """ @@ -241655,15 +243698,15 @@ type SalesforceContact implements OneGraphNode { """ accountContactRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountContactRoleConnectionFilter """ + """ filter: SalesforceAccountContactRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountContactRoleSortByFieldEnum """ + """ sortByCustomField: SalesforceAccountContactRoleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountContactRoleSortByFieldEnum """ + """ sortByField: SalesforceAccountContactRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AccountContactRoles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountContactRolesConnection """ @@ -241671,15 +243714,15 @@ type SalesforceContact implements OneGraphNode { """ assets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetConnectionFilter """ + """ filter: SalesforceAssetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetSortByFieldEnum """ + """ sortByCustomField: SalesforceAssetSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetSortByFieldEnum """ + """ sortByField: SalesforceAssetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Assets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetsConnection """ @@ -241687,15 +243730,15 @@ type SalesforceContact implements OneGraphNode { """ attachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ + """ filter: SalesforceAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Attachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAttachmentsConnection """ @@ -241703,15 +243746,15 @@ type SalesforceContact implements OneGraphNode { """ campaignMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignMemberConnectionFilter """ + """ filter: SalesforceCampaignMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignMemberSortByFieldEnum """ + """ sortByCustomField: SalesforceCampaignMemberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignMemberSortByFieldEnum """ + """ sortByField: SalesforceCampaignMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CampaignMembers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignMembersConnection """ @@ -241719,15 +243762,15 @@ type SalesforceContact implements OneGraphNode { """ cases(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseConnectionFilter """ + """ filter: SalesforceCaseConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseSortByFieldEnum """ + """ sortByField: SalesforceCaseSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Cases to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCasesConnection """ @@ -241735,15 +243778,15 @@ type SalesforceContact implements OneGraphNode { """ caseContactRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseContactRoleConnectionFilter """ + """ filter: SalesforceCaseContactRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseContactRoleSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseContactRoleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseContactRoleSortByFieldEnum """ + """ sortByField: SalesforceCaseContactRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseContactRoles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseContactRolesConnection """ @@ -241751,15 +243794,15 @@ type SalesforceContact implements OneGraphNode { """ caseTeamMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamMemberConnectionFilter """ + """ filter: SalesforceCaseTeamMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseTeamMemberSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseTeamMemberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamMemberSortByFieldEnum """ + """ sortByField: SalesforceCaseTeamMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseTeamMembers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseTeamMembersConnection """ @@ -241767,15 +243810,15 @@ type SalesforceContact implements OneGraphNode { """ caseTeamTemplateMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamTemplateMemberConnectionFilter """ + """ filter: SalesforceCaseTeamTemplateMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseTeamTemplateMemberSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseTeamTemplateMemberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamTemplateMemberSortByFieldEnum """ + """ sortByField: SalesforceCaseTeamTemplateMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseTeamTemplateMembers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseTeamTemplateMembersConnection """ @@ -241783,15 +243826,15 @@ type SalesforceContact implements OneGraphNode { """ recordAssociatedGroups(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupRecordConnectionFilter """ + """ filter: SalesforceCollaborationGroupRecordConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupRecordsConnection """ @@ -241799,15 +243842,15 @@ type SalesforceContact implements OneGraphNode { """ contacts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactConnectionFilter """ + """ filter: SalesforceContactConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactSortByFieldEnum """ + """ sortByCustomField: SalesforceContactSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactSortByFieldEnum """ + """ sortByField: SalesforceContactSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Contacts to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContactsConnection """ @@ -241815,15 +243858,15 @@ type SalesforceContact implements OneGraphNode { """ contactCleanInfos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactCleanInfoConnectionFilter """ + """ filter: SalesforceContactCleanInfoConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactCleanInfoSortByFieldEnum """ + """ sortByCustomField: SalesforceContactCleanInfoSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactCleanInfoSortByFieldEnum """ + """ sortByField: SalesforceContactCleanInfoSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContactCleanInfos to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContactCleanInfosConnection """ @@ -241831,15 +243874,15 @@ type SalesforceContact implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactFeedConnectionFilter """ + """ filter: SalesforceContactFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceContactFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactFeedSortByFieldEnum """ + """ sortByField: SalesforceContactFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContactFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContactFeedsConnection """ @@ -241847,15 +243890,15 @@ type SalesforceContact implements OneGraphNode { """ histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactHistoryConnectionFilter """ + """ filter: SalesforceContactHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceContactHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactHistorySortByFieldEnum """ + """ sortByField: SalesforceContactHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContactHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContactHistorysConnection """ @@ -241863,15 +243906,15 @@ type SalesforceContact implements OneGraphNode { """ shares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactShareConnectionFilter """ + """ filter: SalesforceContactShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactShareSortByFieldEnum """ + """ sortByCustomField: SalesforceContactShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactShareSortByFieldEnum """ + """ sortByField: SalesforceContactShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContactShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContactSharesConnection """ @@ -241879,15 +243922,15 @@ type SalesforceContact implements OneGraphNode { """ contentDistributions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ + """ filter: SalesforceContentDistributionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDistributionsConnection """ @@ -241895,15 +243938,15 @@ type SalesforceContact implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -241911,15 +243954,15 @@ type SalesforceContact implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -241927,15 +243970,15 @@ type SalesforceContact implements OneGraphNode { """ contractsSigned(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractConnectionFilter """ + """ filter: SalesforceContractConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractSortByFieldEnum """ + """ sortByCustomField: SalesforceContractSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractSortByFieldEnum """ + """ sortByField: SalesforceContractSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Contracts to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContractsConnection """ @@ -241943,15 +243986,15 @@ type SalesforceContact implements OneGraphNode { """ contractContactRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractContactRoleConnectionFilter """ + """ filter: SalesforceContractContactRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractContactRoleSortByFieldEnum """ + """ sortByCustomField: SalesforceContractContactRoleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractContactRoleSortByFieldEnum """ + """ sortByField: SalesforceContractContactRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContractContactRoles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContractContactRolesConnection """ @@ -241959,15 +244002,15 @@ type SalesforceContact implements OneGraphNode { """ declinedEventRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDeclinedEventRelationConnectionFilter """ + """ filter: SalesforceDeclinedEventRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDeclinedEventRelationSortByFieldEnum """ + """ sortByField: SalesforceDeclinedEventRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DeclinedEventRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDeclinedEventRelationsConnection """ @@ -241975,15 +244018,15 @@ type SalesforceContact implements OneGraphNode { """ duplicateRecordItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRecordItemConnectionFilter """ + """ filter: SalesforceDuplicateRecordItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum """ + """ sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum """ + """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DuplicateRecordItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDuplicateRecordItemsConnection """ @@ -241991,15 +244034,15 @@ type SalesforceContact implements OneGraphNode { """ emailMessageRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageRelationConnectionFilter """ + """ filter: SalesforceEmailMessageRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageRelationSortByFieldEnum """ + """ sortByField: SalesforceEmailMessageRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailMessageRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailMessageRelationsConnection """ @@ -242007,15 +244050,15 @@ type SalesforceContact implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -242023,15 +244066,15 @@ type SalesforceContact implements OneGraphNode { """ events(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ + """ filter: SalesforceEventConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ + """ sortByField: SalesforceEventSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Events to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventsConnection """ @@ -242039,15 +244082,15 @@ type SalesforceContact implements OneGraphNode { """ eventRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventRelationConnectionFilter """ + """ filter: SalesforceEventRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceEventRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventRelationSortByFieldEnum """ + """ sortByField: SalesforceEventRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EventRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventRelationsConnection """ @@ -242055,15 +244098,15 @@ type SalesforceContact implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -242071,15 +244114,15 @@ type SalesforceContact implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -242087,15 +244130,15 @@ type SalesforceContact implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -242103,15 +244146,15 @@ type SalesforceContact implements OneGraphNode { """ leads(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadConnectionFilter """ + """ filter: SalesforceLeadConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadSortByFieldEnum """ + """ sortByCustomField: SalesforceLeadSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadSortByFieldEnum """ + """ sortByField: SalesforceLeadSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Leads to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadsConnection """ @@ -242119,15 +244162,15 @@ type SalesforceContact implements OneGraphNode { """ notes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNoteConnectionFilter """ + """ filter: SalesforceNoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNoteSortByFieldEnum """ + """ sortByCustomField: SalesforceNoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNoteSortByFieldEnum """ + """ sortByField: SalesforceNoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Notes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceNotesConnection """ @@ -242135,15 +244178,15 @@ type SalesforceContact implements OneGraphNode { """ opportunityContactRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityContactRoleConnectionFilter """ + """ filter: SalesforceOpportunityContactRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityContactRoleSortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityContactRoleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityContactRoleSortByFieldEnum """ + """ sortByField: SalesforceOpportunityContactRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityContactRoles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityContactRolesConnection """ @@ -242151,15 +244194,15 @@ type SalesforceContact implements OneGraphNode { """ orders(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderConnectionFilter """ + """ filter: SalesforceOrderConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderSortByFieldEnum """ + """ sortByCustomField: SalesforceOrderSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderSortByFieldEnum """ + """ sortByField: SalesforceOrderSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Orders to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrdersConnection """ @@ -242167,15 +244210,15 @@ type SalesforceContact implements OneGraphNode { """ processInstances(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ + """ filter: SalesforceProcessInstanceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstancesConnection """ @@ -242183,15 +244226,15 @@ type SalesforceContact implements OneGraphNode { """ tasks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ + """ filter: SalesforceTaskConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ + """ sortByField: SalesforceTaskSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Tasks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTasksConnection """ @@ -242199,15 +244242,15 @@ type SalesforceContact implements OneGraphNode { """ topicAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ + """ filter: SalesforceTopicAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicAssignmentsConnection """ @@ -242215,15 +244258,15 @@ type SalesforceContact implements OneGraphNode { """ undecidedEventRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUndecidedEventRelationConnectionFilter """ + """ filter: SalesforceUndecidedEventRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUndecidedEventRelationSortByFieldEnum """ + """ sortByField: SalesforceUndecidedEventRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UndecidedEventRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUndecidedEventRelationsConnection """ @@ -242231,15 +244274,15 @@ type SalesforceContact implements OneGraphNode { """ users(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserConnectionFilter """ + """ filter: SalesforceUserConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserSortByFieldEnum """ + """ sortByCustomField: SalesforceUserSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserSortByFieldEnum """ + """ sortByField: SalesforceUserSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Users to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUsersConnection customFields(""" @@ -242331,9 +244374,30 @@ type ZendeskUser { """ verified: Boolean - requestedTickets(sortOrder: ZendeskSearchSortOrder sortBy: ZendeskTicketsSortBy last: Int first: Int before: String after: String): ZendeskTicketsConnection - ccdTickets(sortOrder: ZendeskSearchSortOrder sortBy: ZendeskTicketsSortBy last: Int first: Int before: String after: String): ZendeskTicketsConnection - assignedTickets(sortOrder: ZendeskSearchSortOrder sortBy: ZendeskTicketsSortBy last: Int first: Int before: String after: String): ZendeskTicketsConnection + requestedTickets( + sortOrder: ZendeskSearchSortOrder + sortBy: ZendeskTicketsSortBy + last: Int + first: Int + before: String + after: String + ): ZendeskTicketsConnection + ccdTickets( + sortOrder: ZendeskSearchSortOrder + sortBy: ZendeskTicketsSortBy + last: Int + first: Int + before: String + after: String + ): ZendeskTicketsConnection + assignedTickets( + sortOrder: ZendeskSearchSortOrder + sortBy: ZendeskTicketsSortBy + last: Int + first: Int + before: String + after: String + ): ZendeskTicketsConnection } """ @@ -242601,15 +244665,15 @@ type SalesforceLead implements OneGraphNode { """ acceptedEventRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAcceptedEventRelationConnectionFilter """ + """ filter: SalesforceAcceptedEventRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAcceptedEventRelationSortByFieldEnum """ + """ sortByField: SalesforceAcceptedEventRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AcceptedEventRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAcceptedEventRelationsConnection """ @@ -242617,15 +244681,15 @@ type SalesforceLead implements OneGraphNode { """ attachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ + """ filter: SalesforceAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Attachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAttachmentsConnection """ @@ -242633,15 +244697,15 @@ type SalesforceLead implements OneGraphNode { """ campaignMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignMemberConnectionFilter """ + """ filter: SalesforceCampaignMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignMemberSortByFieldEnum """ + """ sortByCustomField: SalesforceCampaignMemberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignMemberSortByFieldEnum """ + """ sortByField: SalesforceCampaignMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CampaignMembers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCampaignMembersConnection """ @@ -242649,15 +244713,15 @@ type SalesforceLead implements OneGraphNode { """ recordAssociatedGroups(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupRecordConnectionFilter """ + """ filter: SalesforceCollaborationGroupRecordConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupRecordsConnection """ @@ -242665,15 +244729,15 @@ type SalesforceLead implements OneGraphNode { """ contentDistributions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ + """ filter: SalesforceContentDistributionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDistributionsConnection """ @@ -242681,15 +244745,15 @@ type SalesforceLead implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -242697,15 +244761,15 @@ type SalesforceLead implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -242713,15 +244777,15 @@ type SalesforceLead implements OneGraphNode { """ declinedEventRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDeclinedEventRelationConnectionFilter """ + """ filter: SalesforceDeclinedEventRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDeclinedEventRelationSortByFieldEnum """ + """ sortByField: SalesforceDeclinedEventRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DeclinedEventRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDeclinedEventRelationsConnection """ @@ -242729,15 +244793,15 @@ type SalesforceLead implements OneGraphNode { """ duplicateRecordItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRecordItemConnectionFilter """ + """ filter: SalesforceDuplicateRecordItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum """ + """ sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum """ + """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DuplicateRecordItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDuplicateRecordItemsConnection """ @@ -242745,15 +244809,15 @@ type SalesforceLead implements OneGraphNode { """ emailMessageRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageRelationConnectionFilter """ + """ filter: SalesforceEmailMessageRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageRelationSortByFieldEnum """ + """ sortByField: SalesforceEmailMessageRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailMessageRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailMessageRelationsConnection """ @@ -242761,15 +244825,15 @@ type SalesforceLead implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -242777,15 +244841,15 @@ type SalesforceLead implements OneGraphNode { """ events(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ + """ filter: SalesforceEventConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ + """ sortByField: SalesforceEventSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Events to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventsConnection """ @@ -242793,15 +244857,15 @@ type SalesforceLead implements OneGraphNode { """ eventRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventRelationConnectionFilter """ + """ filter: SalesforceEventRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceEventRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventRelationSortByFieldEnum """ + """ sortByField: SalesforceEventRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EventRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventRelationsConnection """ @@ -242809,15 +244873,15 @@ type SalesforceLead implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -242825,15 +244889,15 @@ type SalesforceLead implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -242841,15 +244905,15 @@ type SalesforceLead implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -242857,15 +244921,15 @@ type SalesforceLead implements OneGraphNode { """ leadCleanInfos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadCleanInfoConnectionFilter """ + """ filter: SalesforceLeadCleanInfoConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadCleanInfoSortByFieldEnum """ + """ sortByCustomField: SalesforceLeadCleanInfoSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadCleanInfoSortByFieldEnum """ + """ sortByField: SalesforceLeadCleanInfoSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LeadCleanInfos to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadCleanInfosConnection """ @@ -242873,15 +244937,15 @@ type SalesforceLead implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadFeedConnectionFilter """ + """ filter: SalesforceLeadFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceLeadFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadFeedSortByFieldEnum """ + """ sortByField: SalesforceLeadFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LeadFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadFeedsConnection """ @@ -242889,15 +244953,15 @@ type SalesforceLead implements OneGraphNode { """ histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadHistoryConnectionFilter """ + """ filter: SalesforceLeadHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceLeadHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadHistorySortByFieldEnum """ + """ sortByField: SalesforceLeadHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LeadHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadHistorysConnection """ @@ -242905,15 +244969,15 @@ type SalesforceLead implements OneGraphNode { """ shares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadShareConnectionFilter """ + """ filter: SalesforceLeadShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadShareSortByFieldEnum """ + """ sortByCustomField: SalesforceLeadShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadShareSortByFieldEnum """ + """ sortByField: SalesforceLeadShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of LeadShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadSharesConnection """ @@ -242921,15 +244985,15 @@ type SalesforceLead implements OneGraphNode { """ notes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNoteConnectionFilter """ + """ filter: SalesforceNoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNoteSortByFieldEnum """ + """ sortByCustomField: SalesforceNoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNoteSortByFieldEnum """ + """ sortByField: SalesforceNoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Notes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceNotesConnection """ @@ -242937,15 +245001,15 @@ type SalesforceLead implements OneGraphNode { """ processInstances(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ + """ filter: SalesforceProcessInstanceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstancesConnection """ @@ -242953,15 +245017,15 @@ type SalesforceLead implements OneGraphNode { """ tasks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ + """ filter: SalesforceTaskConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ + """ sortByField: SalesforceTaskSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Tasks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTasksConnection """ @@ -242969,15 +245033,15 @@ type SalesforceLead implements OneGraphNode { """ topicAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ + """ filter: SalesforceTopicAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicAssignmentsConnection """ @@ -242985,15 +245049,15 @@ type SalesforceLead implements OneGraphNode { """ undecidedEventRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUndecidedEventRelationConnectionFilter """ + """ filter: SalesforceUndecidedEventRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUndecidedEventRelationSortByFieldEnum """ + """ sortByField: SalesforceUndecidedEventRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UndecidedEventRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUndecidedEventRelationsConnection customFields(""" @@ -243183,13 +245247,13 @@ type IntercomTag { """ users(""" Limit results to users that were created in that last number of days - """ createdDaysAgo: Int """ + """ createdDaysAgo: Int, """ What field to sort the results by. Defaults to CREATED_AT. - """ sortByField: IntercomUsersSortByField """ + """ sortByField: IntercomUsersSortByField, """ Return the users in ascending or descending order. Defaults to DESC. - """ orderBy: IntercomSortOrderBy """ + """ orderBy: IntercomSortOrderBy, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Number of user to fetch, maximum is 60 """ first: Int): IntercomUsersConnection } @@ -243492,7 +245556,7 @@ type IntercomUser implements IntercomAuthor { """ events(""" Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Number of events to fetch, defaults to 50 """ first: Int): IntercomEventssConnection """ @@ -243502,11 +245566,11 @@ type IntercomUser implements IntercomAuthor { """ conversations(""" When true, retrieves conversation messages in plain text. Defaults to false. - """ displayAsPlaintext: Boolean """ + """ displayAsPlaintext: Boolean, """ Defaults to false. When true, fetches just unread conversations. - """ unread: Boolean """ + """ unread: Boolean, """ What field to sort the results by. Defaults to UPDATED_AT. - """ sortByField: IntercomConversationSortByField """ + """ sortByField: IntercomConversationSortByField, """ Return the conversations in ascending or descending order. Defaults to DESC. """ orderBy: IntercomSortOrderBy): IntercomConversationsConnection } @@ -243788,15 +245852,15 @@ type SalesforceAccount implements OneGraphNode { """ childAccounts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountConnectionFilter """ + """ filter: SalesforceAccountConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountSortByFieldEnum """ + """ sortByCustomField: SalesforceAccountSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountSortByFieldEnum """ + """ sortByField: SalesforceAccountSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Accounts to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountsConnection """ @@ -243804,15 +245868,15 @@ type SalesforceAccount implements OneGraphNode { """ accountCleanInfos(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountCleanInfoConnectionFilter """ + """ filter: SalesforceAccountCleanInfoConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountCleanInfoSortByFieldEnum """ + """ sortByCustomField: SalesforceAccountCleanInfoSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountCleanInfoSortByFieldEnum """ + """ sortByField: SalesforceAccountCleanInfoSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AccountCleanInfos to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountCleanInfosConnection """ @@ -243820,15 +245884,15 @@ type SalesforceAccount implements OneGraphNode { """ accountContactRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountContactRoleConnectionFilter """ + """ filter: SalesforceAccountContactRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountContactRoleSortByFieldEnum """ + """ sortByCustomField: SalesforceAccountContactRoleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountContactRoleSortByFieldEnum """ + """ sortByField: SalesforceAccountContactRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AccountContactRoles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountContactRolesConnection """ @@ -243836,15 +245900,15 @@ type SalesforceAccount implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountFeedConnectionFilter """ + """ filter: SalesforceAccountFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceAccountFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountFeedSortByFieldEnum """ + """ sortByField: SalesforceAccountFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AccountFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountFeedsConnection """ @@ -243852,15 +245916,15 @@ type SalesforceAccount implements OneGraphNode { """ histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountHistoryConnectionFilter """ + """ filter: SalesforceAccountHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceAccountHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountHistorySortByFieldEnum """ + """ sortByField: SalesforceAccountHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AccountHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountHistorysConnection """ @@ -243868,15 +245932,15 @@ type SalesforceAccount implements OneGraphNode { """ accountPartnersFrom(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountPartnerConnectionFilter """ + """ filter: SalesforceAccountPartnerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountPartnerSortByFieldEnum """ + """ sortByCustomField: SalesforceAccountPartnerSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountPartnerSortByFieldEnum """ + """ sortByField: SalesforceAccountPartnerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AccountPartners to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountPartnersConnection """ @@ -243884,15 +245948,15 @@ type SalesforceAccount implements OneGraphNode { """ accountPartnersTo(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountPartnerConnectionFilter """ + """ filter: SalesforceAccountPartnerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountPartnerSortByFieldEnum """ + """ sortByCustomField: SalesforceAccountPartnerSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountPartnerSortByFieldEnum """ + """ sortByField: SalesforceAccountPartnerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AccountPartners to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountPartnersConnection """ @@ -243900,15 +245964,15 @@ type SalesforceAccount implements OneGraphNode { """ shares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountShareConnectionFilter """ + """ filter: SalesforceAccountShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountShareSortByFieldEnum """ + """ sortByCustomField: SalesforceAccountShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountShareSortByFieldEnum """ + """ sortByField: SalesforceAccountShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of AccountShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAccountSharesConnection """ @@ -243916,15 +245980,15 @@ type SalesforceAccount implements OneGraphNode { """ assets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetConnectionFilter """ + """ filter: SalesforceAssetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetSortByFieldEnum """ + """ sortByCustomField: SalesforceAssetSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetSortByFieldEnum """ + """ sortByField: SalesforceAssetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Assets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetsConnection """ @@ -243932,15 +245996,15 @@ type SalesforceAccount implements OneGraphNode { """ providedAssets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetConnectionFilter """ + """ filter: SalesforceAssetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetSortByFieldEnum """ + """ sortByCustomField: SalesforceAssetSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetSortByFieldEnum """ + """ sortByField: SalesforceAssetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Assets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetsConnection """ @@ -243948,15 +246012,15 @@ type SalesforceAccount implements OneGraphNode { """ servicedAssets(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetConnectionFilter """ + """ filter: SalesforceAssetConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetSortByFieldEnum """ + """ sortByCustomField: SalesforceAssetSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetSortByFieldEnum """ + """ sortByField: SalesforceAssetSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Assets to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAssetsConnection """ @@ -243964,15 +246028,15 @@ type SalesforceAccount implements OneGraphNode { """ attachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ + """ filter: SalesforceAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Attachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAttachmentsConnection """ @@ -243980,15 +246044,15 @@ type SalesforceAccount implements OneGraphNode { """ cases(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseConnectionFilter """ + """ filter: SalesforceCaseConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseSortByFieldEnum """ + """ sortByField: SalesforceCaseSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Cases to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCasesConnection """ @@ -243996,15 +246060,15 @@ type SalesforceAccount implements OneGraphNode { """ recordAssociatedGroups(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupRecordConnectionFilter """ + """ filter: SalesforceCollaborationGroupRecordConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupRecordsConnection """ @@ -244012,15 +246076,15 @@ type SalesforceAccount implements OneGraphNode { """ contacts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactConnectionFilter """ + """ filter: SalesforceContactConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactSortByFieldEnum """ + """ sortByCustomField: SalesforceContactSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactSortByFieldEnum """ + """ sortByField: SalesforceContactSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Contacts to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContactsConnection """ @@ -244028,15 +246092,15 @@ type SalesforceAccount implements OneGraphNode { """ contentDistributions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ + """ filter: SalesforceContentDistributionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDistributionsConnection """ @@ -244044,15 +246108,15 @@ type SalesforceAccount implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -244060,15 +246124,15 @@ type SalesforceAccount implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -244076,15 +246140,15 @@ type SalesforceAccount implements OneGraphNode { """ contracts(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractConnectionFilter """ + """ filter: SalesforceContractConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractSortByFieldEnum """ + """ sortByCustomField: SalesforceContractSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractSortByFieldEnum """ + """ sortByField: SalesforceContractSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Contracts to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContractsConnection """ @@ -244092,15 +246156,15 @@ type SalesforceAccount implements OneGraphNode { """ duplicateRecordItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRecordItemConnectionFilter """ + """ filter: SalesforceDuplicateRecordItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum """ + """ sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum """ + """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of DuplicateRecordItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceDuplicateRecordItemsConnection """ @@ -244108,15 +246172,15 @@ type SalesforceAccount implements OneGraphNode { """ emails(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ + """ filter: SalesforceEmailMessageConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailMessagesConnection """ @@ -244124,15 +246188,15 @@ type SalesforceAccount implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -244140,15 +246204,15 @@ type SalesforceAccount implements OneGraphNode { """ events(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ + """ filter: SalesforceEventConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ + """ sortByField: SalesforceEventSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Events to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventsConnection """ @@ -244156,15 +246220,15 @@ type SalesforceAccount implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -244172,15 +246236,15 @@ type SalesforceAccount implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -244188,15 +246252,15 @@ type SalesforceAccount implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -244204,15 +246268,15 @@ type SalesforceAccount implements OneGraphNode { """ leads(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadConnectionFilter """ + """ filter: SalesforceLeadConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadSortByFieldEnum """ + """ sortByCustomField: SalesforceLeadSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadSortByFieldEnum """ + """ sortByField: SalesforceLeadSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Leads to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceLeadsConnection """ @@ -244220,15 +246284,15 @@ type SalesforceAccount implements OneGraphNode { """ notes(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNoteConnectionFilter """ + """ filter: SalesforceNoteConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNoteSortByFieldEnum """ + """ sortByCustomField: SalesforceNoteSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNoteSortByFieldEnum """ + """ sortByField: SalesforceNoteSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Notes to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceNotesConnection """ @@ -244236,15 +246300,15 @@ type SalesforceAccount implements OneGraphNode { """ opportunities(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityConnectionFilter """ + """ filter: SalesforceOpportunityConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunitySortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunitySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunitySortByFieldEnum """ + """ sortByField: SalesforceOpportunitySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Opportunities to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunitysConnection """ @@ -244252,15 +246316,15 @@ type SalesforceAccount implements OneGraphNode { """ opportunityPartnersTo(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityPartnerConnectionFilter """ + """ filter: SalesforceOpportunityPartnerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum """ + """ sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityPartnerSortByFieldEnum """ + """ sortByField: SalesforceOpportunityPartnerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of OpportunityPartners to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOpportunityPartnersConnection """ @@ -244268,15 +246332,15 @@ type SalesforceAccount implements OneGraphNode { """ orders(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderConnectionFilter """ + """ filter: SalesforceOrderConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderSortByFieldEnum """ + """ sortByCustomField: SalesforceOrderSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderSortByFieldEnum """ + """ sortByField: SalesforceOrderSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Orders to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceOrdersConnection """ @@ -244284,15 +246348,15 @@ type SalesforceAccount implements OneGraphNode { """ partnersFrom(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePartnerConnectionFilter """ + """ filter: SalesforcePartnerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePartnerSortByFieldEnum """ + """ sortByCustomField: SalesforcePartnerSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePartnerSortByFieldEnum """ + """ sortByField: SalesforcePartnerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Partners to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePartnersConnection """ @@ -244300,15 +246364,15 @@ type SalesforceAccount implements OneGraphNode { """ partnersTo(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePartnerConnectionFilter """ + """ filter: SalesforcePartnerConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePartnerSortByFieldEnum """ + """ sortByCustomField: SalesforcePartnerSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePartnerSortByFieldEnum """ + """ sortByField: SalesforcePartnerSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Partners to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforcePartnersConnection """ @@ -244316,15 +246380,15 @@ type SalesforceAccount implements OneGraphNode { """ processInstances(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ + """ filter: SalesforceProcessInstanceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstancesConnection """ @@ -244332,15 +246396,15 @@ type SalesforceAccount implements OneGraphNode { """ tasks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ + """ filter: SalesforceTaskConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ + """ sortByField: SalesforceTaskSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Tasks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTasksConnection """ @@ -244348,15 +246412,15 @@ type SalesforceAccount implements OneGraphNode { """ topicAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ + """ filter: SalesforceTopicAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicAssignmentsConnection """ @@ -244364,15 +246428,15 @@ type SalesforceAccount implements OneGraphNode { """ users(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserConnectionFilter """ + """ filter: SalesforceUserConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserSortByFieldEnum """ + """ sortByCustomField: SalesforceUserSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserSortByFieldEnum """ + """ sortByField: SalesforceUserSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Users to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUsersConnection """ @@ -244380,15 +246444,15 @@ type SalesforceAccount implements OneGraphNode { """ userRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserRoleConnectionFilter """ + """ filter: SalesforceUserRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserRoleSortByFieldEnum """ + """ sortByCustomField: SalesforceUserRoleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserRoleSortByFieldEnum """ + """ sortByField: SalesforceUserRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of UserRoles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceUserRolesConnection customFields(""" @@ -244528,9 +246592,9 @@ type StripeCustomer { """ subscriptions: StripeCustomerSubscriptions accountBalance: Int @deprecated(reason: "Use `balance` field") - charges(after: String before: String first: Int): StripeChargesConnection - invoices(after: String before: String first: Int): StripeInvoicesConnection - paymentIntents(after: String before: String first: Int): StripePaymentIntentsConnection + charges(after: String, before: String, first: Int): StripeChargesConnection + invoices(after: String, before: String, first: Int): StripeInvoicesConnection + paymentIntents(after: String, before: String, first: Int): StripePaymentIntentsConnection } """ @@ -246139,7 +248203,7 @@ type StripeCharge { An arbitrary string attached to the object. Often useful for displaying to users. """ description: String - refunds(after: String before: String first: Int): StripeRefundsConnection + refunds(after: String, before: String, first: Int): StripeRefundsConnection } enum StripeTransferReversalsObjectEnum { @@ -246619,15 +248683,15 @@ type SalesforceCase implements OneGraphNode { """ attachments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ + """ filter: SalesforceAttachmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Attachments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceAttachmentsConnection """ @@ -246635,15 +248699,15 @@ type SalesforceCase implements OneGraphNode { """ cases(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseConnectionFilter """ + """ filter: SalesforceCaseConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseSortByFieldEnum """ + """ sortByField: SalesforceCaseSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Cases to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCasesConnection """ @@ -246651,15 +248715,15 @@ type SalesforceCase implements OneGraphNode { """ caseComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseCommentConnectionFilter """ + """ filter: SalesforceCaseCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseCommentSortByFieldEnum """ + """ sortByField: SalesforceCaseCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseCommentsConnection """ @@ -246667,15 +248731,15 @@ type SalesforceCase implements OneGraphNode { """ caseContactRoles(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseContactRoleConnectionFilter """ + """ filter: SalesforceCaseContactRoleConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseContactRoleSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseContactRoleSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseContactRoleSortByFieldEnum """ + """ sortByField: SalesforceCaseContactRoleSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseContactRoles to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseContactRolesConnection """ @@ -246683,15 +248747,15 @@ type SalesforceCase implements OneGraphNode { """ feeds(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseFeedConnectionFilter """ + """ filter: SalesforceCaseFeedConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseFeedSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseFeedSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseFeedSortByFieldEnum """ + """ sortByField: SalesforceCaseFeedSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseFeeds to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseFeedsConnection """ @@ -246699,15 +248763,15 @@ type SalesforceCase implements OneGraphNode { """ histories(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseHistoryConnectionFilter """ + """ filter: SalesforceCaseHistoryConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseHistorySortByFieldEnum """ + """ sortByCustomField: SalesforceCaseHistorySortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseHistorySortByFieldEnum """ + """ sortByField: SalesforceCaseHistorySortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseHistories to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseHistorysConnection """ @@ -246715,15 +248779,15 @@ type SalesforceCase implements OneGraphNode { """ shares(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseShareConnectionFilter """ + """ filter: SalesforceCaseShareConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseShareSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseShareSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseShareSortByFieldEnum """ + """ sortByField: SalesforceCaseShareSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseShares to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseSharesConnection """ @@ -246731,15 +248795,15 @@ type SalesforceCase implements OneGraphNode { """ caseSolutions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseSolutionConnectionFilter """ + """ filter: SalesforceCaseSolutionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseSolutionSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseSolutionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseSolutionSortByFieldEnum """ + """ sortByField: SalesforceCaseSolutionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseSolutions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseSolutionsConnection """ @@ -246747,15 +248811,15 @@ type SalesforceCase implements OneGraphNode { """ teamMembers(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamMemberConnectionFilter """ + """ filter: SalesforceCaseTeamMemberConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseTeamMemberSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseTeamMemberSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamMemberSortByFieldEnum """ + """ sortByField: SalesforceCaseTeamMemberSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseTeamMembers to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseTeamMembersConnection """ @@ -246763,15 +248827,15 @@ type SalesforceCase implements OneGraphNode { """ teamTemplateRecords(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamTemplateRecordConnectionFilter """ + """ filter: SalesforceCaseTeamTemplateRecordConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseTeamTemplateRecordSortByFieldEnum """ + """ sortByCustomField: SalesforceCaseTeamTemplateRecordSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamTemplateRecordSortByFieldEnum """ + """ sortByField: SalesforceCaseTeamTemplateRecordSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CaseTeamTemplateRecords to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCaseTeamTemplateRecordsConnection """ @@ -246779,15 +248843,15 @@ type SalesforceCase implements OneGraphNode { """ recordAssociatedGroups(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupRecordConnectionFilter """ + """ filter: SalesforceCollaborationGroupRecordConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum """ + """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum """ + """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceCollaborationGroupRecordsConnection """ @@ -246795,15 +248859,15 @@ type SalesforceCase implements OneGraphNode { """ contentDistributions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ + """ filter: SalesforceContentDistributionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDistributionsConnection """ @@ -246811,15 +248875,15 @@ type SalesforceCase implements OneGraphNode { """ contentDocumentLinks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentDocumentLinksConnection """ @@ -246827,15 +248891,15 @@ type SalesforceCase implements OneGraphNode { """ contentVersions(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ + """ filter: SalesforceContentVersionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceContentVersionsConnection """ @@ -246843,15 +248907,15 @@ type SalesforceCase implements OneGraphNode { """ emailMessages(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ + """ filter: SalesforceEmailMessageConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailMessagesConnection """ @@ -246859,15 +248923,15 @@ type SalesforceCase implements OneGraphNode { """ emails(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ + """ filter: SalesforceEmailMessageConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEmailMessagesConnection """ @@ -246875,15 +248939,15 @@ type SalesforceCase implements OneGraphNode { """ feedSubscriptionsForEntity(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEntitySubscriptionsConnection """ @@ -246891,15 +248955,15 @@ type SalesforceCase implements OneGraphNode { """ events(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ + """ filter: SalesforceEventConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ + """ sortByField: SalesforceEventSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Events to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceEventsConnection """ @@ -246907,15 +248971,15 @@ type SalesforceCase implements OneGraphNode { """ feedComments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ + """ filter: SalesforceFeedCommentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedComments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedCommentsConnection """ @@ -246923,15 +248987,15 @@ type SalesforceCase implements OneGraphNode { """ feedItems(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ + """ filter: SalesforceFeedItemConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FeedItems to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFeedItemsConnection """ @@ -246939,15 +249003,15 @@ type SalesforceCase implements OneGraphNode { """ flowRecordRelations(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceFlowRecordRelationsConnection """ @@ -246955,15 +249019,15 @@ type SalesforceCase implements OneGraphNode { """ processInstances(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ + """ filter: SalesforceProcessInstanceConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceProcessInstancesConnection """ @@ -246971,15 +249035,15 @@ type SalesforceCase implements OneGraphNode { """ tasks(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ + """ filter: SalesforceTaskConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ + """ sortByField: SalesforceTaskSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of Tasks to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTasksConnection """ @@ -246987,15 +249051,15 @@ type SalesforceCase implements OneGraphNode { """ topicAssignments(""" A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ + """ filter: SalesforceTopicAssignmentConnectionFilter, """ Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ + """ orderBy: SalesforceSortOrderBy, """ Returns the elements in the list that come after the specified cursor - """ after: String """ + """ after: String, """ Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. """ first: Int): SalesforceTopicAssignmentsConnection customFields(""" @@ -247231,11 +249295,11 @@ type GitHubPullRequestCommitCommentThread implements OneGraphNode & GitHubReposi """ comments(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubCommitCommentConnection! """ @@ -247515,19 +249579,19 @@ type GitHubSecurityAdvisory implements OneGraphNode & GitHubNode { """ vulnerabilities(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ A list of severities to filter vulnerabilities by. - """ severities: [GitHubSecurityAdvisorySeverity!] """ + """ severities: [GitHubSecurityAdvisorySeverity!], """ A package name to filter vulnerabilities by. - """ package: String """ + """ package: String, """ An ecosystem to filter vulnerabilities by. - """ ecosystem: GitHubSecurityAdvisoryEcosystem """ + """ ecosystem: GitHubSecurityAdvisoryEcosystem, """ Ordering options for the returned topics. """ orderBy: GitHubSecurityVulnerabilityOrder): GitHubSecurityVulnerabilityConnection! """ @@ -247550,7 +249614,8 @@ type GitHubRepositoryVulnerabilityAlert implements OneGraphNode & GitHubReposito """ The affected version """ - affectedRange: String! @deprecated(reason: "advisory specific fields are being removed from repositoryVulnerabilityAlert objects Use `securityVulnerability.vulnerableVersionRange` instead. Removal on 2019-10-01 UTC.") + affectedRange: String! + @deprecated(reason: "advisory specific fields are being removed from repositoryVulnerabilityAlert objects Use `securityVulnerability.vulnerableVersionRange` instead. Removal on 2019-10-01 UTC.") """ When was the alert created? """ @@ -247570,15 +249635,18 @@ type GitHubRepositoryVulnerabilityAlert implements OneGraphNode & GitHubReposito """ The external identifier for the vulnerability """ - externalIdentifier: String @deprecated(reason: "advisory specific fields are being removed from repositoryVulnerabilityAlert objects Use `securityAdvisory.identifiers` instead. Removal on 2019-10-01 UTC.") + externalIdentifier: String + @deprecated(reason: "advisory specific fields are being removed from repositoryVulnerabilityAlert objects Use `securityAdvisory.identifiers` instead. Removal on 2019-10-01 UTC.") """ The external reference for the vulnerability """ - externalReference: String! @deprecated(reason: "advisory specific fields are being removed from repositoryVulnerabilityAlert objects Use `securityAdvisory.references` instead. Removal on 2019-10-01 UTC.") + externalReference: String! + @deprecated(reason: "advisory specific fields are being removed from repositoryVulnerabilityAlert objects Use `securityAdvisory.references` instead. Removal on 2019-10-01 UTC.") """ The fixed version """ - fixedIn: String @deprecated(reason: "advisory specific fields are being removed from repositoryVulnerabilityAlert objects Use `securityVulnerability.firstPatchedVersion` instead. Removal on 2019-10-01 UTC.") + fixedIn: String + @deprecated(reason: "advisory specific fields are being removed from repositoryVulnerabilityAlert objects Use `securityVulnerability.firstPatchedVersion` instead. Removal on 2019-10-01 UTC.") """ """ @@ -247586,7 +249654,8 @@ type GitHubRepositoryVulnerabilityAlert implements OneGraphNode & GitHubReposito """ The affected package """ - packageName: String! @deprecated(reason: "advisory specific fields are being removed from repositoryVulnerabilityAlert objects Use `securityVulnerability.package` instead. Removal on 2019-10-01 UTC.") + packageName: String! + @deprecated(reason: "advisory specific fields are being removed from repositoryVulnerabilityAlert objects Use `securityVulnerability.package` instead. Removal on 2019-10-01 UTC.") """ The associated repository """ @@ -247639,11 +249708,11 @@ type GitHubCommitCommentThread implements OneGraphNode & GitHubRepositoryNode & """ comments(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubCommitCommentConnection! """ @@ -247891,11 +249960,11 @@ type GitHubDeployment implements OneGraphNode & GitHubNode { """ statuses(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubDeploymentStatusConnection """ @@ -248173,13 +250242,13 @@ type GitHubPullRequestReviewThread implements OneGraphNode & GitHubNode { """ comments(""" Skips the first _n_ elements in the list. - """ skip: Int """ + """ skip: Int, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubPullRequestReviewCommentConnection! """ @@ -248365,7 +250434,8 @@ type GitHubAssignedEvent implements OneGraphNode & GitHubNode { """ Identifies the user who was assigned. """ - user: GitHubUser @deprecated(reason: "Assignees can now be mannequins. Use the `assignee` field instead. Removal on 2020-01-01 UTC.") + user: GitHubUser + @deprecated(reason: "Assignees can now be mannequins. Use the `assignee` field instead. Removal on 2020-01-01 UTC.") oneGraphLinkedNodes(""" Filter the connected nodes that are returned by service or typename. """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! @@ -249081,11 +251151,11 @@ interface GitHubAssignable { """ assignees(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubUserConnection! } @@ -249117,7 +251187,8 @@ type GitHubUnassignedEvent implements OneGraphNode & GitHubNode { """ Identifies the subject (user) who was unassigned. """ - user: GitHubUser @deprecated(reason: "Assignees can now be mannequins. Use the `assignee` field instead. Removal on 2020-01-01 UTC.") + user: GitHubUser + @deprecated(reason: "Assignees can now be mannequins. Use the `assignee` field instead. Removal on 2020-01-01 UTC.") oneGraphLinkedNodes(""" Filter the connected nodes that are returned by service or typename. """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! @@ -249195,13 +251266,13 @@ interface GitHubLabelable { """ labels(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Ordering options for labels returned from the connection. """ orderBy: GitHubLabelOrder): GitHubLabelConnection } @@ -249389,11 +251460,11 @@ interface GitHubComment { """ userContentEdits(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubUserContentEditConnection """ @@ -249459,13 +251530,13 @@ type GitHubTopic implements OneGraphNode & GitHubStarrable & GitHubNode { """ stargazers(""" Order for connection - """ orderBy: GitHubStarOrder """ + """ orderBy: GitHubStarOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubStargazerConnection! """ @@ -249494,13 +251565,13 @@ interface GitHubStarrable { """ stargazers(""" Order for connection - """ orderBy: GitHubStarOrder """ + """ orderBy: GitHubStarOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubStargazerConnection! """ @@ -249593,45 +251664,46 @@ interface GitHubRepositoryOwner { """ pinnedRepositories(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ If non-null, filters repositories according to whether they have been locked - """ isLocked: Boolean """ + """ isLocked: Boolean, """ Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns. - """ ownerAffiliations: [GitHubRepositoryAffiliation] """ + """ ownerAffiliations: [GitHubRepositoryAffiliation], """ Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns. - """ affiliations: [GitHubRepositoryAffiliation] """ + """ affiliations: [GitHubRepositoryAffiliation], """ Ordering options for repositories returned from the connection - """ orderBy: GitHubRepositoryOrder """ + """ orderBy: GitHubRepositoryOrder, """ If non-null, filters repositories according to privacy - """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! @deprecated(reason: "pinnedRepositories will be removed Use ProfileOwner.pinnedItems instead. Removal on 2019-10-01 UTC.") + """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! + @deprecated(reason: "pinnedRepositories will be removed Use ProfileOwner.pinnedItems instead. Removal on 2019-10-01 UTC.") """ A list of repositories that the user owns. """ repositories(""" If non-null, filters repositories according to whether they are forks of another repository - """ isFork: Boolean """ + """ isFork: Boolean, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ If non-null, filters repositories according to whether they have been locked - """ isLocked: Boolean """ + """ isLocked: Boolean, """ Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns. - """ ownerAffiliations: [GitHubRepositoryAffiliation] """ + """ ownerAffiliations: [GitHubRepositoryAffiliation], """ Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns. - """ affiliations: [GitHubRepositoryAffiliation] """ + """ affiliations: [GitHubRepositoryAffiliation], """ Ordering options for repositories returned from the connection - """ orderBy: GitHubRepositoryOrder """ + """ orderBy: GitHubRepositoryOrder, """ If non-null, filters repositories according to privacy """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! """ @@ -249829,11 +251901,11 @@ type GitHubGist implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ comments(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubGistCommentConnection! """ @@ -249849,7 +251921,7 @@ type GitHubGist implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ files(""" The oid of the files to return - """ oid: String """ + """ oid: String, """ The maximum number of files to return. """ limit: Int): [GitHubGistFile] """ @@ -249857,13 +251929,13 @@ type GitHubGist implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ forks(""" Ordering options for gists returned from the connection - """ orderBy: GitHubGistOrder """ + """ orderBy: GitHubGistOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubGistConnection! """ @@ -249899,13 +251971,13 @@ type GitHubGist implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ stargazers(""" Order for connection - """ orderBy: GitHubStarOrder """ + """ orderBy: GitHubStarOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubStargazerConnection! """ @@ -250006,11 +252078,11 @@ type GitHubGistComment implements OneGraphNode & GitHubUpdatableComment & GitHub """ userContentEdits(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubUserContentEditConnection """ @@ -250082,17 +252154,17 @@ interface GitHubProjectOwner { """ projects(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ A list of states to filter the projects by. - """ states: [GitHubProjectState!] """ + """ states: [GitHubProjectState!], """ Query to search projects by, currently only searching by name. - """ search: String """ + """ search: String, """ Ordering options for projects returned from the connection """ orderBy: GitHubProjectOrder): GitHubProjectConnection! """ @@ -250268,13 +252340,13 @@ type GitHubProjectColumn implements OneGraphNode & GitHubNode { """ cards(""" A list of archived states to filter the cards by - """ archivedStates: [GitHubProjectCardArchivedState] """ + """ archivedStates: [GitHubProjectCardArchivedState], """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubProjectCardConnection! """ @@ -250383,11 +252455,11 @@ type GitHubProject implements OneGraphNode & GitHubUpdatable & GitHubNode & GitH """ columns(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubProjectColumnConnection! """ @@ -250423,13 +252495,13 @@ type GitHubProject implements OneGraphNode & GitHubUpdatable & GitHubNode & GitH """ pendingCards(""" A list of archived states to filter the cards by - """ archivedStates: [GitHubProjectCardArchivedState] """ + """ archivedStates: [GitHubProjectCardArchivedState], """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubProjectCardConnection! """ @@ -250527,19 +252599,19 @@ type GitHubMilestone implements OneGraphNode & GitHubUniformResourceLocatable & """ issues(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Filtering options for issues returned from the connection. - """ filterBy: GitHubIssueFilters """ + """ filterBy: GitHubIssueFilters, """ A list of states to filter the issues by. - """ states: [GitHubIssueState!] """ + """ states: [GitHubIssueState!], """ A list of label names to filter the pull requests by. - """ labels: [String!] """ + """ labels: [String!], """ Ordering options for issues returned from the connection. """ orderBy: GitHubIssueOrder): GitHubIssueConnection! """ @@ -250551,21 +252623,21 @@ type GitHubMilestone implements OneGraphNode & GitHubUniformResourceLocatable & """ pullRequests(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Ordering options for pull requests returned from the connection. - """ orderBy: GitHubIssueOrder """ + """ orderBy: GitHubIssueOrder, """ The base ref name to filter the pull requests by. - """ baseRefName: String """ + """ baseRefName: String, """ The head ref name to filter the pull requests by. - """ headRefName: String """ + """ headRefName: String, """ A list of label names to filter the pull requests by. - """ labels: [String!] """ + """ labels: [String!], """ A list of states to filter the pull requests by. """ states: [GitHubPullRequestState!]): GitHubPullRequestConnection! """ @@ -250740,19 +252812,19 @@ type GitHubLabel implements OneGraphNode & GitHubNode { """ issues(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Filtering options for issues returned from the connection. - """ filterBy: GitHubIssueFilters """ + """ filterBy: GitHubIssueFilters, """ A list of states to filter the issues by. - """ states: [GitHubIssueState!] """ + """ states: [GitHubIssueState!], """ A list of label names to filter the pull requests by. - """ labels: [String!] """ + """ labels: [String!], """ Ordering options for issues returned from the connection. """ orderBy: GitHubIssueOrder): GitHubIssueConnection! """ @@ -250764,21 +252836,21 @@ type GitHubLabel implements OneGraphNode & GitHubNode { """ pullRequests(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Ordering options for pull requests returned from the connection. - """ orderBy: GitHubIssueOrder """ + """ orderBy: GitHubIssueOrder, """ The base ref name to filter the pull requests by. - """ baseRefName: String """ + """ baseRefName: String, """ The head ref name to filter the pull requests by. - """ headRefName: String """ + """ headRefName: String, """ A list of label names to filter the pull requests by. - """ labels: [String!] """ + """ labels: [String!], """ A list of states to filter the pull requests by. """ states: [GitHubPullRequestState!]): GitHubPullRequestConnection! """ @@ -250873,11 +252945,11 @@ type GitHubOrganizationTeamsHovercardContext implements GitHubHovercardContext { """ relevantTeams(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubTeamConnection! """ @@ -250947,11 +253019,11 @@ type GitHubOrganizationsHovercardContext implements GitHubHovercardContext { """ relevantOrganizations(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubOrganizationConnection! """ @@ -251085,11 +253157,11 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ assignees(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubUserConnection! """ @@ -251125,11 +253197,11 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ comments(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubIssueCommentConnection! """ @@ -251167,13 +253239,13 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ labels(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Ordering options for labels returned from the connection. """ orderBy: GitHubLabelOrder): GitHubLabelConnection """ @@ -251197,11 +253269,11 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ participants(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubUserConnection! """ @@ -251209,13 +253281,13 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ projectCards(""" A list of archived states to filter the cards by - """ archivedStates: [GitHubProjectCardArchivedState] """ + """ archivedStates: [GitHubProjectCardArchivedState], """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubProjectCardConnection! """ @@ -251231,15 +253303,15 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ reactions(""" Allows specifying the order in which reactions are returned. - """ orderBy: GitHubReactionOrder """ + """ orderBy: GitHubReactionOrder, """ Allows filtering Reactions by emoji. - """ content: GitHubReactionContent """ + """ content: GitHubReactionContent, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubReactionConnection! """ @@ -251259,31 +253331,32 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ timeline(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Allows filtering timeline events by a `since` timestamp. - """ since: String): GitHubIssueTimelineConnection! @deprecated(reason: "`timeline` will be removed Use Issue.timelineItems instead. Removal on 2019-10-01 UTC.") + """ since: String): GitHubIssueTimelineConnection! + @deprecated(reason: "`timeline` will be removed Use Issue.timelineItems instead. Removal on 2019-10-01 UTC.") """ A list of events, comments, commits, etc. associated with the issue. """ timelineItems(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Filter timeline items by type. - """ itemTypes: [GitHubIssueTimelineItemsItemType!] """ + """ itemTypes: [GitHubIssueTimelineItemsItemType!], """ Skips the first _n_ elements in the list. - """ skip: Int """ + """ skip: Int, """ Filter timeline items by a `since` timestamp. """ since: String): GitHubIssueTimelineItemsConnection! """ @@ -251303,11 +253376,11 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ userContentEdits(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubUserContentEditConnection """ @@ -251429,15 +253502,15 @@ type GitHubIssueComment implements OneGraphNode & GitHubUpdatableComment & GitHu """ reactions(""" Allows specifying the order in which reactions are returned. - """ orderBy: GitHubReactionOrder """ + """ orderBy: GitHubReactionOrder, """ Allows filtering Reactions by emoji. - """ content: GitHubReactionContent """ + """ content: GitHubReactionContent, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubReactionConnection! """ @@ -251461,11 +253534,11 @@ type GitHubIssueComment implements OneGraphNode & GitHubUpdatableComment & GitHu """ userContentEdits(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubUserContentEditConnection """ @@ -251753,11 +253826,11 @@ type GitHubPullRequestReview implements OneGraphNode & GitHubUpdatableComment & """ comments(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubPullRequestReviewCommentConnection! """ @@ -251797,11 +253870,11 @@ type GitHubPullRequestReview implements OneGraphNode & GitHubUpdatableComment & """ onBehalfOf(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubTeamConnection! """ @@ -251821,15 +253894,15 @@ type GitHubPullRequestReview implements OneGraphNode & GitHubUpdatableComment & """ reactions(""" Allows specifying the order in which reactions are returned. - """ orderBy: GitHubReactionOrder """ + """ orderBy: GitHubReactionOrder, """ Allows filtering Reactions by emoji. - """ content: GitHubReactionContent """ + """ content: GitHubReactionContent, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubReactionConnection! """ @@ -251861,11 +253934,11 @@ type GitHubPullRequestReview implements OneGraphNode & GitHubUpdatableComment & """ userContentEdits(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubUserContentEditConnection """ @@ -252609,11 +254682,11 @@ type GitHubTeam implements OneGraphNode & GitHubSubscribable & GitHubNode & GitH """ ancestors(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubTeamConnection! """ @@ -252627,17 +254700,17 @@ type GitHubTeam implements OneGraphNode & GitHubSubscribable & GitHubNode & GitH """ childTeams(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Whether to list immediate child teams or all descendant child teams. - """ immediateOnly: Boolean """ + """ immediateOnly: Boolean, """ User logins to filter by - """ userLogins: [String!] """ + """ userLogins: [String!], """ Order for connection """ orderBy: GitHubTeamOrder): GitHubTeamConnection! """ @@ -252663,15 +254736,15 @@ type GitHubTeam implements OneGraphNode & GitHubSubscribable & GitHubNode & GitH """ discussions(""" Order for connection - """ orderBy: GitHubTeamDiscussionOrder """ + """ orderBy: GitHubTeamDiscussionOrder, """ If provided, filters discussions according to whether or not they are pinned. - """ isPinned: Boolean """ + """ isPinned: Boolean, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubTeamDiscussionConnection! """ @@ -252699,11 +254772,11 @@ type GitHubTeam implements OneGraphNode & GitHubSubscribable & GitHubNode & GitH """ invitations(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubOrganizationInvitationConnection """ @@ -252711,13 +254784,13 @@ type GitHubTeam implements OneGraphNode & GitHubSubscribable & GitHubNode & GitH """ memberStatuses(""" Ordering options for user statuses returned from the connection. - """ orderBy: GitHubUserStatusOrder """ + """ orderBy: GitHubUserStatusOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubUserStatusConnection! """ @@ -252725,19 +254798,19 @@ type GitHubTeam implements OneGraphNode & GitHubSubscribable & GitHubNode & GitH """ members(""" Order for the connection. - """ orderBy: GitHubTeamMemberOrder """ + """ orderBy: GitHubTeamMemberOrder, """ Filter by team member role - """ role: GitHubTeamMemberRole """ + """ role: GitHubTeamMemberRole, """ Filter by membership type - """ membership: GitHubTeamMembershipType """ + """ membership: GitHubTeamMembershipType, """ The search string to look for. - """ query: String """ + """ query: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubTeamMemberConnection! """ @@ -252777,15 +254850,15 @@ type GitHubTeam implements OneGraphNode & GitHubSubscribable & GitHubNode & GitH """ repositories(""" Order for the connection. - """ orderBy: GitHubTeamRepositoryOrder """ + """ orderBy: GitHubTeamRepositoryOrder, """ The search string to look for. - """ query: String """ + """ query: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubTeamRepositoryConnection! """ @@ -253006,11 +255079,11 @@ type GitHubBranchProtectionRule implements OneGraphNode & GitHubNode { """ branchProtectionRuleConflicts(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubBranchProtectionRuleConflictConnection! """ @@ -253038,13 +255111,13 @@ type GitHubBranchProtectionRule implements OneGraphNode & GitHubNode { """ matchingRefs(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Filters refs with query on name """ query: String): GitHubRefConnection! """ @@ -253056,11 +255129,11 @@ type GitHubBranchProtectionRule implements OneGraphNode & GitHubNode { """ pushAllowances(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubPushAllowanceConnection! """ @@ -253108,11 +255181,11 @@ type GitHubBranchProtectionRule implements OneGraphNode & GitHubNode { """ reviewDismissalAllowances(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubReviewDismissalAllowanceConnection! oneGraphLinkedNodes(""" @@ -253169,13 +255242,13 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ assignableUsers(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Filters users with query on user name and login """ query: String): GitHubUserConnection! """ @@ -253183,11 +255256,11 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ branchProtectionRules(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubBranchProtectionRuleConnection! """ @@ -253199,15 +255272,15 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ collaborators(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Filters users with query on user name and login - """ query: String """ + """ query: String, """ Collaborators affiliation level with a repository. """ affiliation: GitHubCollaboratorAffiliation): GitHubRepositoryCollaboratorConnection """ @@ -253215,11 +255288,11 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ commitComments(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubCommitCommentConnection! """ @@ -253243,11 +255316,11 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ deployKeys(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubDeployKeyConnection! """ @@ -253255,15 +255328,15 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ deployments(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Ordering options for deployments returned from the connection. - """ orderBy: GitHubDeploymentOrder """ + """ orderBy: GitHubDeploymentOrder, """ Environments to list deployments for """ environments: [String!]): GitHubDeploymentConnection! """ @@ -253287,21 +255360,21 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ forks(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ If non-null, filters repositories according to whether they have been locked - """ isLocked: Boolean """ + """ isLocked: Boolean, """ Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns. - """ ownerAffiliations: [GitHubRepositoryAffiliation] """ + """ ownerAffiliations: [GitHubRepositoryAffiliation], """ Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns. - """ affiliations: [GitHubRepositoryAffiliation] """ + """ affiliations: [GitHubRepositoryAffiliation], """ Ordering options for repositories returned from the connection - """ orderBy: GitHubRepositoryOrder """ + """ orderBy: GitHubRepositoryOrder, """ If non-null, filters repositories according to privacy """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! """ @@ -253373,19 +255446,19 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ issues(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Filtering options for issues returned from the connection. - """ filterBy: GitHubIssueFilters """ + """ filterBy: GitHubIssueFilters, """ A list of states to filter the issues by. - """ states: [GitHubIssueState!] """ + """ states: [GitHubIssueState!], """ A list of label names to filter the pull requests by. - """ labels: [String!] """ + """ labels: [String!], """ Ordering options for issues returned from the connection. """ orderBy: GitHubIssueOrder): GitHubIssueConnection! """ @@ -253399,15 +255472,15 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ labels(""" If provided, searches labels by name and description. - """ query: String """ + """ query: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Ordering options for labels returned from the connection. """ orderBy: GitHubLabelOrder): GitHubLabelConnection """ @@ -253415,13 +255488,13 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ languages(""" Order for connection - """ orderBy: GitHubLanguageOrder """ + """ orderBy: GitHubLanguageOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubLanguageConnection """ @@ -253437,13 +255510,13 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ mentionableUsers(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Filters users with query on user name and login """ query: String): GitHubUserConnection! """ @@ -253461,15 +255534,15 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ milestones(""" Ordering options for milestones. - """ orderBy: GitHubMilestoneOrder """ + """ orderBy: GitHubMilestoneOrder, """ Filter by the state of the milestones. - """ states: [GitHubMilestoneState!] """ + """ states: [GitHubMilestoneState!], """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubMilestoneConnection """ @@ -253489,7 +255562,7 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ object(""" A Git revision expression suitable for rev-parse - """ expression: String """ + """ expression: String, """ The Git object ID """ oid: String): GitHubGitObject """ @@ -253519,17 +255592,17 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ projects(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ A list of states to filter the projects by. - """ states: [GitHubProjectState!] """ + """ states: [GitHubProjectState!], """ Query to search projects by, currently only searching by name. - """ search: String """ + """ search: String, """ Ordering options for projects returned from the connection """ orderBy: GitHubProjectOrder): GitHubProjectConnection! """ @@ -253551,21 +255624,21 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ pullRequests(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Ordering options for pull requests returned from the connection. - """ orderBy: GitHubIssueOrder """ + """ orderBy: GitHubIssueOrder, """ The base ref name to filter the pull requests by. - """ baseRefName: String """ + """ baseRefName: String, """ The head ref name to filter the pull requests by. - """ headRefName: String """ + """ headRefName: String, """ A list of label names to filter the pull requests by. - """ labels: [String!] """ + """ labels: [String!], """ A list of states to filter the pull requests by. """ states: [GitHubPullRequestState!]): GitHubPullRequestConnection! """ @@ -253587,19 +255660,19 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ refs(""" Ordering options for refs returned from the connection. - """ orderBy: GitHubRefOrder """ + """ orderBy: GitHubRefOrder, """ DEPRECATED: use orderBy. The ordering direction. - """ direction: GitHubOrderDirection """ + """ direction: GitHubOrderDirection, """ A ref name prefix like `refs/heads/`, `refs/tags/`, etc. - """ refPrefix: String! """ + """ refPrefix: String!, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Filters refs with query on name """ query: String): GitHubRefConnection """ @@ -253607,41 +255680,43 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ registryPackages(""" Filter registry package by whether it is publicly visible - """ publicOnly: Boolean """ + """ publicOnly: Boolean, """ Filter registry package by type (string). - """ registryPackageType: String """ + """ registryPackageType: String, """ Filter registry package by type. - """ packageType: GitHubRegistryPackageType """ + """ packageType: GitHubRegistryPackageType, """ Find registry packages in a repository. - """ repositoryId: ID """ + """ repositoryId: ID, """ Find registry packages by their names. - """ names: [String] """ + """ names: [String], """ Find registry package by name. - """ name: String """ + """ name: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubRegistryPackageConnection! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageOwner` object instead. Removal on 2020-04-01 UTC.") + """ after: String): GitHubRegistryPackageConnection! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageOwner` object instead. Removal on 2020-04-01 UTC.") """ A list of registry packages for a particular search query. """ registryPackagesForQuery(""" Filter registry package by type. - """ packageType: GitHubRegistryPackageType """ + """ packageType: GitHubRegistryPackageType, """ Find registry package by search query. - """ query: String """ + """ query: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubRegistryPackageConnection! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageSearch` object instead. Removal on 2020-04-01 UTC.") + """ after: String): GitHubRegistryPackageConnection! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageSearch` object instead. Removal on 2020-04-01 UTC.") """ Lookup a single release given various criteria. """ @@ -253653,13 +255728,13 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ releases(""" Order for connection - """ orderBy: GitHubReleaseOrder """ + """ orderBy: GitHubReleaseOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubReleaseConnection! """ @@ -253667,11 +255742,11 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ repositoryTopics(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubRepositoryTopicConnection! """ @@ -253697,13 +255772,13 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ stargazers(""" Order for connection - """ orderBy: GitHubStarOrder """ + """ orderBy: GitHubStarOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubStargazerConnection! """ @@ -253711,11 +255786,11 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ submodules(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubSubmoduleConnection! """ @@ -253771,11 +255846,11 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ vulnerabilityAlerts(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubRepositoryVulnerabilityAlertConnection """ @@ -253783,11 +255858,11 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ watchers(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubUserConnection! """ @@ -253797,11 +255872,13 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ contributors_oneGraph(""" The pagination cursor used to control which results you want - """ after: String includeAnonymousContributors: Boolean): GitHubRepositoryContributorConnection! @deprecated(reason: "*Temporary mutation until GitHub implemements their own `contributors` field for a repostiory.*") + """ after: String, includeAnonymousContributors: Boolean): GitHubRepositoryContributorConnection! + @deprecated(reason: "*Temporary mutation until GitHub implemements their own `contributors` field for a repostiory.*") """ Whether a the current user is a collaborator on this repository """ - viewerIsCollaborator_oneGraph: Boolean! @deprecated(reason: "*Temporary mutation until GitHub implemements their own `viewerIsCollaborator` field for a repository.*") + viewerIsCollaborator_oneGraph: Boolean! + @deprecated(reason: "*Temporary mutation until GitHub implemements their own `viewerIsCollaborator` field for a repository.*") oneGraphLinkedNodes(""" Filter the connected nodes that are returned by service or typename. """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! @@ -253875,21 +255952,21 @@ type GitHubRef implements OneGraphNode & GitHubNode { """ associatedPullRequests(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Ordering options for pull requests returned from the connection. - """ orderBy: GitHubIssueOrder """ + """ orderBy: GitHubIssueOrder, """ The base ref name to filter the pull requests by. - """ baseRefName: String """ + """ baseRefName: String, """ The head ref name to filter the pull requests by. - """ headRefName: String """ + """ headRefName: String, """ A list of label names to filter the pull requests by. - """ labels: [String!] """ + """ labels: [String!], """ A list of states to filter the pull requests by. """ states: [GitHubPullRequestState!]): GitHubPullRequestConnection! """ @@ -254015,11 +256092,11 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ assignees(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubUserConnection! """ @@ -254083,11 +256160,11 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ comments(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubIssueCommentConnection! """ @@ -254095,11 +256172,11 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ commits(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubPullRequestCommitConnection! """ @@ -254127,11 +256204,11 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ files(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubPullRequestChangedFileConnection """ @@ -254181,13 +256258,13 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ labels(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Ordering options for labels returned from the connection. """ orderBy: GitHubLabelOrder): GitHubLabelConnection """ @@ -254235,11 +256312,11 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ participants(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubUserConnection! """ @@ -254255,13 +256332,13 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ projectCards(""" A list of archived states to filter the cards by - """ archivedStates: [GitHubProjectCardArchivedState] """ + """ archivedStates: [GitHubProjectCardArchivedState], """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubProjectCardConnection! """ @@ -254277,15 +256354,15 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ reactions(""" Allows specifying the order in which reactions are returned. - """ orderBy: GitHubReactionOrder """ + """ orderBy: GitHubReactionOrder, """ Allows filtering Reactions by emoji. - """ content: GitHubReactionContent """ + """ content: GitHubReactionContent, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubReactionConnection! """ @@ -254313,11 +256390,11 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ reviewRequests(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubReviewRequestConnection """ @@ -254325,11 +256402,11 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ reviewThreads(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubPullRequestReviewThreadConnection! """ @@ -254337,15 +256414,15 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ reviews(""" Filter by author of the review. - """ author: String """ + """ author: String, """ A list of states to filter the reviews. - """ states: [GitHubPullRequestReviewState!] """ + """ states: [GitHubPullRequestReviewState!], """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubPullRequestReviewConnection """ @@ -254361,31 +256438,32 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ timeline(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Allows filtering timeline events by a `since` timestamp. - """ since: String): GitHubPullRequestTimelineConnection! @deprecated(reason: "`timeline` will be removed Use PullRequest.timelineItems instead. Removal on 2019-10-01 UTC.") + """ since: String): GitHubPullRequestTimelineConnection! + @deprecated(reason: "`timeline` will be removed Use PullRequest.timelineItems instead. Removal on 2019-10-01 UTC.") """ A list of events, comments, commits, etc. associated with the pull request. """ timelineItems(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Filter timeline items by type. - """ itemTypes: [GitHubPullRequestTimelineItemsItemType!] """ + """ itemTypes: [GitHubPullRequestTimelineItemsItemType!], """ Skips the first _n_ elements in the list. - """ skip: Int """ + """ skip: Int, """ Filter timeline items by a `since` timestamp. """ since: String): GitHubPullRequestTimelineItemsConnection! """ @@ -254405,11 +256483,11 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ userContentEdits(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubUserContentEditConnection """ @@ -254502,13 +256580,13 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git """ associatedPullRequests(""" Ordering options for pull requests. - """ orderBy: GitHubPullRequestOrder """ + """ orderBy: GitHubPullRequestOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubPullRequestConnection """ @@ -254538,11 +256616,11 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git """ comments(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubCommitCommentConnection! """ @@ -254574,15 +256652,15 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git """ deployments(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Ordering options for deployments returned from the connection. - """ orderBy: GitHubDeploymentOrder """ + """ orderBy: GitHubDeploymentOrder, """ Environments to list deployments for """ environments: [String!]): GitHubDeploymentConnection """ @@ -254590,19 +256668,19 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git """ history(""" Allows specifying an ending time or date for fetching commits. - """ until: String """ + """ until: String, """ Allows specifying a beginning time or date for fetching commits. - """ since: String """ + """ since: String, """ If non-null, filters history to only show commits with matching authorship. - """ author: GitHubCommitAuthor """ + """ author: GitHubCommitAuthor, """ If non-null, filters history to only show commits touching files under this path. - """ path: String """ + """ path: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubCommitHistoryConnection! """ @@ -254642,11 +256720,11 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git """ parents(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubCommitConnection! """ @@ -254678,11 +256756,11 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git """ submodules(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubSubmoduleConnection! """ @@ -254841,15 +256919,15 @@ type GitHubPullRequestReviewComment implements OneGraphNode & GitHubUpdatableCom """ reactions(""" Allows specifying the order in which reactions are returned. - """ orderBy: GitHubReactionOrder """ + """ orderBy: GitHubReactionOrder, """ Allows filtering Reactions by emoji. - """ content: GitHubReactionContent """ + """ content: GitHubReactionContent, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubReactionConnection! """ @@ -254881,11 +256959,11 @@ type GitHubPullRequestReviewComment implements OneGraphNode & GitHubUpdatableCom """ userContentEdits(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubUserContentEditConnection """ @@ -254942,15 +257020,15 @@ interface GitHubReactable { """ reactions(""" Allows specifying the order in which reactions are returned. - """ orderBy: GitHubReactionOrder """ + """ orderBy: GitHubReactionOrder, """ Allows filtering Reactions by emoji. - """ content: GitHubReactionContent """ + """ content: GitHubReactionContent, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubReactionConnection! """ @@ -255015,11 +257093,11 @@ type GitHubReactionGroup { """ users(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubReactingUserConnection! """ @@ -255105,15 +257183,15 @@ type GitHubTeamDiscussionComment implements OneGraphNode & GitHubUpdatableCommen """ reactions(""" Allows specifying the order in which reactions are returned. - """ orderBy: GitHubReactionOrder """ + """ orderBy: GitHubReactionOrder, """ Allows filtering Reactions by emoji. - """ content: GitHubReactionContent """ + """ content: GitHubReactionContent, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubReactionConnection! """ @@ -255133,11 +257211,11 @@ type GitHubTeamDiscussionComment implements OneGraphNode & GitHubUpdatableCommen """ userContentEdits(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubUserContentEditConnection """ @@ -255269,15 +257347,15 @@ type GitHubTeamDiscussion implements OneGraphNode & GitHubUpdatableComment & Git """ comments(""" When provided, filters the connection such that results begin with the comment with this number. - """ fromComment: Int """ + """ fromComment: Int, """ Order for connection - """ orderBy: GitHubTeamDiscussionCommentOrder """ + """ orderBy: GitHubTeamDiscussionCommentOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubTeamDiscussionCommentConnection! """ @@ -255341,15 +257419,15 @@ type GitHubTeamDiscussion implements OneGraphNode & GitHubUpdatableComment & Git """ reactions(""" Allows specifying the order in which reactions are returned. - """ orderBy: GitHubReactionOrder """ + """ orderBy: GitHubReactionOrder, """ Allows filtering Reactions by emoji. - """ content: GitHubReactionContent """ + """ content: GitHubReactionContent, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubReactionConnection! """ @@ -255377,11 +257455,11 @@ type GitHubTeamDiscussion implements OneGraphNode & GitHubUpdatableComment & Git """ userContentEdits(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubUserContentEditConnection """ @@ -255990,15 +258068,15 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ auditLog(""" Ordering options for the returned audit log entries. - """ orderBy: GitHubAuditLogOrder """ + """ orderBy: GitHubAuditLogOrder, """ The query string to filter audit entries - """ query: String """ + """ query: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubOrganizationAuditEntryConnection! """ @@ -256052,13 +258130,13 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ memberStatuses(""" Ordering options for user statuses returned from the connection. - """ orderBy: GitHubUserStatusOrder """ + """ orderBy: GitHubUserStatusOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubUserStatusConnection! """ @@ -256066,11 +258144,11 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ membersWithRole(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubOrganizationMemberConnection! """ @@ -256094,11 +258172,11 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ pendingMembers(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubUserConnection! """ @@ -256106,13 +258184,13 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ pinnableItems(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Filter the types of pinnable items that are returned. """ types: [GitHubPinnableItemType!]): GitHubPinnableItemConnection! """ @@ -256120,13 +258198,13 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ pinnedItems(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Filter the types of pinned items that are returned. """ types: [GitHubPinnableItemType!]): GitHubPinnableItemConnection! """ @@ -256138,23 +258216,24 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ pinnedRepositories(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ If non-null, filters repositories according to whether they have been locked - """ isLocked: Boolean """ + """ isLocked: Boolean, """ Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns. - """ ownerAffiliations: [GitHubRepositoryAffiliation] """ + """ ownerAffiliations: [GitHubRepositoryAffiliation], """ Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns. - """ affiliations: [GitHubRepositoryAffiliation] """ + """ affiliations: [GitHubRepositoryAffiliation], """ Ordering options for repositories returned from the connection - """ orderBy: GitHubRepositoryOrder """ + """ orderBy: GitHubRepositoryOrder, """ If non-null, filters repositories according to privacy - """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! @deprecated(reason: "pinnedRepositories will be removed Use ProfileOwner.pinnedItems instead. Removal on 2019-10-01 UTC.") + """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! + @deprecated(reason: "pinnedRepositories will be removed Use ProfileOwner.pinnedItems instead. Removal on 2019-10-01 UTC.") """ Find project by number. """ @@ -256166,17 +258245,17 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ projects(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ A list of states to filter the projects by. - """ states: [GitHubProjectState!] """ + """ states: [GitHubProjectState!], """ Query to search projects by, currently only searching by name. - """ search: String """ + """ search: String, """ Ordering options for projects returned from the connection """ orderBy: GitHubProjectOrder): GitHubProjectConnection! """ @@ -256192,63 +258271,65 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ registryPackages(""" Filter registry package by whether it is publicly visible - """ publicOnly: Boolean """ + """ publicOnly: Boolean, """ Filter registry package by type (string). - """ registryPackageType: String """ + """ registryPackageType: String, """ Filter registry package by type. - """ packageType: GitHubRegistryPackageType """ + """ packageType: GitHubRegistryPackageType, """ Find registry packages in a repository. - """ repositoryId: ID """ + """ repositoryId: ID, """ Find registry packages by their names. - """ names: [String] """ + """ names: [String], """ Find registry package by name. - """ name: String """ + """ name: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubRegistryPackageConnection! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageOwner` object instead. Removal on 2020-04-01 UTC.") + """ after: String): GitHubRegistryPackageConnection! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageOwner` object instead. Removal on 2020-04-01 UTC.") """ A list of registry packages for a particular search query. """ registryPackagesForQuery(""" Filter registry package by type. - """ packageType: GitHubRegistryPackageType """ + """ packageType: GitHubRegistryPackageType, """ Find registry package by search query. - """ query: String """ + """ query: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubRegistryPackageConnection! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageSearch` object instead. Removal on 2020-04-01 UTC.") + """ after: String): GitHubRegistryPackageConnection! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageSearch` object instead. Removal on 2020-04-01 UTC.") """ A list of repositories that the user owns. """ repositories(""" If non-null, filters repositories according to whether they are forks of another repository - """ isFork: Boolean """ + """ isFork: Boolean, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ If non-null, filters repositories according to whether they have been locked - """ isLocked: Boolean """ + """ isLocked: Boolean, """ Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns. - """ ownerAffiliations: [GitHubRepositoryAffiliation] """ + """ ownerAffiliations: [GitHubRepositoryAffiliation], """ Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns. - """ affiliations: [GitHubRepositoryAffiliation] """ + """ affiliations: [GitHubRepositoryAffiliation], """ Ordering options for repositories returned from the connection - """ orderBy: GitHubRepositoryOrder """ + """ orderBy: GitHubRepositoryOrder, """ If non-null, filters repositories according to privacy """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! """ @@ -256278,15 +258359,15 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ sponsorshipsAsMaintainer(""" Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer. - """ orderBy: GitHubSponsorshipOrder """ + """ orderBy: GitHubSponsorshipOrder, """ Whether or not to include private sponsorships in the result set - """ includePrivate: Boolean """ + """ includePrivate: Boolean, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubSponsorshipConnection! """ @@ -256294,13 +258375,13 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ sponsorshipsAsSponsor(""" Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer. - """ orderBy: GitHubSponsorshipOrder """ + """ orderBy: GitHubSponsorshipOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubSponsorshipConnection! """ @@ -256314,25 +258395,25 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ teams(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ If true, restrict to only root teams - """ rootTeamsOnly: Boolean """ + """ rootTeamsOnly: Boolean, """ If true, filters teams that are mapped to an LDAP Group (Enterprise only) - """ ldapMapped: Boolean """ + """ ldapMapped: Boolean, """ Ordering options for teams returned from the connection - """ orderBy: GitHubTeamOrder """ + """ orderBy: GitHubTeamOrder, """ User logins to filter by - """ userLogins: [String!] """ + """ userLogins: [String!], """ If non-null, filters teams with query on team name and team slug - """ query: String """ + """ query: String, """ If non-null, filters teams according to whether the viewer is an admin or member on team - """ role: GitHubTeamRole """ + """ role: GitHubTeamRole, """ If non-null, filters teams according to privacy """ privacy: GitHubTeamPrivacy): GitHubTeamConnection! """ @@ -256497,15 +258578,15 @@ type GitHubCommitComment implements OneGraphNode & GitHubUpdatableComment & GitH """ reactions(""" Allows specifying the order in which reactions are returned. - """ orderBy: GitHubReactionOrder """ + """ orderBy: GitHubReactionOrder, """ Allows filtering Reactions by emoji. - """ content: GitHubReactionContent """ + """ content: GitHubReactionContent, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubReactionConnection! """ @@ -256529,11 +258610,11 @@ type GitHubCommitComment implements OneGraphNode & GitHubUpdatableComment & GitH """ userContentEdits(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubUserContentEditConnection """ @@ -256669,11 +258750,11 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ commitComments(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubCommitCommentConnection! """ @@ -256689,9 +258770,9 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ contributionsCollection(""" Only contributions made before and up to and including this time will be counted. If omitted, defaults to the current time. - """ to: String """ + """ to: String, """ Only contributions made at this time or later will be counted. If omitted, defaults to a year ago. - """ from: String """ + """ from: String, """ The ID of the organization used to filter contributions. """ organizationID: ID): GitHubContributionsCollection! """ @@ -256711,11 +258792,11 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ followers(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubFollowerConnection! """ @@ -256723,11 +258804,11 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ following(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubFollowingConnection! """ @@ -256741,11 +258822,11 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ gistComments(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubGistCommentConnection! """ @@ -256753,15 +258834,15 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ gists(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Ordering options for gists returned from the connection - """ orderBy: GitHubGistOrder """ + """ orderBy: GitHubGistOrder, """ Filters Gists according to privacy. """ privacy: GitHubGistPrivacy): GitHubGistConnection! """ @@ -256807,11 +258888,11 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ issueComments(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubIssueCommentConnection! """ @@ -256819,19 +258900,19 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ issues(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Filtering options for issues returned from the connection. - """ filterBy: GitHubIssueFilters """ + """ filterBy: GitHubIssueFilters, """ A list of states to filter the issues by. - """ states: [GitHubIssueState!] """ + """ states: [GitHubIssueState!], """ A list of label names to filter the pull requests by. - """ labels: [String!] """ + """ labels: [String!], """ Ordering options for issues returned from the connection. """ orderBy: GitHubIssueOrder): GitHubIssueConnection! """ @@ -256861,11 +258942,11 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ organizations(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubOrganizationConnection! """ @@ -256873,13 +258954,13 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ pinnableItems(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Filter the types of pinnable items that are returned. """ types: [GitHubPinnableItemType!]): GitHubPinnableItemConnection! """ @@ -256887,13 +258968,13 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ pinnedItems(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Filter the types of pinned items that are returned. """ types: [GitHubPinnableItemType!]): GitHubPinnableItemConnection! """ @@ -256905,23 +258986,24 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ pinnedRepositories(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ If non-null, filters repositories according to whether they have been locked - """ isLocked: Boolean """ + """ isLocked: Boolean, """ Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns. - """ ownerAffiliations: [GitHubRepositoryAffiliation] """ + """ ownerAffiliations: [GitHubRepositoryAffiliation], """ Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns. - """ affiliations: [GitHubRepositoryAffiliation] """ + """ affiliations: [GitHubRepositoryAffiliation], """ Ordering options for repositories returned from the connection - """ orderBy: GitHubRepositoryOrder """ + """ orderBy: GitHubRepositoryOrder, """ If non-null, filters repositories according to privacy - """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! @deprecated(reason: "pinnedRepositories will be removed Use ProfileOwner.pinnedItems instead. Removal on 2019-10-01 UTC.") + """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! + @deprecated(reason: "pinnedRepositories will be removed Use ProfileOwner.pinnedItems instead. Removal on 2019-10-01 UTC.") """ Find project by number. """ @@ -256933,17 +259015,17 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ projects(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ A list of states to filter the projects by. - """ states: [GitHubProjectState!] """ + """ states: [GitHubProjectState!], """ Query to search projects by, currently only searching by name. - """ search: String """ + """ search: String, """ Ordering options for projects returned from the connection """ orderBy: GitHubProjectOrder): GitHubProjectConnection! """ @@ -256959,11 +259041,11 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ publicKeys(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubPublicKeyConnection! """ @@ -256971,21 +259053,21 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ pullRequests(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ Ordering options for pull requests returned from the connection. - """ orderBy: GitHubIssueOrder """ + """ orderBy: GitHubIssueOrder, """ The base ref name to filter the pull requests by. - """ baseRefName: String """ + """ baseRefName: String, """ The head ref name to filter the pull requests by. - """ headRefName: String """ + """ headRefName: String, """ A list of label names to filter the pull requests by. - """ labels: [String!] """ + """ labels: [String!], """ A list of states to filter the pull requests by. """ states: [GitHubPullRequestState!]): GitHubPullRequestConnection! """ @@ -256993,63 +259075,65 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ registryPackages(""" Filter registry package by whether it is publicly visible - """ publicOnly: Boolean """ + """ publicOnly: Boolean, """ Filter registry package by type (string). - """ registryPackageType: String """ + """ registryPackageType: String, """ Filter registry package by type. - """ packageType: GitHubRegistryPackageType """ + """ packageType: GitHubRegistryPackageType, """ Find registry packages in a repository. - """ repositoryId: ID """ + """ repositoryId: ID, """ Find registry packages by their names. - """ names: [String] """ + """ names: [String], """ Find registry package by name. - """ name: String """ + """ name: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubRegistryPackageConnection! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageOwner` object instead. Removal on 2020-04-01 UTC.") + """ after: String): GitHubRegistryPackageConnection! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageOwner` object instead. Removal on 2020-04-01 UTC.") """ A list of registry packages for a particular search query. """ registryPackagesForQuery(""" Filter registry package by type. - """ packageType: GitHubRegistryPackageType """ + """ packageType: GitHubRegistryPackageType, """ Find registry package by search query. - """ query: String """ + """ query: String, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubRegistryPackageConnection! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageSearch` object instead. Removal on 2020-04-01 UTC.") + """ after: String): GitHubRegistryPackageConnection! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageSearch` object instead. Removal on 2020-04-01 UTC.") """ A list of repositories that the user owns. """ repositories(""" If non-null, filters repositories according to whether they are forks of another repository - """ isFork: Boolean """ + """ isFork: Boolean, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ If non-null, filters repositories according to whether they have been locked - """ isLocked: Boolean """ + """ isLocked: Boolean, """ Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns. - """ ownerAffiliations: [GitHubRepositoryAffiliation] """ + """ ownerAffiliations: [GitHubRepositoryAffiliation], """ Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns. - """ affiliations: [GitHubRepositoryAffiliation] """ + """ affiliations: [GitHubRepositoryAffiliation], """ Ordering options for repositories returned from the connection - """ orderBy: GitHubRepositoryOrder """ + """ orderBy: GitHubRepositoryOrder, """ If non-null, filters repositories according to privacy """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! """ @@ -257057,21 +259141,21 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ repositoriesContributedTo(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ If non-null, include only the specified types of contributions. The GitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY] - """ contributionTypes: [GitHubRepositoryContributionType] """ + """ contributionTypes: [GitHubRepositoryContributionType], """ If true, include user repositories - """ includeUserRepositories: Boolean """ + """ includeUserRepositories: Boolean, """ If non-null, filters repositories according to whether they have been locked - """ isLocked: Boolean """ + """ isLocked: Boolean, """ Ordering options for repositories returned from the connection - """ orderBy: GitHubRepositoryOrder """ + """ orderBy: GitHubRepositoryOrder, """ If non-null, filters repositories according to privacy """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! """ @@ -257089,13 +259173,13 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ savedReplies(""" The field to order saved replies by. - """ orderBy: GitHubSavedReplyOrder """ + """ orderBy: GitHubSavedReplyOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubSavedReplyConnection """ @@ -257107,15 +259191,15 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ sponsorshipsAsMaintainer(""" Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer. - """ orderBy: GitHubSponsorshipOrder """ + """ orderBy: GitHubSponsorshipOrder, """ Whether or not to include private sponsorships in the result set - """ includePrivate: Boolean """ + """ includePrivate: Boolean, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubSponsorshipConnection! """ @@ -257123,13 +259207,13 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ sponsorshipsAsSponsor(""" Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer. - """ orderBy: GitHubSponsorshipOrder """ + """ orderBy: GitHubSponsorshipOrder, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubSponsorshipConnection! """ @@ -257137,15 +259221,15 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ starredRepositories(""" Order for connection - """ orderBy: GitHubStarOrder """ + """ orderBy: GitHubStarOrder, """ Filters starred repositories to only return repositories owned by the viewer. - """ ownedByViewer: Boolean """ + """ ownedByViewer: Boolean, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubStarredRepositoryConnection! """ @@ -257157,15 +259241,15 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ topRepositories(""" How far back in time to fetch contributed repositories - """ since: String """ + """ since: String, """ Ordering options for repositories returned from the connection - """ orderBy: GitHubRepositoryOrder! """ + """ orderBy: GitHubRepositoryOrder!, """ Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. """ after: String): GitHubRepositoryConnection! """ @@ -257197,21 +259281,21 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ watching(""" Returns the last _n_ elements from the list. - """ last: Int """ + """ last: Int, """ Returns the first _n_ elements from the list. - """ first: Int """ + """ first: Int, """ Returns the elements in the list that come before the specified cursor. - """ before: String """ + """ before: String, """ Returns the elements in the list that come after the specified cursor. - """ after: String """ + """ after: String, """ If non-null, filters repositories according to whether they have been locked - """ isLocked: Boolean """ + """ isLocked: Boolean, """ Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns. - """ ownerAffiliations: [GitHubRepositoryAffiliation] """ + """ ownerAffiliations: [GitHubRepositoryAffiliation], """ Affiliation options for repositories returned from the connection. If none specified, the results will include repositories for which the current viewer is an owner or collaborator, or member. - """ affiliations: [GitHubRepositoryAffiliation] """ + """ affiliations: [GitHubRepositoryAffiliation], """ Ordering options for repositories returned from the connection - """ orderBy: GitHubRepositoryOrder """ + """ orderBy: GitHubRepositoryOrder, """ If non-null, filters repositories according to privacy """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! """ @@ -257226,9 +259310,10 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ emailsIfIsViewer_oneGraph(""" Only include the GitHub has considers to be the primary email for this user - """ onlyPrimary: Boolean """ + """ onlyPrimary: Boolean, """ Only include emails that GitHub has verified belong to this user - """ onlyVerified: Boolean): [GitHubUserEmail_oneGraph!] @deprecated(reason: "*Temporary field until GitHub implemements their own `emailsIfIsViewer` field for a user.*") + """ onlyVerified: Boolean): [GitHubUserEmail_oneGraph!] + @deprecated(reason: "*Temporary field until GitHub implemements their own `emailsIfIsViewer` field for a user.*") """ Linked Salesforce User """ @@ -260662,7 +262747,8 @@ type OneGraphServicesMetadata { logdna: OneGraphServiceMetadata! mixpanel: OneGraphServiceMetadata! onegraph: OneGraphServiceMetadata! - facebook: OneGraphServiceMetadata! @deprecated(reason: "Use facebookBusiness.") + facebook: OneGraphServiceMetadata! + @deprecated(reason: "Use facebookBusiness.") } """ @@ -260922,32 +263008,51 @@ type Viewer { Metadata and logged-in state for all OneGraph services """ serviceMetadata: OneGraphServicesMetadata! - devTo: devTo @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - dribbble: DribbbleUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - dropbox: DropboxAccount @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - eggheadio: EggheadioUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - box: BoxUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - contentful: ContentfulUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - salesforce: SalesforceOAuthUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - zeit: ZeitUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - trello: TrelloMember @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - twitchTv: TwitchTvUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - slack: SlackUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - spotify: SpotifyCurrentUserProfile @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + devTo: devTo + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + dribbble: DribbbleUser + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + dropbox: DropboxAccount + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + eggheadio: EggheadioUser + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + box: BoxUser + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + contentful: ContentfulUser + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + salesforce: SalesforceOAuthUser + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + zeit: ZeitUser + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + trello: TrelloMember + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + twitchTv: TwitchTvUser + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + slack: SlackUser + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + spotify: SpotifyCurrentUserProfile + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") google: GoogleUser googleCalendar: GoogleUser googleCompute: GoogleUser googleDocs: GoogleUser googleTranslate: GoogleUser - github: GitHubUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + github: GitHubUser + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") gmail: GoogleUser - eventil: OneGraphMeEventilUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - hubspot: HubspotOAuthUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + eventil: OneGraphMeEventilUser + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + hubspot: HubspotOAuthUser + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") intercom: IntercomAdmin - netlify: NetlifyUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - twilio: TwilioUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - zendesk: ZendeskUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - twitter: TwitterUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + netlify: NetlifyUser + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + twilio: TwilioUser + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + zendesk: ZendeskUser + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + twitter: TwitterUser + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") youTube: GoogleUser } @@ -260958,7 +263063,7 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): Viewer! """ @@ -260970,9 +263075,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): AirtableQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): AirtableQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Box queries """ @@ -260982,9 +263088,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): BoxQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): BoxQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Bundlephobia queries """ @@ -260994,9 +263101,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): BundlephobiaQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): BundlephobiaQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Clearbit queries """ @@ -261006,9 +263114,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): Clearbit! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): Clearbit! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Cloudflare queries """ @@ -261018,9 +263127,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): CloudflareQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): CloudflareQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Contentful queries """ @@ -261030,9 +263140,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): ContentfulQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): ContentfulQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Dev.to queries """ @@ -261042,9 +263153,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): DevToQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): DevToQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Dribbble queries """ @@ -261054,9 +263166,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): DribbbleQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): DribbbleQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Dropbox queries """ @@ -261066,9 +263179,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): DropboxQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): DropboxQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Egghead.io queries """ @@ -261078,9 +263192,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): EggheadioQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): EggheadioQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Facebook queries """ @@ -261090,9 +263205,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): FacebookBusinessQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): FacebookBusinessQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Fedex queries """ @@ -261102,9 +263218,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): FedexQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): FedexQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Google queries """ @@ -261114,9 +263231,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): GoogleServices! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): GoogleServices! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Hubspot queries """ @@ -261126,9 +263244,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): HubspotQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): HubspotQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Intercom queries """ @@ -261138,7 +263257,7 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): IntercomQuery! """ @@ -261150,7 +263269,7 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): LogdnaQuery! """ @@ -261162,9 +263281,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): MailchimpQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): MailchimpQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Meetup queries """ @@ -261174,9 +263294,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): MeetupQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): MeetupQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Mixpanel queries """ @@ -261186,9 +263307,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): MixpanelQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): MixpanelQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Netlify queries """ @@ -261198,9 +263320,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): NetlifyQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): NetlifyQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Npm queries """ @@ -261210,9 +263333,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): NpmQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): NpmQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Salesforce queries """ @@ -261222,7 +263346,7 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): SalesforceQuery! """ @@ -261234,9 +263358,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): Slack! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): Slack! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Spotify queries """ @@ -261246,9 +263371,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): SpotifyQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): SpotifyQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Stripe queries """ @@ -261258,7 +263384,7 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): StripeQuery! """ @@ -261270,7 +263396,7 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): TrelloQuery! """ @@ -261282,9 +263408,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): TwilioQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): TwilioQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Twitch queries """ @@ -261294,9 +263421,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): TwitchTvQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): TwitchTvQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Twitter queries """ @@ -261306,9 +263434,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): Twitter! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): Twitter! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for UPS queries """ @@ -261318,9 +263447,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): UpsQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): UpsQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for USPS queries """ @@ -261330,9 +263460,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): USPSQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): USPSQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for YouTube queries """ @@ -261342,9 +263473,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): YouTubeQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): YouTubeQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Zeit queries """ @@ -261354,9 +263486,10 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): ZeitQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): ZeitQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Zendesk queries """ @@ -261366,7 +263499,7 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): ZendeskQuery! quickbooks(""" @@ -261375,7 +263508,7 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): QuickbooksQuery immigrationGraph(""" @@ -261384,7 +263517,7 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): ImmigrationGraphQuery crunchbase(""" @@ -261393,7 +263526,7 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): CrunchbaseQuery brex(""" @@ -261402,7 +263535,7 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): BrexRootQueryType gitHub(""" @@ -261411,7 +263544,7 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): GitHubQuery productHunt(""" @@ -261420,7 +263553,7 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): ProductHuntQuery eventil(""" @@ -261429,7 +263562,7 @@ type Query { Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query """ auths: OneGraphServiceAuths): EventilQuery oneGraph: OneGraphServiceQuery! @@ -261439,22 +263572,26 @@ type Query { oneGraphNode(""" The globally unique `oneGraphId`. """ oneGraphId: ID!): OneGraphNode - rss: RssQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - youTubeVideo(id: String!): YoutubeVideo @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") - youTubeSearch(cursor: String pageToken: String maxResults: Int! order: String """ + rss: RssQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + youTubeVideo(id: String!): YoutubeVideo + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + youTubeSearch(cursor: String, pageToken: String, maxResults: Int!, order: String, """ The q parameter specifies the query term to search for. Your request can also use the Boolean NOT (-) and OR (|) operators to exclude videos or to find videos that are associated with one of several search terms. For example, to search for videos matching either "boating" or "sailing", set the q parameter value to boating|sailing. Similarly, to search for videos matching either "boating" or "sailing" but not "fishing", set the q parameter value to boating|sailing -fishing - """ q: String!): YoutubeVideoSearchResult @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ q: String!): YoutubeVideoSearchResult + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") descuri(url: String!): Descuri emailNode(""" Email address used to look up nodes. - """ email: String! """ + """ email: String!, """ Instruct OneGraph to use the auth associated with a particular user. Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error. The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`. - """ userIds: OneGraphServiceUserIds """ + """ userIds: OneGraphServiceUserIds, """ Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): OneGraphEmailNode! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + """ auths: OneGraphServiceAuths): OneGraphEmailNode! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") } diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaParserTests.ParserSimpleInterfaceType.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaParserTests.ParserSimpleInterfaceType.snap index 501fc93ed9a..db11e12bf05 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaParserTests.ParserSimpleInterfaceType.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaParserTests.ParserSimpleInterfaceType.snap @@ -1,4 +1,4 @@ -interface a implements e @foo(a: "123") { +interface a implements e @foo(a: "123") { b: String @foo(a: "123") c(d: F = ENUMVALUE @foo(a: "123")): Int } diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaParserTests.ParserSimpleObjectType.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaParserTests.ParserSimpleObjectType.snap index bce4c9eb601..524e9edbdd1 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaParserTests.ParserSimpleObjectType.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaParserTests.ParserSimpleObjectType.snap @@ -1,4 +1,4 @@ -type a @foo(a: "123") { +type a @foo(a: "123") { b: String @foo(a: "123") c(d: F = ENUMVALUE @foo(a: "123")): Int } diff --git a/src/HotChocolate/Language/test/Language.Tests/Utilities/__snapshots__/SyntaxPrinterTests.Serialize_KitchenSinkWithIndentation_OutputIsFormatted.snap b/src/HotChocolate/Language/test/Language.Tests/Utilities/__snapshots__/SyntaxPrinterTests.Serialize_KitchenSinkWithIndentation_OutputIsFormatted.snap index 55493f349be..e22c2c72103 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Utilities/__snapshots__/SyntaxPrinterTests.Serialize_KitchenSinkWithIndentation_OutputIsFormatted.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Utilities/__snapshots__/SyntaxPrinterTests.Serialize_KitchenSinkWithIndentation_OutputIsFormatted.snap @@ -1,10 +1,5 @@ "Query description" -query queryName( - "$foo description" - $foo: ComplexType - "$site description" - $site: Site = MOBILE -) { +query queryName($foo: ComplexType, $site: Site = MOBILE) { whoever123is: node(id: [123, 456]) { id ... on User @defer { @@ -35,10 +30,7 @@ mutation likeStory { } "Subscription description" -subscription StoryLikeSubscription( - "$input description" - $input: StoryLikeSubscribeInput -) { +subscription StoryLikeSubscription($input: StoryLikeSubscribeInput) { storyLikeSubscribe(input: $input) { story { likers { diff --git a/src/HotChocolate/Language/test/Language.Tests/Visitors/__snapshots__/SyntaxRewriterTests.Rename_Field.snap b/src/HotChocolate/Language/test/Language.Tests/Visitors/__snapshots__/SyntaxRewriterTests.Rename_Field.snap index 03155cea738..ae317e3c563 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Visitors/__snapshots__/SyntaxRewriterTests.Rename_Field.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Visitors/__snapshots__/SyntaxRewriterTests.Rename_Field.snap @@ -15,7 +15,7 @@ type Foo implements Bar & Baz { two_abc(""" This is a description of the `argument` argument. """ argument: InputType!): Type - three_abc(argument: InputType other: String): Int + three_abc(argument: InputType, other: String): Int four_abc(argument: String = "string"): String five_abc(argument: [String] = [ "string", diff --git a/src/HotChocolate/MongoDb/test/Data.MongoDb.Filters.Tests/__snapshots__/MongoDbFilterVisitorComparableTests.Create_Implicit_Operation.graphql b/src/HotChocolate/MongoDb/test/Data.MongoDb.Filters.Tests/__snapshots__/MongoDbFilterVisitorComparableTests.Create_Implicit_Operation.graphql index 30deda0da84..0f9b68aef64 100644 --- a/src/HotChocolate/MongoDb/test/Data.MongoDb.Filters.Tests/__snapshots__/MongoDbFilterVisitorComparableTests.Create_Implicit_Operation.graphql +++ b/src/HotChocolate/MongoDb/test/Data.MongoDb.Filters.Tests/__snapshots__/MongoDbFilterVisitorComparableTests.Create_Implicit_Operation.graphql @@ -140,19 +140,27 @@ input FooFilterInput { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `DateTime` scalar type represents a date and time with time zone offset information." -scalar DateTime @specifiedBy(url: "https://scalars.graphql.org/chillicream/date-time.html") +scalar DateTime + @specifiedBy(url: "https://scalars.graphql.org/chillicream/date-time.html") "The `Decimal` scalar type represents a decimal floating-point number with high precision." -scalar Decimal @specifiedBy(url: "https://scalars.graphql.org/chillicream/decimal.html") +scalar Decimal + @specifiedBy(url: "https://scalars.graphql.org/chillicream/decimal.html") "The `Long` scalar type represents a signed 64-bit integer." -scalar Long @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") +scalar Long + @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") "The `Short` scalar type represents a signed 16-bit integer." -scalar Short @specifiedBy(url: "https://scalars.graphql.org/chillicream/short.html") +scalar Short + @specifiedBy(url: "https://scalars.graphql.org/chillicream/short.html") "The `UUID` scalar type represents a Universally Unique Identifier (UUID) as defined by RFC 9562." -scalar UUID @specifiedBy(url: "https://scalars.graphql.org/chillicream/uuid.html") +scalar UUID + @specifiedBy(url: "https://scalars.graphql.org/chillicream/uuid.html") diff --git a/src/HotChocolate/MongoDb/test/Data.MongoDb.Filters.Tests/__snapshots__/MongoDbFilterVisitorComparableTests.Create_Implicit_Operation_Normalized.graphql b/src/HotChocolate/MongoDb/test/Data.MongoDb.Filters.Tests/__snapshots__/MongoDbFilterVisitorComparableTests.Create_Implicit_Operation_Normalized.graphql index 0ca3435bf5d..d0d96788d0f 100644 --- a/src/HotChocolate/MongoDb/test/Data.MongoDb.Filters.Tests/__snapshots__/MongoDbFilterVisitorComparableTests.Create_Implicit_Operation_Normalized.graphql +++ b/src/HotChocolate/MongoDb/test/Data.MongoDb.Filters.Tests/__snapshots__/MongoDbFilterVisitorComparableTests.Create_Implicit_Operation_Normalized.graphql @@ -125,19 +125,27 @@ input UuidOperationFilterInput { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The `DateTime` scalar type represents a date and time with time zone offset information." -scalar DateTime @specifiedBy(url: "https://scalars.graphql.org/chillicream/date-time.html") +scalar DateTime + @specifiedBy(url: "https://scalars.graphql.org/chillicream/date-time.html") "The `Decimal` scalar type represents a decimal floating-point number with high precision." -scalar Decimal @specifiedBy(url: "https://scalars.graphql.org/chillicream/decimal.html") +scalar Decimal + @specifiedBy(url: "https://scalars.graphql.org/chillicream/decimal.html") "The `Long` scalar type represents a signed 64-bit integer." -scalar Long @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") +scalar Long + @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") "The `Short` scalar type represents a signed 16-bit integer." -scalar Short @specifiedBy(url: "https://scalars.graphql.org/chillicream/short.html") +scalar Short + @specifiedBy(url: "https://scalars.graphql.org/chillicream/short.html") "The `UUID` scalar type represents a Universally Unique Identifier (UUID) as defined by RFC 9562." -scalar UUID @specifiedBy(url: "https://scalars.graphql.org/chillicream/uuid.html") +scalar UUID + @specifiedBy(url: "https://scalars.graphql.org/chillicream/uuid.html") diff --git a/src/HotChocolate/MongoDb/test/Types.MongoDb/__snapshots__/BsonTypeTests.Output_Should_BindAllRuntimeTypes.graphql b/src/HotChocolate/MongoDb/test/Types.MongoDb/__snapshots__/BsonTypeTests.Output_Should_BindAllRuntimeTypes.graphql index ca437871246..b5a06014a8a 100644 --- a/src/HotChocolate/MongoDb/test/Types.MongoDb/__snapshots__/BsonTypeTests.Output_Should_BindAllRuntimeTypes.graphql +++ b/src/HotChocolate/MongoDb/test/Types.MongoDb/__snapshots__/BsonTypeTests.Output_Should_BindAllRuntimeTypes.graphql @@ -19,7 +19,10 @@ type OutputQuery { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "BSON is a binary format in which zero or more ordered key/value pairs are stored as a single entity. The results are returned as JSON objects" scalar Bson @specifiedBy(url: "https://bsonspec.org/spec.html") diff --git a/src/HotChocolate/MongoDb/test/Types.MongoDb/__snapshots__/ObjectIdTypeTests.Should_MapObjectIdToScalar.snap b/src/HotChocolate/MongoDb/test/Types.MongoDb/__snapshots__/ObjectIdTypeTests.Should_MapObjectIdToScalar.snap index f4fd19c0744..6317522a31e 100644 --- a/src/HotChocolate/MongoDb/test/Types.MongoDb/__snapshots__/ObjectIdTypeTests.Should_MapObjectIdToScalar.snap +++ b/src/HotChocolate/MongoDb/test/Types.MongoDb/__snapshots__/ObjectIdTypeTests.Should_MapObjectIdToScalar.snap @@ -12,7 +12,11 @@ type Query { } "The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR +directive @specifiedBy( + "The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." + url: String! +) on SCALAR "The ObjectId scalar type represents a 12 byte ObjectId, represented as UTF-8 character sequences." -scalar ObjectId @specifiedBy(url: "https://docs.mongodb.com/manual/reference/bson-types/#objectid") +scalar ObjectId + @specifiedBy(url: "https://docs.mongodb.com/manual/reference/bson-types/#objectid") diff --git a/src/HotChocolate/Mutable/src/Types.Mutable/Serialization/SchemaFormatter.cs b/src/HotChocolate/Mutable/src/Types.Mutable/Serialization/SchemaFormatter.cs index 267847b25bb..9ceb8c984ac 100644 --- a/src/HotChocolate/Mutable/src/Types.Mutable/Serialization/SchemaFormatter.cs +++ b/src/HotChocolate/Mutable/src/Types.Mutable/Serialization/SchemaFormatter.cs @@ -10,7 +10,7 @@ public static class SchemaFormatter new() { Indented = true, - MaxDirectivesPerLine = 0 + PrintWidth = 80 }; public static string FormatAsString(MutableSchemaDefinition schema, SchemaFormatterOptions options = default) diff --git a/src/HotChocolate/Mutable/test/Types.Mutable.Tests/SchemaFormatterTests.cs b/src/HotChocolate/Mutable/test/Types.Mutable.Tests/SchemaFormatterTests.cs index a65010dea0f..9dac1b65bf4 100644 --- a/src/HotChocolate/Mutable/test/Types.Mutable.Tests/SchemaFormatterTests.cs +++ b/src/HotChocolate/Mutable/test/Types.Mutable.Tests/SchemaFormatterTests.cs @@ -253,7 +253,7 @@ input Foo { a: Boolean } - directive @foo(a: String! b: [Foo] c: [Int!]) on FIELD_DEFINITION + directive @foo(a: String!, b: [Foo], c: [Int!]) on FIELD_DEFINITION """); } @@ -282,14 +282,14 @@ input Bar { // assert formattedSdl.MatchInlineSnapshot( """ - directive @foo(b: [Foo] c: [Int!] a: String!) on FIELD_DEFINITION + directive @foo(b: [Foo], c: [Int!], a: String!) on FIELD_DEFINITION input Foo { - a: Boolean + a: Boolean } input Bar { - a: Boolean + a: Boolean } """); } diff --git a/src/HotChocolate/Raven/test/Data.Raven.Filters.Tests/__snapshots__/ConventionTests.ListType_Should_NotContainAllOperation.snap b/src/HotChocolate/Raven/test/Data.Raven.Filters.Tests/__snapshots__/ConventionTests.ListType_Should_NotContainAllOperation.snap index e3ececcda2a..0d765ae9af5 100644 --- a/src/HotChocolate/Raven/test/Data.Raven.Filters.Tests/__snapshots__/ConventionTests.ListType_Should_NotContainAllOperation.snap +++ b/src/HotChocolate/Raven/test/Data.Raven.Filters.Tests/__snapshots__/ConventionTests.ListType_Should_NotContainAllOperation.snap @@ -8,8 +8,10 @@ type ListItem { } type Query { - root(where: TypeWithListFilterInput @cost(weight: "10")): [TypeWithList] @cost(weight: "10") - rootExecutable(where: TypeWithListFilterInput @cost(weight: "10")): [TypeWithList] @cost(weight: "10") + root(where: TypeWithListFilterInput @cost(weight: "10")): [TypeWithList] + @cost(weight: "10") + rootExecutable(where: TypeWithListFilterInput @cost(weight: "10")): [TypeWithList] + @cost(weight: "10") } type TypeWithList { @@ -53,4 +55,7 @@ input TypeWithListFilterInput { } "The purpose of the `cost` directive is to define a `weight` for GraphQL types, fields, and arguments. Static analysis can use these weights when calculating the overall cost of a query or response." -directive @cost("The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." weight: String!) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @cost( + "The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." + weight: String! +) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION diff --git a/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionClientTests.IntrospectServer.snap b/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionClientTests.IntrospectServer.snap index 2ea10353ac2..d6181ce2f9a 100644 --- a/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionClientTests.IntrospectServer.snap +++ b/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionClientTests.IntrospectServer.snap @@ -15,24 +15,35 @@ type Query { time: Long! evict: Boolean! wait(m: Int!): Boolean! - someDeprecatedField(deprecatedArg: String! = "foo" @deprecated(reason: "use something else")): String! @deprecated(reason: "use something else") + someDeprecatedField( + deprecatedArg: String! = "foo" @deprecated(reason: "use something else") + ): String! @deprecated(reason: "use something else") } type Mutation { - createReview(episode: Episode! review: ReviewInput!): Review! + createReview(episode: Episode!, review: ReviewInput!): Review! complete(episode: Episode!): Boolean! } type Subscription { onReview(episode: Episode!): Review! - delay(delay: Int! count: Int!): String! + delay(delay: Int!, count: Int!): String! } type Human implements Character { id: ID! name: String! appearsIn: [Episode] - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection otherHuman: Human height(unit: Unit): Float homePlanet: String @@ -43,7 +54,16 @@ type Droid implements Character { id: ID! name: String! appearsIn: [Episode] - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection height(unit: Unit): Float primaryFunction: String traits: Any @@ -58,7 +78,16 @@ enum Episode { interface Character { id: ID! name: String! - friends("Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String): FriendsConnection + friends( + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the last _n_ elements from the list." + last: Int + "Returns the elements in the list that come before the specified cursor." + before: String + ): FriendsConnection appearsIn: [Episode] traits: Any height(unit: Unit): Float @@ -124,9 +153,23 @@ type FriendsEdge { scalar Long "The purpose of the `cost` directive is to define a `weight` for GraphQL types, fields, and arguments. Static analysis can use these weights when calculating the overall cost of a query or response." -directive @cost("The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." weight: String!) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @cost( + "The `weight` argument defines what value to add to the overall cost for every appearance, or possible appearance, of a type, field, argument, etc." + weight: String! +) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION "The purpose of the `@listSize` directive is to either inform the static analysis about the size of returned lists (if that information is statically available), or to point the analysis to where to find that information." -directive @listSize("The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." assumedSize: Int "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." slicingArguments: [String!] "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." slicingArgumentDefaultValue: Int "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." sizedFields: [String!] "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." requireOneSlicingArgument: Boolean = true) on FIELD_DEFINITION +directive @listSize( + "The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." + assumedSize: Int + "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." + slicingArguments: [String!] + "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." + slicingArgumentDefaultValue: Int + "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." + sizedFields: [String!] + "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." + requireOneSlicingArgument: Boolean = true +) on FIELD_DEFINITION directive @foo(bar: Int!) on SUBSCRIPTION diff --git a/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionFormatterTests.DeserializeIntrospectionWithIntDefaultValues.snap b/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionFormatterTests.DeserializeIntrospectionWithIntDefaultValues.snap index 58a48836fce..001d786d1ec 100644 --- a/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionFormatterTests.DeserializeIntrospectionWithIntDefaultValues.snap +++ b/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionFormatterTests.DeserializeIntrospectionWithIntDefaultValues.snap @@ -1,4 +1,4 @@ -schema { +schema { query: Query } @@ -32,7 +32,7 @@ type __Field { } type Query { - Questions(skip: Int = 0 first: Int = 10): [Question] + Questions(skip: Int = 0, first: Int = 10): [Question] } "A GraphQL Introspection defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, the entry points for query, mutation, and subscription operations." diff --git a/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionFormatterTests.DeserializeIntrospectionWithNullDeprecationReason.snap b/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionFormatterTests.DeserializeIntrospectionWithNullDeprecationReason.snap index 09306315903..6bb60524907 100644 --- a/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionFormatterTests.DeserializeIntrospectionWithNullDeprecationReason.snap +++ b/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionFormatterTests.DeserializeIntrospectionWithNullDeprecationReason.snap @@ -32,7 +32,7 @@ type __Field { } type Query { - Questions(skip: Int = 0 first: Int = 10): [Question] + Questions(skip: Int = 0, first: Int = 10): [Question] } "A GraphQL Introspection defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, the entry points for query, mutation, and subscription operations." diff --git a/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionFormatterTests.DeserializeStarWarsIntrospectionResult.snap b/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionFormatterTests.DeserializeStarWarsIntrospectionResult.snap index ebdaf0ee7e6..3ac459121af 100644 --- a/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionFormatterTests.DeserializeStarWarsIntrospectionResult.snap +++ b/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionFormatterTests.DeserializeStarWarsIntrospectionResult.snap @@ -167,7 +167,7 @@ type Query { } type Mutation { - createReview(episode: Episode! review: ReviewInput!): Review! + createReview(episode: Episode!, review: ReviewInput!): Review! } type Subscription { diff --git a/src/Nitro/CommandLine/src/CommandLine.FusionCompatibility/FusionGraphPackage.cs b/src/Nitro/CommandLine/src/CommandLine.FusionCompatibility/FusionGraphPackage.cs index 5f5aac2c441..b37c2f37f33 100644 --- a/src/Nitro/CommandLine/src/CommandLine.FusionCompatibility/FusionGraphPackage.cs +++ b/src/Nitro/CommandLine/src/CommandLine.FusionCompatibility/FusionGraphPackage.cs @@ -27,7 +27,7 @@ public sealed class FusionGraphPackage : IDisposable, IAsyncDisposable new() { Indented = true, - MaxDirectivesPerLine = 0 + PrintWidth = 80 }; private readonly Package _package; diff --git a/src/Nitro/CommandLine/test/CommandLine.Tests/Commands/Fusion/FusionPublishCommandTests.cs b/src/Nitro/CommandLine/test/CommandLine.Tests/Commands/Fusion/FusionPublishCommandTests.cs index a23a380dfd1..6ef6a64d090 100644 --- a/src/Nitro/CommandLine/test/CommandLine.Tests/Commands/Fusion/FusionPublishCommandTests.cs +++ b/src/Nitro/CommandLine/test/CommandLine.Tests/Commands/Fusion/FusionPublishCommandTests.cs @@ -3455,36 +3455,26 @@ private void AssertComposedFusionSchema(string schema) query: Query } - type Query - @fusion__type(schema: PRODUCTS) - @fusion__type(schema: REVIEWS) { + type Query @fusion__type(schema: PRODUCTS) @fusion__type(schema: REVIEWS) { cachedField: String @cacheControl(maxAge: 60, scope: PUBLIC) @fusion__field(schema: REVIEWS) - field: String! - @fusion__field(schema: PRODUCTS) - tag1Field: String - @fusion__field(schema: REVIEWS) - tag2Field: String - @fusion__field(schema: REVIEWS) + field: String! @fusion__field(schema: PRODUCTS) + tag1Field: String @fusion__field(schema: REVIEWS) + tag2Field: String @fusion__field(schema: REVIEWS) } - enum CacheControlScope - @fusion__type(schema: REVIEWS) { + enum CacheControlScope @fusion__type(schema: REVIEWS) { "The value to cache is specific to a single user." - PRIVATE - @fusion__enumValue(schema: REVIEWS) + PRIVATE @fusion__enumValue(schema: REVIEWS) "The value to cache is not tied to a single user." - PUBLIC - @fusion__enumValue(schema: REVIEWS) + PUBLIC @fusion__enumValue(schema: REVIEWS) } "The fusion__Schema enum is a generated type used within an execution schema document to refer to a source schema in a type-safe manner." enum fusion__Schema { - PRODUCTS - @fusion__schema_metadata(name: "products") - REVIEWS - @fusion__schema_metadata(name: "reviews") + PRODUCTS @fusion__schema_metadata(name: "products") + REVIEWS @fusion__schema_metadata(name: "reviews") } "The fusion__FieldDefinition scalar is used to represent a GraphQL field definition specified in the GraphQL spec." @@ -3499,43 +3489,122 @@ scalar fusion__FieldSelectionPath "The fusion__FieldSelectionSet scalar is used to represent a GraphQL selection set. To simplify the syntax, the outermost selection set is not wrapped in curly braces." scalar fusion__FieldSelectionSet - directive @cacheControl(inheritMaxAge: Boolean maxAge: Int scope: CacheControlScope sharedMaxAge: Int vary: [String]) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION + directive @cacheControl( + inheritMaxAge: Boolean + maxAge: Int + scope: CacheControlScope + sharedMaxAge: Int + vary: [String] + ) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION "The @fusion__cost directive specifies cost metadata for each source schema." - directive @fusion__cost("The name of the source schema that defined the cost metadata." schema: fusion__Schema! "The weight defined in the source schema." weight: String!) repeatable on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION + directive @fusion__cost( + "The name of the source schema that defined the cost metadata." + schema: fusion__Schema! + "The weight defined in the source schema." + weight: String! + ) repeatable on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION "The @fusion__enumValue directive specifies which source schema provides an enum value." - directive @fusion__enumValue("The name of the source schema that provides the specified enum value." schema: fusion__Schema!) repeatable on ENUM_VALUE + directive @fusion__enumValue( + "The name of the source schema that provides the specified enum value." + schema: fusion__Schema! + ) repeatable on ENUM_VALUE "The @fusion__field directive specifies which source schema provides a field in a composite type and what execution behavior it has." - directive @fusion__field("Indicates that this field is only partially provided and must be combined with `provides`." partial: Boolean! = false "A selection set of fields this field provides in the composite schema." provides: fusion__FieldSelectionSet "The name of the source schema that originally provided this field." schema: fusion__Schema! "The field type in the source schema if it differs in nullability or structure." sourceType: String) repeatable on FIELD_DEFINITION + directive @fusion__field( + "Indicates that this field is only partially provided and must be combined with `provides`." + partial: Boolean! = false + "A selection set of fields this field provides in the composite schema." + provides: fusion__FieldSelectionSet + "The name of the source schema that originally provided this field." + schema: fusion__Schema! + "The field type in the source schema if it differs in nullability or structure." + sourceType: String + ) repeatable on FIELD_DEFINITION "The @fusion__implements directive specifies on which source schema an interface is implemented by an object or interface type." - directive @fusion__implements("The name of the interface type." interface: String! "The name of the source schema on which the annotated type implements the specified interface." schema: fusion__Schema!) repeatable on OBJECT | INTERFACE + directive @fusion__implements( + "The name of the interface type." + interface: String! + "The name of the source schema on which the annotated type implements the specified interface." + schema: fusion__Schema! + ) repeatable on OBJECT | INTERFACE "The @fusion__inaccessible directive is used to prevent specific type system members from being accessible through the client-facing composite schema, even if they are accessible in the underlying source schemas." directive @fusion__inaccessible on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION "The @fusion__inputField directive specifies which source schema provides an input field in a composite input type." - directive @fusion__inputField("The name of the source schema that originally provided this input field." schema: fusion__Schema! "The field type in the source schema if it differs in nullability or structure." sourceType: String) repeatable on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION + directive @fusion__inputField( + "The name of the source schema that originally provided this input field." + schema: fusion__Schema! + "The field type in the source schema if it differs in nullability or structure." + sourceType: String + ) repeatable on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION "The @fusion__listSize directive specifies list size metadata for each source schema." - directive @fusion__listSize("The assumed size of the list as defined in the source schema." assumedSize: Int "The single slicing argument requirement of the list as defined in the source schema." requireOneSlicingArgument: Boolean "The name of the source schema that defined the list size metadata." schema: fusion__Schema! "The sized fields of the list as defined in the source schema." sizedFields: [String!] "The slicing argument default value of the list as defined in the source schema." slicingArgumentDefaultValue: Int "The slicing arguments of the list as defined in the source schema." slicingArguments: [String!]) repeatable on FIELD_DEFINITION + directive @fusion__listSize( + "The assumed size of the list as defined in the source schema." + assumedSize: Int + "The single slicing argument requirement of the list as defined in the source schema." + requireOneSlicingArgument: Boolean + "The name of the source schema that defined the list size metadata." + schema: fusion__Schema! + "The sized fields of the list as defined in the source schema." + sizedFields: [String!] + "The slicing argument default value of the list as defined in the source schema." + slicingArgumentDefaultValue: Int + "The slicing arguments of the list as defined in the source schema." + slicingArguments: [String!] + ) repeatable on FIELD_DEFINITION "The @fusion__lookup directive specifies how the distributed executor can resolve data for an entity type from a source schema by a stable key." - directive @fusion__lookup("The GraphQL field definition in the source schema that can be used to look up the entity." field: fusion__FieldDefinition! "Is the lookup meant as an entry point or just to provide more data." internal: Boolean! = false "A selection set on the annotated entity type that describes the stable key for the lookup." key: fusion__FieldSelectionSet! "The map describes how the key values are resolved from the annotated entity type." map: [fusion__FieldSelectionMap!]! "The path to the lookup field relative to the Query type." path: fusion__FieldSelectionPath "The name of the source schema where the annotated entity type can be looked up from." schema: fusion__Schema!) repeatable on OBJECT | INTERFACE | UNION + directive @fusion__lookup( + "The GraphQL field definition in the source schema that can be used to look up the entity." + field: fusion__FieldDefinition! + "Is the lookup meant as an entry point or just to provide more data." + internal: Boolean! = false + "A selection set on the annotated entity type that describes the stable key for the lookup." + key: fusion__FieldSelectionSet! + "The map describes how the key values are resolved from the annotated entity type." + map: [fusion__FieldSelectionMap!]! + "The path to the lookup field relative to the Query type." + path: fusion__FieldSelectionPath + "The name of the source schema where the annotated entity type can be looked up from." + schema: fusion__Schema! + ) repeatable on OBJECT | INTERFACE | UNION "The @fusion__requires directive specifies if a field has requirements on a source schema." - directive @fusion__requires("The GraphQL field definition in the source schema that this field depends on." field: fusion__FieldDefinition! "The map describes how the argument values for the source schema are resolved from the arguments of the field exposed in the client-facing composite schema and from required data relative to the current type." map: [fusion__FieldSelectionMap]! "A selection set on the annotated field that describes its requirements." requirements: fusion__FieldSelectionSet! "The name of the source schema where this field has requirements to data on other source schemas." schema: fusion__Schema!) repeatable on FIELD_DEFINITION + directive @fusion__requires( + "The GraphQL field definition in the source schema that this field depends on." + field: fusion__FieldDefinition! + "The map describes how the argument values for the source schema are resolved from the arguments of the field exposed in the client-facing composite schema and from required data relative to the current type." + map: [fusion__FieldSelectionMap]! + "A selection set on the annotated field that describes its requirements." + requirements: fusion__FieldSelectionSet! + "The name of the source schema where this field has requirements to data on other source schemas." + schema: fusion__Schema! + ) repeatable on FIELD_DEFINITION "The @fusion__schema_metadata directive is used to provide additional metadata for a source schema." - directive @fusion__schema_metadata("The name of the source schema." name: String!) on ENUM_VALUE + directive @fusion__schema_metadata( + "The name of the source schema." + name: String! + ) on ENUM_VALUE "The @fusion__type directive specifies which source schemas provide parts of a composite type." - directive @fusion__type("The name of the source schema that originally provided part of the annotated type." schema: fusion__Schema!) repeatable on SCALAR | OBJECT | INTERFACE | UNION | ENUM | INPUT_OBJECT + directive @fusion__type( + "The name of the source schema that originally provided part of the annotated type." + schema: fusion__Schema! + ) repeatable on SCALAR | OBJECT | INTERFACE | UNION | ENUM | INPUT_OBJECT "The @fusion__unionMember directive specifies which source schema provides a member type of a union." - directive @fusion__unionMember("The name of the member type." member: String! "The name of the source schema that provides the specified member type." schema: fusion__Schema!) repeatable on UNION + directive @fusion__unionMember( + "The name of the member type." + member: String! + "The name of the source schema that provides the specified member type." + schema: fusion__Schema! + ) repeatable on UNION """); } diff --git a/src/Nitro/CommandLine/test/CommandLine.Tests/Commands/Fusion/FusionValidateCommandTests.cs b/src/Nitro/CommandLine/test/CommandLine.Tests/Commands/Fusion/FusionValidateCommandTests.cs index e3f0a2934d7..617ad136169 100644 --- a/src/Nitro/CommandLine/test/CommandLine.Tests/Commands/Fusion/FusionValidateCommandTests.cs +++ b/src/Nitro/CommandLine/test/CommandLine.Tests/Commands/Fusion/FusionValidateCommandTests.cs @@ -773,36 +773,26 @@ private static void AssertSchemaUploadAfterCompose(MemoryStream stream) query: Query } - type Query - @fusion__type(schema: PRODUCTS) - @fusion__type(schema: REVIEWS) { + type Query @fusion__type(schema: PRODUCTS) @fusion__type(schema: REVIEWS) { cachedField: String @cacheControl(maxAge: 60, scope: PUBLIC) @fusion__field(schema: REVIEWS) - field: String! - @fusion__field(schema: PRODUCTS) - tag1Field: String - @fusion__field(schema: REVIEWS) - tag2Field: String - @fusion__field(schema: REVIEWS) + field: String! @fusion__field(schema: PRODUCTS) + tag1Field: String @fusion__field(schema: REVIEWS) + tag2Field: String @fusion__field(schema: REVIEWS) } - enum CacheControlScope - @fusion__type(schema: REVIEWS) { + enum CacheControlScope @fusion__type(schema: REVIEWS) { "The value to cache is specific to a single user." - PRIVATE - @fusion__enumValue(schema: REVIEWS) + PRIVATE @fusion__enumValue(schema: REVIEWS) "The value to cache is not tied to a single user." - PUBLIC - @fusion__enumValue(schema: REVIEWS) + PUBLIC @fusion__enumValue(schema: REVIEWS) } "The fusion__Schema enum is a generated type used within an execution schema document to refer to a source schema in a type-safe manner." enum fusion__Schema { - PRODUCTS - @fusion__schema_metadata(name: "products") - REVIEWS - @fusion__schema_metadata(name: "reviews") + PRODUCTS @fusion__schema_metadata(name: "products") + REVIEWS @fusion__schema_metadata(name: "reviews") } "The fusion__FieldDefinition scalar is used to represent a GraphQL field definition specified in the GraphQL spec." @@ -817,43 +807,122 @@ scalar fusion__FieldSelectionPath "The fusion__FieldSelectionSet scalar is used to represent a GraphQL selection set. To simplify the syntax, the outermost selection set is not wrapped in curly braces." scalar fusion__FieldSelectionSet - directive @cacheControl(inheritMaxAge: Boolean maxAge: Int scope: CacheControlScope sharedMaxAge: Int vary: [String]) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION + directive @cacheControl( + inheritMaxAge: Boolean + maxAge: Int + scope: CacheControlScope + sharedMaxAge: Int + vary: [String] + ) on OBJECT | FIELD_DEFINITION | INTERFACE | UNION "The @fusion__cost directive specifies cost metadata for each source schema." - directive @fusion__cost("The name of the source schema that defined the cost metadata." schema: fusion__Schema! "The weight defined in the source schema." weight: String!) repeatable on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION + directive @fusion__cost( + "The name of the source schema that defined the cost metadata." + schema: fusion__Schema! + "The weight defined in the source schema." + weight: String! + ) repeatable on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION "The @fusion__enumValue directive specifies which source schema provides an enum value." - directive @fusion__enumValue("The name of the source schema that provides the specified enum value." schema: fusion__Schema!) repeatable on ENUM_VALUE + directive @fusion__enumValue( + "The name of the source schema that provides the specified enum value." + schema: fusion__Schema! + ) repeatable on ENUM_VALUE "The @fusion__field directive specifies which source schema provides a field in a composite type and what execution behavior it has." - directive @fusion__field("Indicates that this field is only partially provided and must be combined with `provides`." partial: Boolean! = false "A selection set of fields this field provides in the composite schema." provides: fusion__FieldSelectionSet "The name of the source schema that originally provided this field." schema: fusion__Schema! "The field type in the source schema if it differs in nullability or structure." sourceType: String) repeatable on FIELD_DEFINITION + directive @fusion__field( + "Indicates that this field is only partially provided and must be combined with `provides`." + partial: Boolean! = false + "A selection set of fields this field provides in the composite schema." + provides: fusion__FieldSelectionSet + "The name of the source schema that originally provided this field." + schema: fusion__Schema! + "The field type in the source schema if it differs in nullability or structure." + sourceType: String + ) repeatable on FIELD_DEFINITION "The @fusion__implements directive specifies on which source schema an interface is implemented by an object or interface type." - directive @fusion__implements("The name of the interface type." interface: String! "The name of the source schema on which the annotated type implements the specified interface." schema: fusion__Schema!) repeatable on OBJECT | INTERFACE + directive @fusion__implements( + "The name of the interface type." + interface: String! + "The name of the source schema on which the annotated type implements the specified interface." + schema: fusion__Schema! + ) repeatable on OBJECT | INTERFACE "The @fusion__inaccessible directive is used to prevent specific type system members from being accessible through the client-facing composite schema, even if they are accessible in the underlying source schemas." directive @fusion__inaccessible on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION "The @fusion__inputField directive specifies which source schema provides an input field in a composite input type." - directive @fusion__inputField("The name of the source schema that originally provided this input field." schema: fusion__Schema! "The field type in the source schema if it differs in nullability or structure." sourceType: String) repeatable on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION + directive @fusion__inputField( + "The name of the source schema that originally provided this input field." + schema: fusion__Schema! + "The field type in the source schema if it differs in nullability or structure." + sourceType: String + ) repeatable on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION "The @fusion__listSize directive specifies list size metadata for each source schema." - directive @fusion__listSize("The assumed size of the list as defined in the source schema." assumedSize: Int "The single slicing argument requirement of the list as defined in the source schema." requireOneSlicingArgument: Boolean "The name of the source schema that defined the list size metadata." schema: fusion__Schema! "The sized fields of the list as defined in the source schema." sizedFields: [String!] "The slicing argument default value of the list as defined in the source schema." slicingArgumentDefaultValue: Int "The slicing arguments of the list as defined in the source schema." slicingArguments: [String!]) repeatable on FIELD_DEFINITION + directive @fusion__listSize( + "The assumed size of the list as defined in the source schema." + assumedSize: Int + "The single slicing argument requirement of the list as defined in the source schema." + requireOneSlicingArgument: Boolean + "The name of the source schema that defined the list size metadata." + schema: fusion__Schema! + "The sized fields of the list as defined in the source schema." + sizedFields: [String!] + "The slicing argument default value of the list as defined in the source schema." + slicingArgumentDefaultValue: Int + "The slicing arguments of the list as defined in the source schema." + slicingArguments: [String!] + ) repeatable on FIELD_DEFINITION "The @fusion__lookup directive specifies how the distributed executor can resolve data for an entity type from a source schema by a stable key." - directive @fusion__lookup("The GraphQL field definition in the source schema that can be used to look up the entity." field: fusion__FieldDefinition! "Is the lookup meant as an entry point or just to provide more data." internal: Boolean! = false "A selection set on the annotated entity type that describes the stable key for the lookup." key: fusion__FieldSelectionSet! "The map describes how the key values are resolved from the annotated entity type." map: [fusion__FieldSelectionMap!]! "The path to the lookup field relative to the Query type." path: fusion__FieldSelectionPath "The name of the source schema where the annotated entity type can be looked up from." schema: fusion__Schema!) repeatable on OBJECT | INTERFACE | UNION + directive @fusion__lookup( + "The GraphQL field definition in the source schema that can be used to look up the entity." + field: fusion__FieldDefinition! + "Is the lookup meant as an entry point or just to provide more data." + internal: Boolean! = false + "A selection set on the annotated entity type that describes the stable key for the lookup." + key: fusion__FieldSelectionSet! + "The map describes how the key values are resolved from the annotated entity type." + map: [fusion__FieldSelectionMap!]! + "The path to the lookup field relative to the Query type." + path: fusion__FieldSelectionPath + "The name of the source schema where the annotated entity type can be looked up from." + schema: fusion__Schema! + ) repeatable on OBJECT | INTERFACE | UNION "The @fusion__requires directive specifies if a field has requirements on a source schema." - directive @fusion__requires("The GraphQL field definition in the source schema that this field depends on." field: fusion__FieldDefinition! "The map describes how the argument values for the source schema are resolved from the arguments of the field exposed in the client-facing composite schema and from required data relative to the current type." map: [fusion__FieldSelectionMap]! "A selection set on the annotated field that describes its requirements." requirements: fusion__FieldSelectionSet! "The name of the source schema where this field has requirements to data on other source schemas." schema: fusion__Schema!) repeatable on FIELD_DEFINITION + directive @fusion__requires( + "The GraphQL field definition in the source schema that this field depends on." + field: fusion__FieldDefinition! + "The map describes how the argument values for the source schema are resolved from the arguments of the field exposed in the client-facing composite schema and from required data relative to the current type." + map: [fusion__FieldSelectionMap]! + "A selection set on the annotated field that describes its requirements." + requirements: fusion__FieldSelectionSet! + "The name of the source schema where this field has requirements to data on other source schemas." + schema: fusion__Schema! + ) repeatable on FIELD_DEFINITION "The @fusion__schema_metadata directive is used to provide additional metadata for a source schema." - directive @fusion__schema_metadata("The name of the source schema." name: String!) on ENUM_VALUE + directive @fusion__schema_metadata( + "The name of the source schema." + name: String! + ) on ENUM_VALUE "The @fusion__type directive specifies which source schemas provide parts of a composite type." - directive @fusion__type("The name of the source schema that originally provided part of the annotated type." schema: fusion__Schema!) repeatable on SCALAR | OBJECT | INTERFACE | UNION | ENUM | INPUT_OBJECT + directive @fusion__type( + "The name of the source schema that originally provided part of the annotated type." + schema: fusion__Schema! + ) repeatable on SCALAR | OBJECT | INTERFACE | UNION | ENUM | INPUT_OBJECT "The @fusion__unionMember directive specifies which source schema provides a member type of a union." - directive @fusion__unionMember("The name of the member type." member: String! "The name of the source schema that provides the specified member type." schema: fusion__Schema!) repeatable on UNION + directive @fusion__unionMember( + "The name of the member type." + member: String! + "The name of the source schema that provides the specified member type." + schema: fusion__Schema! + ) repeatable on UNION """); } diff --git a/src/Nitro/CommandLine/test/CommandLine.Tests/__resources__/valid-example-1-result/composite-schema.graphqls b/src/Nitro/CommandLine/test/CommandLine.Tests/__resources__/valid-example-1-result/composite-schema.graphqls index 5fa8849ac59..17f2959738e 100644 --- a/src/Nitro/CommandLine/test/CommandLine.Tests/__resources__/valid-example-1-result/composite-schema.graphqls +++ b/src/Nitro/CommandLine/test/CommandLine.Tests/__resources__/valid-example-1-result/composite-schema.graphqls @@ -2,21 +2,15 @@ schema { query: Query } -type Query -@fusion__type(schema: SCHEMA1) -@fusion__type(schema: SCHEMA2) { - schema1Field: Int! - @fusion__field(schema: SCHEMA1) - schema2Field: Int! - @fusion__field(schema: SCHEMA2) +type Query @fusion__type(schema: SCHEMA1) @fusion__type(schema: SCHEMA2) { + schema1Field: Int! @fusion__field(schema: SCHEMA1) + schema2Field: Int! @fusion__field(schema: SCHEMA2) } "The fusion__Schema enum is a generated type used within an execution schema document to refer to a source schema in a type-safe manner." enum fusion__Schema { - SCHEMA1 - @fusion__schema_metadata(name: "Schema1") - SCHEMA2 - @fusion__schema_metadata(name: "Schema2") + SCHEMA1 @fusion__schema_metadata(name: "Schema1") + SCHEMA2 @fusion__schema_metadata(name: "Schema2") } "The fusion__FieldDefinition scalar is used to represent a GraphQL field definition specified in the GraphQL spec." @@ -32,37 +26,110 @@ scalar fusion__FieldSelectionPath scalar fusion__FieldSelectionSet "The @fusion__cost directive specifies cost metadata for each source schema." -directive @fusion__cost("The name of the source schema that defined the cost metadata." schema: fusion__Schema! "The weight defined in the source schema." weight: String!) repeatable on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @fusion__cost( + "The name of the source schema that defined the cost metadata." + schema: fusion__Schema! + "The weight defined in the source schema." + weight: String! +) repeatable on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION "The @fusion__enumValue directive specifies which source schema provides an enum value." -directive @fusion__enumValue("The name of the source schema that provides the specified enum value." schema: fusion__Schema!) repeatable on ENUM_VALUE +directive @fusion__enumValue( + "The name of the source schema that provides the specified enum value." + schema: fusion__Schema! +) repeatable on ENUM_VALUE "The @fusion__field directive specifies which source schema provides a field in a composite type and what execution behavior it has." -directive @fusion__field("Indicates that this field is only partially provided and must be combined with `provides`." partial: Boolean! = false "A selection set of fields this field provides in the composite schema." provides: fusion__FieldSelectionSet "The name of the source schema that originally provided this field." schema: fusion__Schema! "The field type in the source schema if it differs in nullability or structure." sourceType: String) repeatable on FIELD_DEFINITION +directive @fusion__field( + "Indicates that this field is only partially provided and must be combined with `provides`." + partial: Boolean! = false + "A selection set of fields this field provides in the composite schema." + provides: fusion__FieldSelectionSet + "The name of the source schema that originally provided this field." + schema: fusion__Schema! + "The field type in the source schema if it differs in nullability or structure." + sourceType: String +) repeatable on FIELD_DEFINITION "The @fusion__implements directive specifies on which source schema an interface is implemented by an object or interface type." -directive @fusion__implements("The name of the interface type." interface: String! "The name of the source schema on which the annotated type implements the specified interface." schema: fusion__Schema!) repeatable on OBJECT | INTERFACE +directive @fusion__implements( + "The name of the interface type." + interface: String! + "The name of the source schema on which the annotated type implements the specified interface." + schema: fusion__Schema! +) repeatable on OBJECT | INTERFACE "The @fusion__inaccessible directive is used to prevent specific type system members from being accessible through the client-facing composite schema, even if they are accessible in the underlying source schemas." directive @fusion__inaccessible on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION "The @fusion__inputField directive specifies which source schema provides an input field in a composite input type." -directive @fusion__inputField("The name of the source schema that originally provided this input field." schema: fusion__Schema! "The field type in the source schema if it differs in nullability or structure." sourceType: String) repeatable on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION +directive @fusion__inputField( + "The name of the source schema that originally provided this input field." + schema: fusion__Schema! + "The field type in the source schema if it differs in nullability or structure." + sourceType: String +) repeatable on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION "The @fusion__listSize directive specifies list size metadata for each source schema." -directive @fusion__listSize("The assumed size of the list as defined in the source schema." assumedSize: Int "The single slicing argument requirement of the list as defined in the source schema." requireOneSlicingArgument: Boolean "The name of the source schema that defined the list size metadata." schema: fusion__Schema! "The sized fields of the list as defined in the source schema." sizedFields: [String!] "The slicing argument default value of the list as defined in the source schema." slicingArgumentDefaultValue: Int "The slicing arguments of the list as defined in the source schema." slicingArguments: [String!]) repeatable on FIELD_DEFINITION +directive @fusion__listSize( + "The assumed size of the list as defined in the source schema." + assumedSize: Int + "The single slicing argument requirement of the list as defined in the source schema." + requireOneSlicingArgument: Boolean + "The name of the source schema that defined the list size metadata." + schema: fusion__Schema! + "The sized fields of the list as defined in the source schema." + sizedFields: [String!] + "The slicing argument default value of the list as defined in the source schema." + slicingArgumentDefaultValue: Int + "The slicing arguments of the list as defined in the source schema." + slicingArguments: [String!] +) repeatable on FIELD_DEFINITION "The @fusion__lookup directive specifies how the distributed executor can resolve data for an entity type from a source schema by a stable key." -directive @fusion__lookup("The GraphQL field definition in the source schema that can be used to look up the entity." field: fusion__FieldDefinition! "Is the lookup meant as an entry point or just to provide more data." internal: Boolean! = false "A selection set on the annotated entity type that describes the stable key for the lookup." key: fusion__FieldSelectionSet! "The map describes how the key values are resolved from the annotated entity type." map: [fusion__FieldSelectionMap!]! "The path to the lookup field relative to the Query type." path: fusion__FieldSelectionPath "The name of the source schema where the annotated entity type can be looked up from." schema: fusion__Schema!) repeatable on OBJECT | INTERFACE | UNION +directive @fusion__lookup( + "The GraphQL field definition in the source schema that can be used to look up the entity." + field: fusion__FieldDefinition! + "Is the lookup meant as an entry point or just to provide more data." + internal: Boolean! = false + "A selection set on the annotated entity type that describes the stable key for the lookup." + key: fusion__FieldSelectionSet! + "The map describes how the key values are resolved from the annotated entity type." + map: [fusion__FieldSelectionMap!]! + "The path to the lookup field relative to the Query type." + path: fusion__FieldSelectionPath + "The name of the source schema where the annotated entity type can be looked up from." + schema: fusion__Schema! +) repeatable on OBJECT | INTERFACE | UNION "The @fusion__requires directive specifies if a field has requirements on a source schema." -directive @fusion__requires("The GraphQL field definition in the source schema that this field depends on." field: fusion__FieldDefinition! "The map describes how the argument values for the source schema are resolved from the arguments of the field exposed in the client-facing composite schema and from required data relative to the current type." map: [fusion__FieldSelectionMap]! "A selection set on the annotated field that describes its requirements." requirements: fusion__FieldSelectionSet! "The name of the source schema where this field has requirements to data on other source schemas." schema: fusion__Schema!) repeatable on FIELD_DEFINITION +directive @fusion__requires( + "The GraphQL field definition in the source schema that this field depends on." + field: fusion__FieldDefinition! + "The map describes how the argument values for the source schema are resolved from the arguments of the field exposed in the client-facing composite schema and from required data relative to the current type." + map: [fusion__FieldSelectionMap]! + "A selection set on the annotated field that describes its requirements." + requirements: fusion__FieldSelectionSet! + "The name of the source schema where this field has requirements to data on other source schemas." + schema: fusion__Schema! +) repeatable on FIELD_DEFINITION "The @fusion__schema_metadata directive is used to provide additional metadata for a source schema." -directive @fusion__schema_metadata("The name of the source schema." name: String!) on ENUM_VALUE +directive @fusion__schema_metadata( + "The name of the source schema." + name: String! +) on ENUM_VALUE "The @fusion__type directive specifies which source schemas provide parts of a composite type." -directive @fusion__type("The name of the source schema that originally provided part of the annotated type." schema: fusion__Schema!) repeatable on SCALAR | OBJECT | INTERFACE | UNION | ENUM | INPUT_OBJECT +directive @fusion__type( + "The name of the source schema that originally provided part of the annotated type." + schema: fusion__Schema! +) repeatable on SCALAR | OBJECT | INTERFACE | UNION | ENUM | INPUT_OBJECT "The @fusion__unionMember directive specifies which source schema provides a member type of a union." -directive @fusion__unionMember("The name of the member type." member: String! "The name of the source schema that provides the specified member type." schema: fusion__Schema!) repeatable on UNION +directive @fusion__unionMember( + "The name of the member type." + member: String! + "The name of the source schema that provides the specified member type." + schema: fusion__Schema! +) repeatable on UNION diff --git a/src/Nitro/CommandLine/test/CommandLine.Tests/__resources__/valid-exclude-by-tag-result/composite-schema.graphqls b/src/Nitro/CommandLine/test/CommandLine.Tests/__resources__/valid-exclude-by-tag-result/composite-schema.graphqls index 5fa8849ac59..17f2959738e 100644 --- a/src/Nitro/CommandLine/test/CommandLine.Tests/__resources__/valid-exclude-by-tag-result/composite-schema.graphqls +++ b/src/Nitro/CommandLine/test/CommandLine.Tests/__resources__/valid-exclude-by-tag-result/composite-schema.graphqls @@ -2,21 +2,15 @@ schema { query: Query } -type Query -@fusion__type(schema: SCHEMA1) -@fusion__type(schema: SCHEMA2) { - schema1Field: Int! - @fusion__field(schema: SCHEMA1) - schema2Field: Int! - @fusion__field(schema: SCHEMA2) +type Query @fusion__type(schema: SCHEMA1) @fusion__type(schema: SCHEMA2) { + schema1Field: Int! @fusion__field(schema: SCHEMA1) + schema2Field: Int! @fusion__field(schema: SCHEMA2) } "The fusion__Schema enum is a generated type used within an execution schema document to refer to a source schema in a type-safe manner." enum fusion__Schema { - SCHEMA1 - @fusion__schema_metadata(name: "Schema1") - SCHEMA2 - @fusion__schema_metadata(name: "Schema2") + SCHEMA1 @fusion__schema_metadata(name: "Schema1") + SCHEMA2 @fusion__schema_metadata(name: "Schema2") } "The fusion__FieldDefinition scalar is used to represent a GraphQL field definition specified in the GraphQL spec." @@ -32,37 +26,110 @@ scalar fusion__FieldSelectionPath scalar fusion__FieldSelectionSet "The @fusion__cost directive specifies cost metadata for each source schema." -directive @fusion__cost("The name of the source schema that defined the cost metadata." schema: fusion__Schema! "The weight defined in the source schema." weight: String!) repeatable on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +directive @fusion__cost( + "The name of the source schema that defined the cost metadata." + schema: fusion__Schema! + "The weight defined in the source schema." + weight: String! +) repeatable on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION "The @fusion__enumValue directive specifies which source schema provides an enum value." -directive @fusion__enumValue("The name of the source schema that provides the specified enum value." schema: fusion__Schema!) repeatable on ENUM_VALUE +directive @fusion__enumValue( + "The name of the source schema that provides the specified enum value." + schema: fusion__Schema! +) repeatable on ENUM_VALUE "The @fusion__field directive specifies which source schema provides a field in a composite type and what execution behavior it has." -directive @fusion__field("Indicates that this field is only partially provided and must be combined with `provides`." partial: Boolean! = false "A selection set of fields this field provides in the composite schema." provides: fusion__FieldSelectionSet "The name of the source schema that originally provided this field." schema: fusion__Schema! "The field type in the source schema if it differs in nullability or structure." sourceType: String) repeatable on FIELD_DEFINITION +directive @fusion__field( + "Indicates that this field is only partially provided and must be combined with `provides`." + partial: Boolean! = false + "A selection set of fields this field provides in the composite schema." + provides: fusion__FieldSelectionSet + "The name of the source schema that originally provided this field." + schema: fusion__Schema! + "The field type in the source schema if it differs in nullability or structure." + sourceType: String +) repeatable on FIELD_DEFINITION "The @fusion__implements directive specifies on which source schema an interface is implemented by an object or interface type." -directive @fusion__implements("The name of the interface type." interface: String! "The name of the source schema on which the annotated type implements the specified interface." schema: fusion__Schema!) repeatable on OBJECT | INTERFACE +directive @fusion__implements( + "The name of the interface type." + interface: String! + "The name of the source schema on which the annotated type implements the specified interface." + schema: fusion__Schema! +) repeatable on OBJECT | INTERFACE "The @fusion__inaccessible directive is used to prevent specific type system members from being accessible through the client-facing composite schema, even if they are accessible in the underlying source schemas." directive @fusion__inaccessible on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION "The @fusion__inputField directive specifies which source schema provides an input field in a composite input type." -directive @fusion__inputField("The name of the source schema that originally provided this input field." schema: fusion__Schema! "The field type in the source schema if it differs in nullability or structure." sourceType: String) repeatable on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION +directive @fusion__inputField( + "The name of the source schema that originally provided this input field." + schema: fusion__Schema! + "The field type in the source schema if it differs in nullability or structure." + sourceType: String +) repeatable on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION "The @fusion__listSize directive specifies list size metadata for each source schema." -directive @fusion__listSize("The assumed size of the list as defined in the source schema." assumedSize: Int "The single slicing argument requirement of the list as defined in the source schema." requireOneSlicingArgument: Boolean "The name of the source schema that defined the list size metadata." schema: fusion__Schema! "The sized fields of the list as defined in the source schema." sizedFields: [String!] "The slicing argument default value of the list as defined in the source schema." slicingArgumentDefaultValue: Int "The slicing arguments of the list as defined in the source schema." slicingArguments: [String!]) repeatable on FIELD_DEFINITION +directive @fusion__listSize( + "The assumed size of the list as defined in the source schema." + assumedSize: Int + "The single slicing argument requirement of the list as defined in the source schema." + requireOneSlicingArgument: Boolean + "The name of the source schema that defined the list size metadata." + schema: fusion__Schema! + "The sized fields of the list as defined in the source schema." + sizedFields: [String!] + "The slicing argument default value of the list as defined in the source schema." + slicingArgumentDefaultValue: Int + "The slicing arguments of the list as defined in the source schema." + slicingArguments: [String!] +) repeatable on FIELD_DEFINITION "The @fusion__lookup directive specifies how the distributed executor can resolve data for an entity type from a source schema by a stable key." -directive @fusion__lookup("The GraphQL field definition in the source schema that can be used to look up the entity." field: fusion__FieldDefinition! "Is the lookup meant as an entry point or just to provide more data." internal: Boolean! = false "A selection set on the annotated entity type that describes the stable key for the lookup." key: fusion__FieldSelectionSet! "The map describes how the key values are resolved from the annotated entity type." map: [fusion__FieldSelectionMap!]! "The path to the lookup field relative to the Query type." path: fusion__FieldSelectionPath "The name of the source schema where the annotated entity type can be looked up from." schema: fusion__Schema!) repeatable on OBJECT | INTERFACE | UNION +directive @fusion__lookup( + "The GraphQL field definition in the source schema that can be used to look up the entity." + field: fusion__FieldDefinition! + "Is the lookup meant as an entry point or just to provide more data." + internal: Boolean! = false + "A selection set on the annotated entity type that describes the stable key for the lookup." + key: fusion__FieldSelectionSet! + "The map describes how the key values are resolved from the annotated entity type." + map: [fusion__FieldSelectionMap!]! + "The path to the lookup field relative to the Query type." + path: fusion__FieldSelectionPath + "The name of the source schema where the annotated entity type can be looked up from." + schema: fusion__Schema! +) repeatable on OBJECT | INTERFACE | UNION "The @fusion__requires directive specifies if a field has requirements on a source schema." -directive @fusion__requires("The GraphQL field definition in the source schema that this field depends on." field: fusion__FieldDefinition! "The map describes how the argument values for the source schema are resolved from the arguments of the field exposed in the client-facing composite schema and from required data relative to the current type." map: [fusion__FieldSelectionMap]! "A selection set on the annotated field that describes its requirements." requirements: fusion__FieldSelectionSet! "The name of the source schema where this field has requirements to data on other source schemas." schema: fusion__Schema!) repeatable on FIELD_DEFINITION +directive @fusion__requires( + "The GraphQL field definition in the source schema that this field depends on." + field: fusion__FieldDefinition! + "The map describes how the argument values for the source schema are resolved from the arguments of the field exposed in the client-facing composite schema and from required data relative to the current type." + map: [fusion__FieldSelectionMap]! + "A selection set on the annotated field that describes its requirements." + requirements: fusion__FieldSelectionSet! + "The name of the source schema where this field has requirements to data on other source schemas." + schema: fusion__Schema! +) repeatable on FIELD_DEFINITION "The @fusion__schema_metadata directive is used to provide additional metadata for a source schema." -directive @fusion__schema_metadata("The name of the source schema." name: String!) on ENUM_VALUE +directive @fusion__schema_metadata( + "The name of the source schema." + name: String! +) on ENUM_VALUE "The @fusion__type directive specifies which source schemas provide parts of a composite type." -directive @fusion__type("The name of the source schema that originally provided part of the annotated type." schema: fusion__Schema!) repeatable on SCALAR | OBJECT | INTERFACE | UNION | ENUM | INPUT_OBJECT +directive @fusion__type( + "The name of the source schema that originally provided part of the annotated type." + schema: fusion__Schema! +) repeatable on SCALAR | OBJECT | INTERFACE | UNION | ENUM | INPUT_OBJECT "The @fusion__unionMember directive specifies which source schema provides a member type of a union." -directive @fusion__unionMember("The name of the member type." member: String! "The name of the source schema that provides the specified member type." schema: fusion__Schema!) repeatable on UNION +directive @fusion__unionMember( + "The name of the member type." + member: String! + "The name of the source schema that provides the specified member type." + schema: fusion__Schema! +) repeatable on UNION diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/MultiProfileTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/MultiProfileTest.Client.cs index 21d31454222..a2488ca3500 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/MultiProfileTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/MultiProfileTest.Client.cs @@ -1491,10 +1491,7 @@ public partial interface IOnReviewSubSubscription : global::StrawberryShake.IOpe /// /// Represents the operation service of the CreateReviewMut GraphQL operation /// - /// mutation CreateReviewMut( - /// $episode: Episode! - /// $review: ReviewInput! - /// ) { + /// mutation CreateReviewMut($episode: Episode!, $review: ReviewInput!) { /// createReview(episode: $episode, review: $review) { /// __typename /// stars @@ -1529,10 +1526,7 @@ private CreateReviewMutMutationDocument() /// /// Represents the operation service of the CreateReviewMut GraphQL operation /// - /// mutation CreateReviewMut( - /// $episode: Episode! - /// $review: ReviewInput! - /// ) { + /// mutation CreateReviewMut($episode: Episode!, $review: ReviewInput!) { /// createReview(episode: $episode, review: $review) { /// __typename /// stars @@ -1635,10 +1629,7 @@ private CreateReviewMutMutation(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the CreateReviewMut GraphQL operation /// - /// mutation CreateReviewMut( - /// $episode: Episode! - /// $review: ReviewInput! - /// ) { + /// mutation CreateReviewMut($episode: Episode!, $review: ReviewInput!) { /// createReview(episode: $episode, review: $review) { /// __typename /// stars diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetHeroWithFragmentIncludeAndSkipDirectiveTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetHeroWithFragmentIncludeAndSkipDirectiveTest.Client.cs index bc9aafe0fbb..e74eb947e77 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetHeroWithFragmentIncludeAndSkipDirectiveTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetHeroWithFragmentIncludeAndSkipDirectiveTest.Client.cs @@ -661,7 +661,7 @@ public partial interface IGetHeroWithFragmentIncludeAndSkipDirective_Hero_Friend /// /// query GetHeroWithFragmentIncludeAndSkipDirective( /// $includePageInfo: Boolean = false - /// $skipPageInfo: Boolean = true + /// $skipPageInfo: Boolean = true /// ) { /// hero(episode: NEW_HOPE) { /// __typename @@ -727,7 +727,7 @@ private GetHeroWithFragmentIncludeAndSkipDirectiveQueryDocument() /// /// query GetHeroWithFragmentIncludeAndSkipDirective( /// $includePageInfo: Boolean = false - /// $skipPageInfo: Boolean = true + /// $skipPageInfo: Boolean = true /// ) { /// hero(episode: NEW_HOPE) { /// __typename @@ -867,7 +867,7 @@ private GetHeroWithFragmentIncludeAndSkipDirectiveQuery(global::StrawberryShake. /// /// query GetHeroWithFragmentIncludeAndSkipDirective( /// $includePageInfo: Boolean = false - /// $skipPageInfo: Boolean = true + /// $skipPageInfo: Boolean = true /// ) { /// hero(episode: NEW_HOPE) { /// __typename diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/UploadScalarTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/UploadScalarTest.Client.cs index aefcdc8e5d1..037a9d77391 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/UploadScalarTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/UploadScalarTest.Client.cs @@ -560,14 +560,22 @@ public partial class BazInput : global::StrawberryShake.CodeGeneration.CSharp.In /// /// query TestUpload( /// $nonUpload: String - /// $single: Upload - /// $list: [Upload] - /// $nested: [[Upload]] - /// $object: TestInput - /// $objectList: [TestInput] - /// $objectNested: [[TestInput]] + /// $single: Upload + /// $list: [Upload] + /// $nested: [[Upload]] + /// $object: TestInput + /// $objectList: [TestInput] + /// $objectNested: [[TestInput]] /// ) { - /// upload(nonUpload: $nonUpload, single: $single, list: $list, nested: $nested, object: $object, objectList: $objectList, objectNested: $objectNested) + /// upload( + /// nonUpload: $nonUpload + /// single: $single + /// list: $list + /// nested: $nested + /// object: $object + /// objectList: $objectList + /// objectNested: $objectNested + /// ) /// } /// /// @@ -599,14 +607,22 @@ private TestUploadQueryDocument() /// /// query TestUpload( /// $nonUpload: String - /// $single: Upload - /// $list: [Upload] - /// $nested: [[Upload]] - /// $object: TestInput - /// $objectList: [TestInput] - /// $objectNested: [[TestInput]] + /// $single: Upload + /// $list: [Upload] + /// $nested: [[Upload]] + /// $object: TestInput + /// $objectList: [TestInput] + /// $objectNested: [[TestInput]] /// ) { - /// upload(nonUpload: $nonUpload, single: $single, list: $list, nested: $nested, object: $object, objectList: $objectList, objectNested: $objectNested) + /// upload( + /// nonUpload: $nonUpload + /// single: $single + /// list: $list + /// nested: $nested + /// object: $object + /// objectList: $objectList + /// objectNested: $objectNested + /// ) /// } /// /// @@ -982,14 +998,22 @@ private void MapFilesFromArgumentObjectNested(global::System.String path, global /// /// query TestUpload( /// $nonUpload: String - /// $single: Upload - /// $list: [Upload] - /// $nested: [[Upload]] - /// $object: TestInput - /// $objectList: [TestInput] - /// $objectNested: [[TestInput]] + /// $single: Upload + /// $list: [Upload] + /// $nested: [[Upload]] + /// $object: TestInput + /// $objectList: [TestInput] + /// $objectNested: [[TestInput]] /// ) { - /// upload(nonUpload: $nonUpload, single: $single, list: $list, nested: $nested, object: $object, objectList: $objectList, objectNested: $objectNested) + /// upload( + /// nonUpload: $nonUpload + /// single: $single + /// list: $list + /// nested: $nested + /// object: $object + /// objectList: $objectList + /// objectNested: $objectNested + /// ) /// } /// /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/UploadScalar_InMemoryTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/UploadScalar_InMemoryTest.Client.cs index ae697d661f2..d248e106f45 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/UploadScalar_InMemoryTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/UploadScalar_InMemoryTest.Client.cs @@ -560,14 +560,22 @@ public partial class BazInput : global::StrawberryShake.CodeGeneration.CSharp.In /// /// query TestUpload( /// $nonUpload: String - /// $single: Upload - /// $list: [Upload] - /// $nested: [[Upload]] - /// $object: TestInput - /// $objectList: [TestInput] - /// $objectNested: [[TestInput]] + /// $single: Upload + /// $list: [Upload] + /// $nested: [[Upload]] + /// $object: TestInput + /// $objectList: [TestInput] + /// $objectNested: [[TestInput]] /// ) { - /// upload(nonUpload: $nonUpload, single: $single, list: $list, nested: $nested, object: $object, objectList: $objectList, objectNested: $objectNested) + /// upload( + /// nonUpload: $nonUpload + /// single: $single + /// list: $list + /// nested: $nested + /// object: $object + /// objectList: $objectList + /// objectNested: $objectNested + /// ) /// } /// /// @@ -599,14 +607,22 @@ private TestUploadQueryDocument() /// /// query TestUpload( /// $nonUpload: String - /// $single: Upload - /// $list: [Upload] - /// $nested: [[Upload]] - /// $object: TestInput - /// $objectList: [TestInput] - /// $objectNested: [[TestInput]] + /// $single: Upload + /// $list: [Upload] + /// $nested: [[Upload]] + /// $object: TestInput + /// $objectList: [TestInput] + /// $objectNested: [[TestInput]] /// ) { - /// upload(nonUpload: $nonUpload, single: $single, list: $list, nested: $nested, object: $object, objectList: $objectList, objectNested: $objectNested) + /// upload( + /// nonUpload: $nonUpload + /// single: $single + /// list: $list + /// nested: $nested + /// object: $object + /// objectList: $objectList + /// objectNested: $objectNested + /// ) /// } /// /// @@ -982,14 +998,22 @@ private void MapFilesFromArgumentObjectNested(global::System.String path, global /// /// query TestUpload( /// $nonUpload: String - /// $single: Upload - /// $list: [Upload] - /// $nested: [[Upload]] - /// $object: TestInput - /// $objectList: [TestInput] - /// $objectNested: [[TestInput]] + /// $single: Upload + /// $list: [Upload] + /// $nested: [[Upload]] + /// $object: TestInput + /// $objectList: [TestInput] + /// $objectNested: [[TestInput]] /// ) { - /// upload(nonUpload: $nonUpload, single: $single, list: $list, nested: $nested, object: $object, objectList: $objectList, objectNested: $objectNested) + /// upload( + /// nonUpload: $nonUpload + /// single: $single + /// list: $list + /// nested: $nested + /// object: $object + /// objectList: $objectList + /// objectNested: $objectNested + /// ) /// } /// /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_MapperMapsEntityOnRootCorrectly.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_MapperMapsEntityOnRootCorrectly.snap index 4405c4d8912..1e78cb95030 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_MapperMapsEntityOnRootCorrectly.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_MapperMapsEntityOnRootCorrectly.snap @@ -1192,10 +1192,7 @@ namespace Foo.Bar /// /// Represents the operation service of the WriteMessage GraphQL operation /// - /// mutation WriteMessage( - /// $text: String! - /// $address: String! - /// ) { + /// mutation WriteMessage($text: String!, $address: String!) { /// sendMessage(input: { text: $text, recipientEmail: $address }) { /// __typename /// message { @@ -1250,10 +1247,7 @@ namespace Foo.Bar /// /// Represents the operation service of the WriteMessage GraphQL operation /// - /// mutation WriteMessage( - /// $text: String! - /// $address: String! - /// ) { + /// mutation WriteMessage($text: String!, $address: String!) { /// sendMessage(input: { text: $text, recipientEmail: $address }) { /// __typename /// message { @@ -1378,10 +1372,7 @@ namespace Foo.Bar /// /// Represents the operation service of the WriteMessage GraphQL operation /// - /// mutation WriteMessage( - /// $text: String! - /// $address: String! - /// ) { + /// mutation WriteMessage($text: String!, $address: String!) { /// sendMessage(input: { text: $text, recipientEmail: $address }) { /// __typename /// message { diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_MapperMapsEntityOnRootCorrectly_With_Records.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_MapperMapsEntityOnRootCorrectly_With_Records.snap index f63c5eae4fc..81a4c8d1fd8 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_MapperMapsEntityOnRootCorrectly_With_Records.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityGeneratorTests.Generate_ChatClient_MapperMapsEntityOnRootCorrectly_With_Records.snap @@ -1192,10 +1192,7 @@ namespace Foo.Bar /// /// Represents the operation service of the WriteMessage GraphQL operation /// - /// mutation WriteMessage( - /// $text: String! - /// $address: String! - /// ) { + /// mutation WriteMessage($text: String!, $address: String!) { /// sendMessage(input: { text: $text, recipientEmail: $address }) { /// __typename /// message { @@ -1250,10 +1247,7 @@ namespace Foo.Bar /// /// Represents the operation service of the WriteMessage GraphQL operation /// - /// mutation WriteMessage( - /// $text: String! - /// $address: String! - /// ) { + /// mutation WriteMessage($text: String!, $address: String!) { /// sendMessage(input: { text: $text, recipientEmail: $address }) { /// __typename /// message { @@ -1378,10 +1372,7 @@ namespace Foo.Bar /// /// Represents the operation service of the WriteMessage GraphQL operation /// - /// mutation WriteMessage( - /// $text: String! - /// $address: String! - /// ) { + /// mutation WriteMessage($text: String!, $address: String!) { /// sendMessage(input: { text: $text, recipientEmail: $address }) { /// __typename /// message { diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.UnionWithNestedObject.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.UnionWithNestedObject.snap index 10b7587c7ab..f3815c2fba6 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.UnionWithNestedObject.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/EntityOrIdGeneratorTests.UnionWithNestedObject.snap @@ -525,8 +525,8 @@ namespace Foo.Bar /// /// mutation StoreUserSettingFor( /// $userId: Int! - /// $customerId: Int! - /// $input: StoreUserSettingForInput! + /// $customerId: Int! + /// $input: StoreUserSettingForInput! /// ) { /// storeUserSettingFor(userId: $userId, customerId: $customerId, input: $input) { /// __typename @@ -575,8 +575,8 @@ namespace Foo.Bar /// /// mutation StoreUserSettingFor( /// $userId: Int! - /// $customerId: Int! - /// $input: StoreUserSettingForInput! + /// $customerId: Int! + /// $input: StoreUserSettingForInput! /// ) { /// storeUserSettingFor(userId: $userId, customerId: $customerId, input: $input) { /// __typename @@ -699,8 +699,8 @@ namespace Foo.Bar /// /// mutation StoreUserSettingFor( /// $userId: Int! - /// $customerId: Int! - /// $input: StoreUserSettingForInput! + /// $customerId: Int! + /// $input: StoreUserSettingForInput! /// ) { /// storeUserSettingFor(userId: $userId, customerId: $customerId, input: $input) { /// __typename diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Input_Type_Fields_Are_Inspected_For_LeafTypes.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Input_Type_Fields_Are_Inspected_For_LeafTypes.snap index dac7bc4cd59..9fb2a4f0291 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Input_Type_Fields_Are_Inspected_For_LeafTypes.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Input_Type_Fields_Are_Inspected_For_LeafTypes.snap @@ -403,9 +403,7 @@ namespace Foo.Bar /// /// Represents the operation service of the ChangeHomePlanet GraphQL operation /// - /// mutation ChangeHomePlanet( - /// $input: ChangeHomePlanetInput! - /// ) { + /// mutation ChangeHomePlanet($input: ChangeHomePlanetInput!) { /// changeHomePlanet(input: $input) { /// __typename /// human { @@ -445,9 +443,7 @@ namespace Foo.Bar /// /// Represents the operation service of the ChangeHomePlanet GraphQL operation /// - /// mutation ChangeHomePlanet( - /// $input: ChangeHomePlanetInput! - /// ) { + /// mutation ChangeHomePlanet($input: ChangeHomePlanetInput!) { /// changeHomePlanet(input: $input) { /// __typename /// human { @@ -546,9 +542,7 @@ namespace Foo.Bar /// /// Represents the operation service of the ChangeHomePlanet GraphQL operation /// - /// mutation ChangeHomePlanet( - /// $input: ChangeHomePlanetInput! - /// ) { + /// mutation ChangeHomePlanet($input: ChangeHomePlanetInput!) { /// changeHomePlanet(input: $input) { /// __typename /// human { diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.KeywordCollisions.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.KeywordCollisions.snap index 425aac957ed..e66e9273f84 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.KeywordCollisions.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.KeywordCollisions.snap @@ -391,9 +391,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Readonly GraphQL operation /// - /// query Readonly( - /// $input: abstract! - /// ) { + /// query Readonly($input: abstract!) { /// readonly(readonly: $input) { /// __typename /// abstract @@ -435,9 +433,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Readonly GraphQL operation /// - /// query Readonly( - /// $input: abstract! - /// ) { + /// query Readonly($input: abstract!) { /// readonly(readonly: $input) { /// __typename /// abstract @@ -538,9 +534,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Readonly GraphQL operation /// - /// query Readonly( - /// $input: abstract! - /// ) { + /// query Readonly($input: abstract!) { /// readonly(readonly: $input) { /// __typename /// abstract diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Comments.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Comments.snap index 772a1546981..930ae6f7011 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Comments.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Comments.snap @@ -410,11 +410,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $single: Bar! - /// $list: [Bar!]! - /// $nestedList: [[Bar!]] - /// ) { + /// query Test($single: Bar!, $list: [Bar!]!, $nestedList: [[Bar!]]) { /// foo(single: $single, list: $list, nestedList: $nestedList) /// } /// @@ -445,11 +441,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $single: Bar! - /// $list: [Bar!]! - /// $nestedList: [[Bar!]] - /// ) { + /// query Test($single: Bar!, $list: [Bar!]!, $nestedList: [[Bar!]]) { /// foo(single: $single, list: $list, nestedList: $nestedList) /// } /// @@ -598,11 +590,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $single: Bar! - /// $list: [Bar!]! - /// $nestedList: [[Bar!]] - /// ) { + /// query Test($single: Bar!, $list: [Bar!]!, $nestedList: [[Bar!]]) { /// foo(single: $single, list: $list, nestedList: $nestedList) /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Comments_With_Input_Records.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Comments_With_Input_Records.snap index 8b5dc62ef89..8bc2419dbd5 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Comments_With_Input_Records.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Comments_With_Input_Records.snap @@ -390,11 +390,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $single: Bar! - /// $list: [Bar!]! - /// $nestedList: [[Bar!]] - /// ) { + /// query Test($single: Bar!, $list: [Bar!]!, $nestedList: [[Bar!]]) { /// foo(single: $single, list: $list, nestedList: $nestedList) /// } /// @@ -425,11 +421,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $single: Bar! - /// $list: [Bar!]! - /// $nestedList: [[Bar!]] - /// ) { + /// query Test($single: Bar!, $list: [Bar!]!, $nestedList: [[Bar!]]) { /// foo(single: $single, list: $list, nestedList: $nestedList) /// } /// @@ -578,11 +570,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $single: Bar! - /// $list: [Bar!]! - /// $nestedList: [[Bar!]] - /// ) { + /// query Test($single: Bar!, $list: [Bar!]!, $nestedList: [[Bar!]]) { /// foo(single: $single, list: $list, nestedList: $nestedList) /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_ComplexInputTypes.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_ComplexInputTypes.snap index 45163ef0e2d..b06b4c408fe 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_ComplexInputTypes.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_ComplexInputTypes.snap @@ -700,9 +700,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $input: User! - /// ) { + /// query Test($input: User!) { /// foo(input: $input) /// } /// @@ -733,9 +731,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $input: User! - /// ) { + /// query Test($input: User!) { /// foo(input: $input) /// } /// @@ -876,9 +872,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $input: User! - /// ) { + /// query Test($input: User!) { /// foo(input: $input) /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Complex_Arguments.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Complex_Arguments.snap index cb428498e82..aa28413aaaf 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Complex_Arguments.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_Complex_Arguments.snap @@ -404,11 +404,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $single: Bar! - /// $list: [Bar!]! - /// $nestedList: [[Bar!]] - /// ) { + /// query Test($single: Bar!, $list: [Bar!]!, $nestedList: [[Bar!]]) { /// foo(single: $single, list: $list, nestedList: $nestedList) /// } /// @@ -439,11 +435,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $single: Bar! - /// $list: [Bar!]! - /// $nestedList: [[Bar!]] - /// ) { + /// query Test($single: Bar!, $list: [Bar!]!, $nestedList: [[Bar!]]) { /// foo(single: $single, list: $list, nestedList: $nestedList) /// } /// @@ -592,11 +584,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $single: Bar! - /// $list: [Bar!]! - /// $nestedList: [[Bar!]] - /// ) { + /// query Test($single: Bar!, $list: [Bar!]!, $nestedList: [[Bar!]]) { /// foo(single: $single, list: $list, nestedList: $nestedList) /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_FirstNonUpload.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_FirstNonUpload.snap index ccfbe386479..88ee76b5ec1 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_FirstNonUpload.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_FirstNonUpload.snap @@ -96,10 +96,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $string: String! - /// $upload: Upload! - /// ) { + /// query Test($string: String!, $upload: Upload!) { /// foo(string: $string, upload: $upload) /// } /// @@ -130,10 +127,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $string: String! - /// $upload: Upload! - /// ) { + /// query Test($string: String!, $upload: Upload!) { /// foo(string: $string, upload: $upload) /// } /// @@ -239,10 +233,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $string: String! - /// $upload: Upload! - /// ) { + /// query Test($string: String!, $upload: Upload!) { /// foo(string: $string, upload: $upload) /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_LastNonUpload.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_LastNonUpload.snap index 08ae19f1cc1..e493d05d86a 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_LastNonUpload.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_LastNonUpload.snap @@ -96,10 +96,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $upload: Upload! - /// $string: String! - /// ) { + /// query Test($upload: Upload!, $string: String!) { /// foo(string: $string, upload: $upload) /// } /// @@ -130,10 +127,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $upload: Upload! - /// $string: String! - /// ) { + /// query Test($upload: Upload!, $string: String!) { /// foo(string: $string, upload: $upload) /// } /// @@ -239,10 +233,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $upload: Upload! - /// $string: String! - /// ) { + /// query Test($upload: Upload!, $string: String!) { /// foo(string: $string, upload: $upload) /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadAsArg.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadAsArg.snap index 5ea4e01c9fd..d8c9d97e419 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadAsArg.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadAsArg.snap @@ -98,13 +98,20 @@ namespace Foo.Bar /// /// query Test( /// $upload: Upload! - /// $uploadNullable: Upload - /// $list: [Upload!]! - /// $listNullable: [Upload!] - /// $nestedList: [[Upload!]!]! - /// $nestedListNullable: [[Upload!]] + /// $uploadNullable: Upload + /// $list: [Upload!]! + /// $listNullable: [Upload!] + /// $nestedList: [[Upload!]!]! + /// $nestedListNullable: [[Upload!]] /// ) { - /// foo(upload: $upload, uploadNullable: $uploadNullable, list: $list, listNullable: $listNullable, nestedList: $nestedList, nestedListNullable: $nestedListNullable) + /// foo( + /// upload: $upload + /// uploadNullable: $uploadNullable + /// list: $list + /// listNullable: $listNullable + /// nestedList: $nestedList + /// nestedListNullable: $nestedListNullable + /// ) /// } /// /// @@ -136,13 +143,20 @@ namespace Foo.Bar /// /// query Test( /// $upload: Upload! - /// $uploadNullable: Upload - /// $list: [Upload!]! - /// $listNullable: [Upload!] - /// $nestedList: [[Upload!]!]! - /// $nestedListNullable: [[Upload!]] + /// $uploadNullable: Upload + /// $list: [Upload!]! + /// $listNullable: [Upload!] + /// $nestedList: [[Upload!]!]! + /// $nestedListNullable: [[Upload!]] /// ) { - /// foo(upload: $upload, uploadNullable: $uploadNullable, list: $list, listNullable: $listNullable, nestedList: $nestedList, nestedListNullable: $nestedListNullable) + /// foo( + /// upload: $upload + /// uploadNullable: $uploadNullable + /// list: $list + /// listNullable: $listNullable + /// nestedList: $nestedList + /// nestedListNullable: $nestedListNullable + /// ) /// } /// /// @@ -407,13 +421,20 @@ namespace Foo.Bar /// /// query Test( /// $upload: Upload! - /// $uploadNullable: Upload - /// $list: [Upload!]! - /// $listNullable: [Upload!] - /// $nestedList: [[Upload!]!]! - /// $nestedListNullable: [[Upload!]] + /// $uploadNullable: Upload + /// $list: [Upload!]! + /// $listNullable: [Upload!] + /// $nestedList: [[Upload!]!]! + /// $nestedListNullable: [[Upload!]] /// ) { - /// foo(upload: $upload, uploadNullable: $uploadNullable, list: $list, listNullable: $listNullable, nestedList: $nestedList, nestedListNullable: $nestedListNullable) + /// foo( + /// upload: $upload + /// uploadNullable: $uploadNullable + /// list: $list + /// listNullable: $listNullable + /// nestedList: $nestedList + /// nestedListNullable: $nestedListNullable + /// ) /// } /// /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadInDeepInputObject.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadInDeepInputObject.snap index 114ff8de6b4..7b147143138 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadInDeepInputObject.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadInDeepInputObject.snap @@ -551,9 +551,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $input: Test! - /// ) { + /// query Test($input: Test!) { /// foo(input: $input) /// } /// @@ -584,9 +582,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $input: Test! - /// ) { + /// query Test($input: Test!) { /// foo(input: $input) /// } /// @@ -723,9 +719,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $input: Test! - /// ) { + /// query Test($input: Test!) { /// foo(input: $input) /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadInInputObject.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadInInputObject.snap index 5c7c5be9bc2..6238a99a429 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadInInputObject.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/InputGeneratorTests.Operation_With_UploadInInputObject.snap @@ -206,9 +206,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $input: Test! - /// ) { + /// query Test($input: Test!) { /// foo(input: $input) /// } /// @@ -239,9 +237,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $input: Test! - /// ) { + /// query Test($input: Test!) { /// foo(input: $input) /// } /// @@ -348,9 +344,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Test GraphQL operation /// - /// query Test( - /// $input: Test! - /// ) { + /// query Test($input: Test!) { /// foo(input: $input) /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Generate_StarWarsIntegrationTest.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Generate_StarWarsIntegrationTest.snap index 8d0ef33ed44..d10e2fec114 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Generate_StarWarsIntegrationTest.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Generate_StarWarsIntegrationTest.snap @@ -311,9 +311,7 @@ namespace Foo.Bar /// /// Represents the operation service of the CreateReview GraphQL operation /// - /// mutation CreateReview( - /// $stars: Int! - /// ) { + /// mutation CreateReview($stars: Int!) { /// createReview(episode: EMPIRE, review: { stars: $stars, commentary: "good" }) { /// __typename /// stars @@ -347,9 +345,7 @@ namespace Foo.Bar /// /// Represents the operation service of the CreateReview GraphQL operation /// - /// mutation CreateReview( - /// $stars: Int! - /// ) { + /// mutation CreateReview($stars: Int!) { /// createReview(episode: EMPIRE, review: { stars: $stars, commentary: "good" }) { /// __typename /// stars @@ -437,9 +433,7 @@ namespace Foo.Bar /// /// Represents the operation service of the CreateReview GraphQL operation /// - /// mutation CreateReview( - /// $stars: Int! - /// ) { + /// mutation CreateReview($stars: Int!) { /// createReview(episode: EMPIRE, review: { stars: $stars, commentary: "good" }) { /// __typename /// stars diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Operation_With_Leaf_Argument.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Operation_With_Leaf_Argument.snap index d580f532286..2b0a35e4af7 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Operation_With_Leaf_Argument.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Operation_With_Leaf_Argument.snap @@ -302,9 +302,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetHero GraphQL operation /// - /// query GetHero( - /// $episode: Episode - /// ) { + /// query GetHero($episode: Episode) { /// hero(episode: $episode) { /// __typename /// name @@ -339,9 +337,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetHero GraphQL operation /// - /// query GetHero( - /// $episode: Episode - /// ) { + /// query GetHero($episode: Episode) { /// hero(episode: $episode) { /// __typename /// name @@ -437,9 +433,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetHero GraphQL operation /// - /// query GetHero( - /// $episode: Episode - /// ) { + /// query GetHero($episode: Episode) { /// hero(episode: $episode) { /// __typename /// name diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Operation_With_Type_Argument.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Operation_With_Type_Argument.snap index 82fb866a5fe..17ea27e219e 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Operation_With_Type_Argument.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Operation_With_Type_Argument.snap @@ -359,10 +359,7 @@ namespace Foo.Bar /// /// Represents the operation service of the CreateReviewMut GraphQL operation /// - /// mutation CreateReviewMut( - /// $episode: Episode! - /// $review: ReviewInput! - /// ) { + /// mutation CreateReviewMut($episode: Episode!, $review: ReviewInput!) { /// createReview(episode: $episode, review: $review) { /// __typename /// stars @@ -397,10 +394,7 @@ namespace Foo.Bar /// /// Represents the operation service of the CreateReviewMut GraphQL operation /// - /// mutation CreateReviewMut( - /// $episode: Episode! - /// $review: ReviewInput! - /// ) { + /// mutation CreateReviewMut($episode: Episode!, $review: ReviewInput!) { /// createReview(episode: $episode, review: $review) { /// __typename /// stars @@ -503,10 +497,7 @@ namespace Foo.Bar /// /// Represents the operation service of the CreateReviewMut GraphQL operation /// - /// mutation CreateReviewMut( - /// $episode: Episode! - /// $review: ReviewInput! - /// ) { + /// mutation CreateReviewMut($episode: Episode!, $review: ReviewInput!) { /// createReview(episode: $episode, review: $review) { /// __typename /// stars diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Generate_ChatClient_AllOperations.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Generate_ChatClient_AllOperations.snap index 27114d19393..77d5015310b 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Generate_ChatClient_AllOperations.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Generate_ChatClient_AllOperations.snap @@ -2752,9 +2752,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetMessages GraphQL operation /// - /// query GetMessages( - /// $email: String! - /// ) { + /// query GetMessages($email: String!) { /// personByEmail(email: $email) { /// __typename /// messages(order_by: { sent: ASC }) { @@ -2827,9 +2825,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetMessages GraphQL operation /// - /// query GetMessages( - /// $email: String! - /// ) { + /// query GetMessages($email: String!) { /// personByEmail(email: $email) { /// __typename /// messages(order_by: { sent: ASC }) { @@ -2961,9 +2957,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetMessages GraphQL operation /// - /// query GetMessages( - /// $email: String! - /// ) { + /// query GetMessages($email: String!) { /// personByEmail(email: $email) { /// __typename /// messages(order_by: { sent: ASC }) { @@ -3024,9 +3018,7 @@ namespace Foo.Bar /// /// Represents the operation service of the SendMessageInput GraphQL operation /// - /// mutation SendMessageInput( - /// $input: SendMessageInput! - /// ) { + /// mutation SendMessageInput($input: SendMessageInput!) { /// sendMessage(input: $input) { /// __typename /// message { @@ -3093,9 +3085,7 @@ namespace Foo.Bar /// /// Represents the operation service of the SendMessageInput GraphQL operation /// - /// mutation SendMessageInput( - /// $input: SendMessageInput! - /// ) { + /// mutation SendMessageInput($input: SendMessageInput!) { /// sendMessage(input: $input) { /// __typename /// message { @@ -3221,9 +3211,7 @@ namespace Foo.Bar /// /// Represents the operation service of the SendMessageInput GraphQL operation /// - /// mutation SendMessageInput( - /// $input: SendMessageInput! - /// ) { + /// mutation SendMessageInput($input: SendMessageInput!) { /// sendMessage(input: $input) { /// __typename /// message { @@ -3278,10 +3266,7 @@ namespace Foo.Bar /// /// Represents the operation service of the SendMessageMut GraphQL operation /// - /// mutation SendMessageMut( - /// $email: String! - /// $text: String! - /// ) { + /// mutation SendMessageMut($email: String!, $text: String!) { /// sendMessage(input: { recipientEmail: $email, text: $text }) { /// __typename /// message { @@ -3348,10 +3333,7 @@ namespace Foo.Bar /// /// Represents the operation service of the SendMessageMut GraphQL operation /// - /// mutation SendMessageMut( - /// $email: String! - /// $text: String! - /// ) { + /// mutation SendMessageMut($email: String!, $text: String!) { /// sendMessage(input: { recipientEmail: $email, text: $text }) { /// __typename /// message { @@ -3488,10 +3470,7 @@ namespace Foo.Bar /// /// Represents the operation service of the SendMessageMut GraphQL operation /// - /// mutation SendMessageMut( - /// $email: String! - /// $text: String! - /// ) { + /// mutation SendMessageMut($email: String!, $text: String!) { /// sendMessage(input: { recipientEmail: $email, text: $text }) { /// __typename /// message { diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.NonNullableValueType_WithoutGlobal_Input.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.NonNullableValueType_WithoutGlobal_Input.snap index 24a9c94bc34..40d743f104e 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.NonNullableValueType_WithoutGlobal_Input.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.NonNullableValueType_WithoutGlobal_Input.snap @@ -206,9 +206,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetSomething GraphQL operation /// - /// query GetSomething( - /// $bar: Bar - /// ) { + /// query GetSomething($bar: Bar) { /// foo(bar: $bar) /// } /// @@ -239,9 +237,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetSomething GraphQL operation /// - /// query GetSomething( - /// $bar: Bar - /// ) { + /// query GetSomething($bar: Bar) { /// foo(bar: $bar) /// } /// @@ -333,9 +329,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetSomething GraphQL operation /// - /// query GetSomething( - /// $bar: Bar - /// ) { + /// query GetSomething($bar: Bar) { /// foo(bar: $bar) /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.NonNullable_ValueType_Input.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.NonNullable_ValueType_Input.snap index 24a9c94bc34..40d743f104e 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.NonNullable_ValueType_Input.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.NonNullable_ValueType_Input.snap @@ -206,9 +206,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetSomething GraphQL operation /// - /// query GetSomething( - /// $bar: Bar - /// ) { + /// query GetSomething($bar: Bar) { /// foo(bar: $bar) /// } /// @@ -239,9 +237,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetSomething GraphQL operation /// - /// query GetSomething( - /// $bar: Bar - /// ) { + /// query GetSomething($bar: Bar) { /// foo(bar: $bar) /// } /// @@ -333,9 +329,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetSomething GraphQL operation /// - /// query GetSomething( - /// $bar: Bar - /// ) { + /// query GetSomething($bar: Bar) { /// foo(bar: $bar) /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Nullable_List_Input.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Nullable_List_Input.snap index 853f6dbc56a..2bd859d3c99 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Nullable_List_Input.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Nullable_List_Input.snap @@ -357,9 +357,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetSomething GraphQL operation /// - /// query GetSomething( - /// $bar: Bar - /// ) { + /// query GetSomething($bar: Bar) { /// foo(bar: $bar) /// } /// @@ -390,9 +388,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetSomething GraphQL operation /// - /// query GetSomething( - /// $bar: Bar - /// ) { + /// query GetSomething($bar: Bar) { /// foo(bar: $bar) /// } /// @@ -484,9 +480,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetSomething GraphQL operation /// - /// query GetSomething( - /// $bar: Bar - /// ) { + /// query GetSomething($bar: Bar) { /// foo(bar: $bar) /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Nullable_ValueType_Input.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Nullable_ValueType_Input.snap index e7fc8deaa40..b31a8188f4e 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Nullable_ValueType_Input.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Nullable_ValueType_Input.snap @@ -217,9 +217,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetSomething GraphQL operation /// - /// query GetSomething( - /// $bar: Bar - /// ) { + /// query GetSomething($bar: Bar) { /// foo(bar: $bar) /// } /// @@ -250,9 +248,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetSomething GraphQL operation /// - /// query GetSomething( - /// $bar: Bar - /// ) { + /// query GetSomething($bar: Bar) { /// foo(bar: $bar) /// } /// @@ -344,9 +340,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetSomething GraphQL operation /// - /// query GetSomething( - /// $bar: Bar - /// ) { + /// query GetSomething($bar: Bar) { /// foo(bar: $bar) /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Operation_With_MultipleOperations.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Operation_With_MultipleOperations.snap index 1b550b633b2..fa77bd7f625 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Operation_With_MultipleOperations.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/OperationGeneratorTests.Operation_With_MultipleOperations.snap @@ -550,11 +550,7 @@ namespace Foo.Bar /// /// Represents the operation service of the TestOperation GraphQL operation /// - /// query TestOperation( - /// $single: Bar! - /// $list: [Bar!]! - /// $nestedList: [[Bar!]] - /// ) { + /// query TestOperation($single: Bar!, $list: [Bar!]!, $nestedList: [[Bar!]]) { /// foo(single: $single, list: $list, nestedList: $nestedList) /// } /// @@ -585,11 +581,7 @@ namespace Foo.Bar /// /// Represents the operation service of the TestOperation GraphQL operation /// - /// query TestOperation( - /// $single: Bar! - /// $list: [Bar!]! - /// $nestedList: [[Bar!]] - /// ) { + /// query TestOperation($single: Bar!, $list: [Bar!]!, $nestedList: [[Bar!]]) { /// foo(single: $single, list: $list, nestedList: $nestedList) /// } /// @@ -738,11 +730,7 @@ namespace Foo.Bar /// /// Represents the operation service of the TestOperation GraphQL operation /// - /// query TestOperation( - /// $single: Bar! - /// $list: [Bar!]! - /// $nestedList: [[Bar!]] - /// ) { + /// query TestOperation($single: Bar!, $list: [Bar!]!, $nestedList: [[Bar!]]) { /// foo(single: $single, list: $list, nestedList: $nestedList) /// } /// @@ -761,11 +749,7 @@ namespace Foo.Bar /// /// Represents the operation service of the TestOperation2 GraphQL operation /// - /// query TestOperation2( - /// $single: Bar! - /// $list: [Bar!]! - /// $nestedList: [[Bar!]] - /// ) { + /// query TestOperation2($single: Bar!, $list: [Bar!]!, $nestedList: [[Bar!]]) { /// foo(single: $single, list: $list, nestedList: $nestedList) /// } /// @@ -796,11 +780,7 @@ namespace Foo.Bar /// /// Represents the operation service of the TestOperation2 GraphQL operation /// - /// query TestOperation2( - /// $single: Bar! - /// $list: [Bar!]! - /// $nestedList: [[Bar!]] - /// ) { + /// query TestOperation2($single: Bar!, $list: [Bar!]!, $nestedList: [[Bar!]]) { /// foo(single: $single, list: $list, nestedList: $nestedList) /// } /// @@ -949,11 +929,7 @@ namespace Foo.Bar /// /// Represents the operation service of the TestOperation2 GraphQL operation /// - /// query TestOperation2( - /// $single: Bar! - /// $list: [Bar!]! - /// $nestedList: [[Bar!]] - /// ) { + /// query TestOperation2($single: Bar!, $list: [Bar!]!, $nestedList: [[Bar!]]) { /// foo(single: $single, list: $list, nestedList: $nestedList) /// } /// @@ -972,11 +948,7 @@ namespace Foo.Bar /// /// Represents the operation service of the TestOperation3 GraphQL operation /// - /// query TestOperation3( - /// $single: Bar! - /// $list: [Bar!]! - /// $nestedList: [[Bar!]] - /// ) { + /// query TestOperation3($single: Bar!, $list: [Bar!]!, $nestedList: [[Bar!]]) { /// foo(single: $single, list: $list, nestedList: $nestedList) /// } /// @@ -1007,11 +979,7 @@ namespace Foo.Bar /// /// Represents the operation service of the TestOperation3 GraphQL operation /// - /// query TestOperation3( - /// $single: Bar! - /// $list: [Bar!]! - /// $nestedList: [[Bar!]] - /// ) { + /// query TestOperation3($single: Bar!, $list: [Bar!]!, $nestedList: [[Bar!]]) { /// foo(single: $single, list: $list, nestedList: $nestedList) /// } /// @@ -1160,11 +1128,7 @@ namespace Foo.Bar /// /// Represents the operation service of the TestOperation3 GraphQL operation /// - /// query TestOperation3( - /// $single: Bar! - /// $list: [Bar!]! - /// $nestedList: [[Bar!]] - /// ) { + /// query TestOperation3($single: Bar!, $list: [Bar!]!, $nestedList: [[Bar!]]) { /// foo(single: $single, list: $list, nestedList: $nestedList) /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_RuntimeType_ValueType_AsInput.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_RuntimeType_ValueType_AsInput.snap index d848cb5777a..3ce271ad7c8 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_RuntimeType_ValueType_AsInput.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_RuntimeType_ValueType_AsInput.snap @@ -171,9 +171,7 @@ namespace Foo.Bar /// /// Represents the operation service of the SetPerson GraphQL operation /// - /// query SetPerson( - /// $email: Email! - /// ) { + /// query SetPerson($email: Email!) { /// person { /// __typename /// setEmail(email: $email) @@ -207,9 +205,7 @@ namespace Foo.Bar /// /// Represents the operation service of the SetPerson GraphQL operation /// - /// query SetPerson( - /// $email: Email! - /// ) { + /// query SetPerson($email: Email!) { /// person { /// __typename /// setEmail(email: $email) @@ -297,9 +293,7 @@ namespace Foo.Bar /// /// Represents the operation service of the SetPerson GraphQL operation /// - /// query SetPerson( - /// $email: Email! - /// ) { + /// query SetPerson($email: Email!) { /// person { /// __typename /// setEmail(email: $email) diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType.snap index 45788cd738f..c34fb78c949 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType.snap @@ -96,9 +96,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetId GraphQL operation /// - /// query GetId( - /// $modelId: ModelIdScalar! - /// ) { + /// query GetId($modelId: ModelIdScalar!) { /// personId(id: $modelId) /// } /// @@ -129,9 +127,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetId GraphQL operation /// - /// query GetId( - /// $modelId: ModelIdScalar! - /// ) { + /// query GetId($modelId: ModelIdScalar!) { /// personId(id: $modelId) /// } /// @@ -216,9 +212,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetId GraphQL operation /// - /// query GetId( - /// $modelId: ModelIdScalar! - /// ) { + /// query GetId($modelId: ModelIdScalar!) { /// personId(id: $modelId) /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType_Fails_If_ValueType_Not_Specified.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType_Fails_If_ValueType_Not_Specified.snap index 346feb0d8bc..0e3c2ed0c5a 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType_Fails_If_ValueType_Not_Specified.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType_Fails_If_ValueType_Not_Specified.snap @@ -96,9 +96,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetId GraphQL operation /// - /// query GetId( - /// $modelId: ModelIdScalar! - /// ) { + /// query GetId($modelId: ModelIdScalar!) { /// personId(id: $modelId) /// } /// @@ -129,9 +127,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetId GraphQL operation /// - /// query GetId( - /// $modelId: ModelIdScalar! - /// ) { + /// query GetId($modelId: ModelIdScalar!) { /// personId(id: $modelId) /// } /// @@ -221,9 +217,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetId GraphQL operation /// - /// query GetId( - /// $modelId: ModelIdScalar! - /// ) { + /// query GetId($modelId: ModelIdScalar!) { /// personId(id: $modelId) /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType_Used_As_Nullable_Input.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType_Used_As_Nullable_Input.snap index 86e6bdaee34..39251f438af 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType_Used_As_Nullable_Input.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Custom_Scalar_With_ValueType_RuntimeType_Used_As_Nullable_Input.snap @@ -96,9 +96,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetId GraphQL operation /// - /// query GetId( - /// $modelId: ModelIdScalar - /// ) { + /// query GetId($modelId: ModelIdScalar) { /// personId(id: $modelId) /// } /// @@ -129,9 +127,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetId GraphQL operation /// - /// query GetId( - /// $modelId: ModelIdScalar - /// ) { + /// query GetId($modelId: ModelIdScalar) { /// personId(id: $modelId) /// } /// @@ -223,9 +219,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetId GraphQL operation /// - /// query GetId( - /// $modelId: ModelIdScalar - /// ) { + /// query GetId($modelId: ModelIdScalar) { /// personId(id: $modelId) /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_GetFeatById.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_GetFeatById.snap index 072c38a9bc8..a24b08f5810 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_GetFeatById.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_GetFeatById.snap @@ -347,9 +347,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetFeatById GraphQL operation /// - /// query GetFeatById( - /// $id: UUID! - /// ) { + /// query GetFeatById($id: UUID!) { /// feats(where: { id: { eq: $id } }) { /// __typename /// items { @@ -398,9 +396,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetFeatById GraphQL operation /// - /// query GetFeatById( - /// $id: UUID! - /// ) { + /// query GetFeatById($id: UUID!) { /// feats(where: { id: { eq: $id } }) { /// __typename /// items { @@ -503,9 +499,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetFeatById GraphQL operation /// - /// query GetFeatById( - /// $id: UUID! - /// ) { + /// query GetFeatById($id: UUID!) { /// feats(where: { id: { eq: $id } }) { /// __typename /// items { diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_GetFeatsPage.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_GetFeatsPage.snap index d14207e3a85..a3592ebaf41 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_GetFeatsPage.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_GetFeatsPage.snap @@ -343,10 +343,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetFeatsPage GraphQL operation /// - /// query GetFeatsPage( - /// $skip: Int - /// $take: Int - /// ) { + /// query GetFeatsPage($skip: Int, $take: Int) { /// feats(skip: $skip, take: $take) { /// __typename /// items { @@ -395,10 +392,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetFeatsPage GraphQL operation /// - /// query GetFeatsPage( - /// $skip: Int - /// $take: Int - /// ) { + /// query GetFeatsPage($skip: Int, $take: Int) { /// feats(skip: $skip, take: $take) { /// __typename /// items { @@ -521,10 +515,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetFeatsPage GraphQL operation /// - /// query GetFeatsPage( - /// $skip: Int - /// $take: Int - /// ) { + /// query GetFeatsPage($skip: Int, $take: Int) { /// feats(skip: $skip, take: $take) { /// __typename /// items { diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_PeopleSearch_From_ActiveDirectory_Schema.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_PeopleSearch_From_ActiveDirectory_Schema.snap index 9e9a8637845..419a0d9a168 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_PeopleSearch_From_ActiveDirectory_Schema.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_PeopleSearch_From_ActiveDirectory_Schema.snap @@ -649,13 +649,13 @@ namespace Foo.Bar /// /// Represents the operation service of the PeopleSearch GraphQL operation /// - /// query PeopleSearch( - /// $term: String! - /// $skip: Int - /// $take: Int - /// $inactive: Boolean - /// ) { - /// people: peopleSearch(term: $term, includeInactive: $inactive, skip: $skip, take: $take) { + /// query PeopleSearch($term: String!, $skip: Int, $take: Int, $inactive: Boolean) { + /// people: peopleSearch( + /// term: $term + /// includeInactive: $inactive + /// skip: $skip + /// take: $take + /// ) { /// __typename /// totalCount /// pageInfo { @@ -726,13 +726,13 @@ namespace Foo.Bar /// /// Represents the operation service of the PeopleSearch GraphQL operation /// - /// query PeopleSearch( - /// $term: String! - /// $skip: Int - /// $take: Int - /// $inactive: Boolean - /// ) { - /// people: peopleSearch(term: $term, includeInactive: $inactive, skip: $skip, take: $take) { + /// query PeopleSearch($term: String!, $skip: Int, $take: Int, $inactive: Boolean) { + /// people: peopleSearch( + /// term: $term + /// includeInactive: $inactive + /// skip: $skip + /// take: $take + /// ) { /// __typename /// totalCount /// pageInfo { @@ -907,13 +907,13 @@ namespace Foo.Bar /// /// Represents the operation service of the PeopleSearch GraphQL operation /// - /// query PeopleSearch( - /// $term: String! - /// $skip: Int - /// $take: Int - /// $inactive: Boolean - /// ) { - /// people: peopleSearch(term: $term, includeInactive: $inactive, skip: $skip, take: $take) { + /// query PeopleSearch($term: String!, $skip: Int, $take: Int, $inactive: Boolean) { + /// people: peopleSearch( + /// term: $term + /// includeInactive: $inactive + /// skip: $skip + /// take: $take + /// ) { /// __typename /// totalCount /// pageInfo { diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_Query_With_Skip_Take.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_Query_With_Skip_Take.snap index 0f288995afa..5cf38da3c89 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_Query_With_Skip_Take.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_Query_With_Skip_Take.snap @@ -264,11 +264,7 @@ namespace Foo.Bar /// /// Represents the operation service of the SearchNewsItems GraphQL operation /// - /// query SearchNewsItems( - /// $query: String! - /// $skip: Int - /// $take: Int - /// ) { + /// query SearchNewsItems($query: String!, $skip: Int, $take: Int) { /// newsItems(skip: $skip, take: $take, query: $query) { /// __typename /// items { @@ -310,11 +306,7 @@ namespace Foo.Bar /// /// Represents the operation service of the SearchNewsItems GraphQL operation /// - /// query SearchNewsItems( - /// $query: String! - /// $skip: Int - /// $take: Int - /// ) { + /// query SearchNewsItems($query: String!, $skip: Int, $take: Int) { /// newsItems(skip: $skip, take: $take, query: $query) { /// __typename /// items { @@ -444,11 +436,7 @@ namespace Foo.Bar /// /// Represents the operation service of the SearchNewsItems GraphQL operation /// - /// query SearchNewsItems( - /// $query: String! - /// $skip: Int - /// $take: Int - /// ) { + /// query SearchNewsItems($query: String!, $skip: Int, $take: Int) { /// newsItems(skip: $skip, take: $take, query: $query) { /// __typename /// items { diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_UpdateMembers_Mutation.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_UpdateMembers_Mutation.snap index ea1a26447fc..ce7f38d3371 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_UpdateMembers_Mutation.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Create_UpdateMembers_Mutation.snap @@ -620,9 +620,7 @@ namespace Foo.Bar /// /// Represents the operation service of the UpdateMembers GraphQL operation /// - /// mutation UpdateMembers( - /// $input: UpdateProjectMembersInput! - /// ) { + /// mutation UpdateMembers($input: UpdateProjectMembersInput!) { /// project { /// __typename /// updateMembers(input: $input) { @@ -659,9 +657,7 @@ namespace Foo.Bar /// /// Represents the operation service of the UpdateMembers GraphQL operation /// - /// mutation UpdateMembers( - /// $input: UpdateProjectMembersInput! - /// ) { + /// mutation UpdateMembers($input: UpdateProjectMembersInput!) { /// project { /// __typename /// updateMembers(input: $input) { @@ -757,9 +753,7 @@ namespace Foo.Bar /// /// Represents the operation service of the UpdateMembers GraphQL operation /// - /// mutation UpdateMembers( - /// $input: UpdateProjectMembersInput! - /// ) { + /// mutation UpdateMembers($input: UpdateProjectMembersInput!) { /// project { /// __typename /// updateMembers(input: $input) { diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.FieldsWithUnderlineInName.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.FieldsWithUnderlineInName.snap index 9f9881a1528..bd0e78b2e22 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.FieldsWithUnderlineInName.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.FieldsWithUnderlineInName.snap @@ -2961,7 +2961,7 @@ namespace Foo.Bar /// /// query GetBwr_TimeSeries( /// $where: bwr_TimeSeriesFilterInput - /// $readDataInput: ReadDataInput! + /// $readDataInput: ReadDataInput! /// ) { /// bwr_TimeSeries(where: $where) { /// __typename @@ -3050,7 +3050,7 @@ namespace Foo.Bar /// /// query GetBwr_TimeSeries( /// $where: bwr_TimeSeriesFilterInput - /// $readDataInput: ReadDataInput! + /// $readDataInput: ReadDataInput! /// ) { /// bwr_TimeSeries(where: $where) { /// __typename @@ -3214,7 +3214,7 @@ namespace Foo.Bar /// /// query GetBwr_TimeSeries( /// $where: bwr_TimeSeriesFilterInput - /// $readDataInput: ReadDataInput! + /// $readDataInput: ReadDataInput! /// ) { /// bwr_TimeSeries(where: $where) { /// __typename diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.HasuraMutation.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.HasuraMutation.snap index ec8b616e73c..c2015e1580b 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.HasuraMutation.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.HasuraMutation.snap @@ -3545,9 +3545,7 @@ namespace Foo.Bar /// /// Represents the operation service of the InsertPeople GraphQL operation /// - /// mutation InsertPeople( - /// $people: [people_insert_input!]! - /// ) { + /// mutation InsertPeople($people: [people_insert_input!]!) { /// insert_people(objects: $people) { /// __typename /// affected_rows @@ -3581,9 +3579,7 @@ namespace Foo.Bar /// /// Represents the operation service of the InsertPeople GraphQL operation /// - /// mutation InsertPeople( - /// $people: [people_insert_input!]! - /// ) { + /// mutation InsertPeople($people: [people_insert_input!]!) { /// insert_people(objects: $people) { /// __typename /// affected_rows @@ -3687,9 +3683,7 @@ namespace Foo.Bar /// /// Represents the operation service of the InsertPeople GraphQL operation /// - /// mutation InsertPeople( - /// $people: [people_insert_input!]! - /// ) { + /// mutation InsertPeople($people: [people_insert_input!]!) { /// insert_people(objects: $people) { /// __typename /// affected_rows diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.LowerCaseScalarArgument.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.LowerCaseScalarArgument.snap index 9519a2dd57d..2dfd99b1402 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.LowerCaseScalarArgument.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.LowerCaseScalarArgument.snap @@ -194,9 +194,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetPeopleByPk GraphQL operation /// - /// query GetPeopleByPk( - /// $id: uuid! - /// ) { + /// query GetPeopleByPk($id: uuid!) { /// people_by_pk(id: $id) { /// __typename /// id @@ -235,9 +233,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetPeopleByPk GraphQL operation /// - /// query GetPeopleByPk( - /// $id: uuid! - /// ) { + /// query GetPeopleByPk($id: uuid!) { /// people_by_pk(id: $id) { /// __typename /// id @@ -335,9 +331,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetPeopleByPk GraphQL operation /// - /// query GetPeopleByPk( - /// $id: uuid! - /// ) { + /// query GetPeopleByPk($id: uuid!) { /// people_by_pk(id: $id) { /// __typename /// id diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.NodeTypenameCollision.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.NodeTypenameCollision.snap index 1f56d9fd345..25ce713173d 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.NodeTypenameCollision.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.NodeTypenameCollision.snap @@ -178,9 +178,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Nodes GraphQL operation /// - /// query Nodes( - /// $id: ID! - /// ) { + /// query Nodes($id: ID!) { /// node(id: $id) { /// __typename /// id @@ -217,9 +215,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Nodes GraphQL operation /// - /// query Nodes( - /// $id: ID! - /// ) { + /// query Nodes($id: ID!) { /// node(id: $id) { /// __typename /// id @@ -315,9 +311,7 @@ namespace Foo.Bar /// /// Represents the operation service of the Nodes GraphQL operation /// - /// query Nodes( - /// $id: ID! - /// ) { + /// query Nodes($id: ID!) { /// node(id: $id) { /// __typename /// id diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.QueryInterference.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.QueryInterference.snap index 31de1a76917..7a960ef507e 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.QueryInterference.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.QueryInterference.snap @@ -2226,15 +2226,20 @@ namespace Foo.Bar /// /// query GetFeatsPage( /// $skip: Int! - /// $take: Int! - /// $searchTerm: String! = "" - /// $order: [FeatSortInput!] = [ + /// $take: Int! + /// $searchTerm: String! = "" + /// $order: [FeatSortInput!] = [ /// { /// name: ASC /// } /// ] /// ) { - /// feats(skip: $skip, take: $take, order: $order, where: { or: [{ name: { contains: $searchTerm } }, { traits: { some: { name: { contains: $searchTerm } } } }] }) { + /// feats( + /// skip: $skip + /// take: $take + /// order: $order + /// where: { or: [{ name: { contains: $searchTerm } }, { traits: { some: { name: { contains: $searchTerm } } } }] } + /// ) { /// __typename /// totalCount /// items { @@ -2290,15 +2295,20 @@ namespace Foo.Bar /// /// query GetFeatsPage( /// $skip: Int! - /// $take: Int! - /// $searchTerm: String! = "" - /// $order: [FeatSortInput!] = [ + /// $take: Int! + /// $searchTerm: String! = "" + /// $order: [FeatSortInput!] = [ /// { /// name: ASC /// } /// ] /// ) { - /// feats(skip: $skip, take: $take, order: $order, where: { or: [{ name: { contains: $searchTerm } }, { traits: { some: { name: { contains: $searchTerm } } } }] }) { + /// feats( + /// skip: $skip + /// take: $take + /// order: $order + /// where: { or: [{ name: { contains: $searchTerm } }, { traits: { some: { name: { contains: $searchTerm } } } }] } + /// ) { /// __typename /// totalCount /// items { @@ -2455,15 +2465,20 @@ namespace Foo.Bar /// /// query GetFeatsPage( /// $skip: Int! - /// $take: Int! - /// $searchTerm: String! = "" - /// $order: [FeatSortInput!] = [ + /// $take: Int! + /// $searchTerm: String! = "" + /// $order: [FeatSortInput!] = [ /// { /// name: ASC /// } /// ] /// ) { - /// feats(skip: $skip, take: $take, order: $order, where: { or: [{ name: { contains: $searchTerm } }, { traits: { some: { name: { contains: $searchTerm } } } }] }) { + /// feats( + /// skip: $skip + /// take: $take + /// order: $order + /// where: { or: [{ name: { contains: $searchTerm } }, { traits: { some: { name: { contains: $searchTerm } } } }] } + /// ) { /// __typename /// totalCount /// items { @@ -2505,9 +2520,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetFeatById GraphQL operation /// - /// query GetFeatById( - /// $id: UUID! - /// ) { + /// query GetFeatById($id: UUID!) { /// feats(where: { id: { eq: $id } }) { /// __typename /// items { @@ -2569,9 +2582,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetFeatById GraphQL operation /// - /// query GetFeatById( - /// $id: UUID! - /// ) { + /// query GetFeatById($id: UUID!) { /// feats(where: { id: { eq: $id } }) { /// __typename /// items { @@ -2687,9 +2698,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetFeatById GraphQL operation /// - /// query GetFeatById( - /// $id: UUID! - /// ) { + /// query GetFeatById($id: UUID!) { /// feats(where: { id: { eq: $id } }) { /// __typename /// items { diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_OneOf.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_OneOf.snap index abbc832afc8..496f71186c2 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_OneOf.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_OneOf.snap @@ -253,9 +253,7 @@ namespace Foo.Bar /// /// Represents the operation service of the SomeQuery GraphQL operation /// - /// query SomeQuery( - /// $input: SomeInput! - /// ) { + /// query SomeQuery($input: SomeInput!) { /// someField(input: $input) /// } /// @@ -286,9 +284,7 @@ namespace Foo.Bar /// /// Represents the operation service of the SomeQuery GraphQL operation /// - /// query SomeQuery( - /// $input: SomeInput! - /// ) { + /// query SomeQuery($input: SomeInput!) { /// someField(input: $input) /// } /// @@ -378,9 +374,7 @@ namespace Foo.Bar /// /// Represents the operation service of the SomeQuery GraphQL operation /// - /// query SomeQuery( - /// $input: SomeInput! - /// ) { + /// query SomeQuery($input: SomeInput!) { /// someField(input: $input) /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_OneOf_And_Directive_Definition.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_OneOf_And_Directive_Definition.snap index abbc832afc8..496f71186c2 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_OneOf_And_Directive_Definition.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_OneOf_And_Directive_Definition.snap @@ -253,9 +253,7 @@ namespace Foo.Bar /// /// Represents the operation service of the SomeQuery GraphQL operation /// - /// query SomeQuery( - /// $input: SomeInput! - /// ) { + /// query SomeQuery($input: SomeInput!) { /// someField(input: $input) /// } /// @@ -286,9 +284,7 @@ namespace Foo.Bar /// /// Represents the operation service of the SomeQuery GraphQL operation /// - /// query SomeQuery( - /// $input: SomeInput! - /// ) { + /// query SomeQuery($input: SomeInput!) { /// someField(input: $input) /// } /// @@ -378,9 +374,7 @@ namespace Foo.Bar /// /// Represents the operation service of the SomeQuery GraphQL operation /// - /// query SomeQuery( - /// $input: SomeInput! - /// ) { + /// query SomeQuery($input: SomeInput!) { /// someField(input: $input) /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Generate_StarWarsIntegrationTest.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Generate_StarWarsIntegrationTest.snap index e5d48913280..1f7d1894331 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Generate_StarWarsIntegrationTest.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Generate_StarWarsIntegrationTest.snap @@ -311,9 +311,7 @@ namespace Foo.Bar /// /// Represents the operation service of the CreateReview GraphQL operation /// - /// mutation CreateReview( - /// $stars: Int! - /// ) { + /// mutation CreateReview($stars: Int!) { /// createReview(episode: EMPIRE, review: { stars: $stars, commentary: "good" }) { /// __typename /// stars @@ -347,9 +345,7 @@ namespace Foo.Bar /// /// Represents the operation service of the CreateReview GraphQL operation /// - /// mutation CreateReview( - /// $stars: Int! - /// ) { + /// mutation CreateReview($stars: Int!) { /// createReview(episode: EMPIRE, review: { stars: $stars, commentary: "good" }) { /// __typename /// stars @@ -437,9 +433,7 @@ namespace Foo.Bar /// /// Represents the operation service of the CreateReview GraphQL operation /// - /// mutation CreateReview( - /// $stars: Int! - /// ) { + /// mutation CreateReview($stars: Int!) { /// createReview(episode: EMPIRE, review: { stars: $stars, commentary: "good" }) { /// __typename /// stars diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Operation_With_Leaf_Argument.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Operation_With_Leaf_Argument.snap index 0167898ebff..c374c18da15 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Operation_With_Leaf_Argument.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Operation_With_Leaf_Argument.snap @@ -302,9 +302,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetHero GraphQL operation /// - /// query GetHero( - /// $episode: Episode - /// ) { + /// query GetHero($episode: Episode) { /// hero(episode: $episode) { /// __typename /// name @@ -345,9 +343,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetHero GraphQL operation /// - /// query GetHero( - /// $episode: Episode - /// ) { + /// query GetHero($episode: Episode) { /// hero(episode: $episode) { /// __typename /// name @@ -449,9 +445,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetHero GraphQL operation /// - /// query GetHero( - /// $episode: Episode - /// ) { + /// query GetHero($episode: Episode) { /// hero(episode: $episode) { /// __typename /// name diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Operation_With_Type_Argument.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Operation_With_Type_Argument.snap index 9713bd51660..d123dc7eb75 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Operation_With_Type_Argument.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Operation_With_Type_Argument.snap @@ -359,10 +359,7 @@ namespace Foo.Bar /// /// Represents the operation service of the CreateReviewMut GraphQL operation /// - /// mutation CreateReviewMut( - /// $episode: Episode! - /// $review: ReviewInput! - /// ) { + /// mutation CreateReviewMut($episode: Episode!, $review: ReviewInput!) { /// createReview(episode: $episode, review: $review) { /// __typename /// stars @@ -397,10 +394,7 @@ namespace Foo.Bar /// /// Represents the operation service of the CreateReviewMut GraphQL operation /// - /// mutation CreateReviewMut( - /// $episode: Episode! - /// $review: ReviewInput! - /// ) { + /// mutation CreateReviewMut($episode: Episode!, $review: ReviewInput!) { /// createReview(episode: $episode, review: $review) { /// __typename /// stars @@ -503,10 +497,7 @@ namespace Foo.Bar /// /// Represents the operation service of the CreateReviewMut GraphQL operation /// - /// mutation CreateReviewMut( - /// $episode: Episode! - /// $review: ReviewInput! - /// ) { + /// mutation CreateReviewMut($episode: Episode!, $review: ReviewInput!) { /// createReview(episode: $episode, review: $review) { /// __typename /// stars diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.Razor.Tests/__snapshots__/RazorGeneratorTests.Query_And_Mutation.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.Razor.Tests/__snapshots__/RazorGeneratorTests.Query_And_Mutation.snap index 908d64faf0c..c3de0b37310 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.Razor.Tests/__snapshots__/RazorGeneratorTests.Query_And_Mutation.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.Razor.Tests/__snapshots__/RazorGeneratorTests.Query_And_Mutation.snap @@ -341,10 +341,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetBars GraphQL operation /// - /// query GetBars( - /// $a: String! - /// $b: String - /// ) { + /// query GetBars($a: String!, $b: String) { /// bars(a: $a, b: $b) { /// __typename /// id @@ -382,10 +379,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetBars GraphQL operation /// - /// query GetBars( - /// $a: String! - /// $b: String - /// ) { + /// query GetBars($a: String!, $b: String) { /// bars(a: $a, b: $b) { /// __typename /// id @@ -495,10 +489,7 @@ namespace Foo.Bar /// /// Represents the operation service of the GetBars GraphQL operation /// - /// query GetBars( - /// $a: String! - /// $b: String - /// ) { + /// query GetBars($a: String!, $b: String) { /// bars(a: $a, b: $b) { /// __typename /// id @@ -524,10 +515,7 @@ namespace Foo.Bar /// /// Represents the operation service of the SaveBars GraphQL operation /// - /// mutation SaveBars( - /// $a: String! - /// $b: String - /// ) { + /// mutation SaveBars($a: String!, $b: String) { /// saveBar(a: $a, b: $b) { /// __typename /// id @@ -565,10 +553,7 @@ namespace Foo.Bar /// /// Represents the operation service of the SaveBars GraphQL operation /// - /// mutation SaveBars( - /// $a: String! - /// $b: String - /// ) { + /// mutation SaveBars($a: String!, $b: String) { /// saveBar(a: $a, b: $b) { /// __typename /// id @@ -678,10 +663,7 @@ namespace Foo.Bar /// /// Represents the operation service of the SaveBars GraphQL operation /// - /// mutation SaveBars( - /// $a: String! - /// $b: String - /// ) { + /// mutation SaveBars($a: String!, $b: String) { /// saveBar(a: $a, b: $b) { /// __typename /// id